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> Copy
<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 2new MathSubSuperScript({ children: [new MathRun("x")], subScript: [new MathRun("i")], superScript: [new MathRun("2")],}); Copy
// x with subscript i and superscript 2new MathSubSuperScript({ children: [new MathRun("x")], subScript: [new MathRun("i")], superScript: [new MathRun("2")],});
Do not use this method. It is only used internally by the library. It will be removed in a future version.
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 Schema
Example