Represents a mathematical function in a math equation.
MathFunction displays a function name followed by its argument, such as sin(x), cos(θ), or log(n).
Reference: http://www.datypic.com/sc/ooxml/e-m_func-1.html
<xsd:complexType name="CT_Func"> <xsd:sequence> <xsd:element name="funcPr" type="CT_FuncPr" minOccurs="0"/> <xsd:element name="fName" type="CT_OMathArg"/> <xsd:element name="e" type="CT_OMathArg"/> </xsd:sequence></xsd:complexType> Copy
<xsd:complexType name="CT_Func"> <xsd:sequence> <xsd:element name="funcPr" type="CT_FuncPr" minOccurs="0"/> <xsd:element name="fName" type="CT_OMathArg"/> <xsd:element name="e" type="CT_OMathArg"/> </xsd:sequence></xsd:complexType>
// sin(x)new MathFunction({ name: [new MathRun("sin")], children: [new MathRun("x")],}); Copy
// sin(x)new MathFunction({ name: [new MathRun("sin")], children: [new MathRun("x")],});
Do not use this method. It is only used internally by the library. It will be removed in a future version.
Represents a mathematical function in a math equation.
MathFunction displays a function name followed by its argument, such as sin(x), cos(θ), or log(n).
Reference: http://www.datypic.com/sc/ooxml/e-m_func-1.html
XSD Schema
Example