docx
    Preparing search index...

    Class MathSubSuperScript

    Represents a combined subscript and superscript expression in a math equation.

    MathSubSuperScript displays a base with both a subscript and superscript, commonly used for tensor notation or indexed variables with exponents.

    Reference: http://www.datypic.com/sc/ooxml/e-m_sSubSup-1.html

    <xsd:complexType name="CT_SSubSup">
    <xsd:sequence>
    <xsd:element name="sSubSupPr" type="CT_SSubSupPr" minOccurs="0"/>
    <xsd:element name="e" type="CT_OMathArg"/>
    <xsd:element name="sub" type="CT_OMathArg"/>
    <xsd:element name="sup" type="CT_OMathArg"/>
    </xsd:sequence>
    </xsd:complexType>
    // x with subscript i and superscript 2
    new MathSubSuperScript({
    children: [new MathRun("x")],
    subScript: [new MathRun("i")],
    superScript: [new MathRun("2")],
    });

    Hierarchy (View Summary)

    Index

    Constructors

    Methods