Represents an integral (∫) expression in a math equation.
MathIntegral displays the integral symbol with optional 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>
// Definite integral from 0 to 1new MathIntegral({ children: [new MathRun("f(x) dx")], subScript: [new MathRun("0")], superScript: [new MathRun("1")],}); Copy
// Definite integral from 0 to 1new MathIntegral({ children: [new MathRun("f(x) dx")], subScript: [new MathRun("0")], superScript: [new MathRun("1")],});
Do not use this method. It is only used internally by the library. It will be removed in a future version.
Represents an integral (∫) expression in a math equation.
MathIntegral displays the integral symbol with optional bounds.
Reference: http://www.datypic.com/sc/ooxml/e-m_nary-1.html
XSD Schema
Example