docx
    Preparing search index...

    Class MathSum

    Represents a summation (Σ) expression in a math equation.

    MathSum displays the summation symbol with optional lower and upper bounds.

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

    <xsd:complexType name="CT_Nary">
    <xsd:sequence>
    <xsd:element name="naryPr" type="CT_NaryPr" minOccurs="0"/>
    <xsd:element name="sub" type="CT_OMathArg"/>
    <xsd:element name="sup" type="CT_OMathArg"/>
    <xsd:element name="e" type="CT_OMathArg"/>
    </xsd:sequence>
    </xsd:complexType>
    // Sum from i=1 to n
    new MathSum({
    children: [new MathRun("x")],
    subScript: [new MathRun("i=1")],
    superScript: [new MathRun("n")],
    });

    Hierarchy (View Summary)

    Index

    Constructors

    Methods