/************************************************************* * * Copyright (c) 2017-2025 The MathJax Consortium * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ /** * @file Implements the MmlMfrac node * * @author dpvc@mathjax.org (Davide Cervone) */ import { PropertyList } from '../../Tree/Node.js'; import { MmlNode, AbstractMmlBaseNode, AttributeList } from '../MmlNode.js'; /*****************************************************************/ /** * Implements the MmlMfrac node class (subclass of AbstractMmlBaseNode) */ export class MmlMfrac extends AbstractMmlBaseNode { /** * @override */ public static defaults: PropertyList = { ...AbstractMmlBaseNode.defaults, linethickness: 'medium', numalign: 'center', denomalign: 'center', bevelled: false, }; /** * @override */ public get kind() { return 'mfrac'; } /** * requires two children * * @override */ public get arity() { return 2; } /** * The children of can include line breaks * * @override */ public get linebreakContainer() { return true; } /** * Alignment is handled separately for the child nodes * * @override */ public get linebreakAlign() { return ''; } /** * Update the children separately * * @override */ public setTeXclass(prev: MmlNode) { this.getPrevClass(prev); for (const child of this.childNodes) { child.setTeXclass(null); } return this; } /** * Adjust the display level, and use prime style in denominator * * @override */ protected setChildInheritedAttributes( attributes: AttributeList, display: boolean, level: number, prime: boolean ) { if (!display || level > 0) { level++; } const numalign = this.attributes.get('numalign'); const denalign = this.attributes.get('denomalign'); const numAttributes = this.addInheritedAttributes( { ...attributes }, { numalign, indentshift: '0', indentalignfirst: numalign, indentshiftfirst: '0', indentalignlast: 'indentalign', indentshiftlast: 'indentshift', } ); const denAttributes = this.addInheritedAttributes( { ...attributes }, { denalign, indentshift: '0', indentalignfirst: denalign, indentshiftfirst: '0', indentalignlast: 'indentalign', indentshiftlast: 'indentshift', } ); this.childNodes[0].setInheritedAttributes( numAttributes, false, level, prime ); this.childNodes[1].setInheritedAttributes( denAttributes, false, level, true ); } }