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> Copy
<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 nnew MathSum({ children: [new MathRun("x")], subScript: [new MathRun("i=1")], superScript: [new MathRun("n")],}); Copy
// Sum from i=1 to nnew MathSum({ children: [new MathRun("x")], subScript: [new MathRun("i=1")], superScript: [new MathRun("n")],});
Do not use this method. It is only used internally by the library. It will be removed in a future version.
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 Schema
Example