Represents a subscript expression in a math equation.
MathSubScript displays a base with a subscript, like x₁.
Reference: http://www.datypic.com/sc/ooxml/e-m_sSub-1.html
<xsd:complexType name="CT_SSub"> <xsd:sequence> <xsd:element name="sSubPr" type="CT_SSubPr" minOccurs="0"/> <xsd:element name="e" type="CT_OMathArg"/> <xsd:element name="sub" type="CT_OMathArg"/> </xsd:sequence></xsd:complexType> Copy
<xsd:complexType name="CT_SSub"> <xsd:sequence> <xsd:element name="sSubPr" type="CT_SSubPr" minOccurs="0"/> <xsd:element name="e" type="CT_OMathArg"/> <xsd:element name="sub" type="CT_OMathArg"/> </xsd:sequence></xsd:complexType>
// x with subscript 1new MathSubScript({ children: [new MathRun("x")], subScript: [new MathRun("1")],}); Copy
// x with subscript 1new MathSubScript({ children: [new MathRun("x")], subScript: [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 a subscript expression in a math equation.
MathSubScript displays a base with a subscript, like x₁.
Reference: http://www.datypic.com/sc/ooxml/e-m_sSub-1.html
XSD Schema
Example