Represents a run of text within a math equation.
MathRun is the container for text content in Office MathML, similar to how Run contains text in regular paragraphs.
Reference: http://www.datypic.com/sc/ooxml/e-m_r-1.html
<xsd:complexType name="CT_R"> <xsd:sequence> <xsd:element name="rPr" type="CT_RPR" minOccurs="0"/> <xsd:group ref="EG_ScriptStyle" minOccurs="0"/> <xsd:choice minOccurs="0" maxOccurs="unbounded"> <xsd:element ref="w:br"/> <xsd:element name="t" type="CT_Text"/> </xsd:choice> </xsd:sequence></xsd:complexType> Copy
<xsd:complexType name="CT_R"> <xsd:sequence> <xsd:element name="rPr" type="CT_RPR" minOccurs="0"/> <xsd:group ref="EG_ScriptStyle" minOccurs="0"/> <xsd:choice minOccurs="0" maxOccurs="unbounded"> <xsd:element ref="w:br"/> <xsd:element name="t" type="CT_Text"/> </xsd:choice> </xsd:sequence></xsd:complexType>
new MathRun("x + y"); Copy
new MathRun("x + y");
Do not use this method. It is only used internally by the library. It will be removed in a future version.
Represents a run of text within a math equation.
MathRun is the container for text content in Office MathML, similar to how Run contains text in regular paragraphs.
Reference: http://www.datypic.com/sc/ooxml/e-m_r-1.html
XSD Schema
Example