Represents a radical (root) expression in a math equation.
MathRadical displays a radical symbol (√) with optional degree for n-th roots (cube root, fourth root, etc.).
Reference: http://www.datypic.com/sc/ooxml/e-m_rad-1.html
<xsd:complexType name="CT_Rad"> <xsd:sequence> <xsd:element name="radPr" type="CT_RadPr" minOccurs="0"/> <xsd:element name="deg" type="CT_OMathArg"/> <xsd:element name="e" type="CT_OMathArg"/> </xsd:sequence></xsd:complexType> Copy
<xsd:complexType name="CT_Rad"> <xsd:sequence> <xsd:element name="radPr" type="CT_RadPr" minOccurs="0"/> <xsd:element name="deg" type="CT_OMathArg"/> <xsd:element name="e" type="CT_OMathArg"/> </xsd:sequence></xsd:complexType>
// Square root of xnew MathRadical({ children: [new MathRun("x")] });// Cube root of xnew MathRadical({ children: [new MathRun("x")], degree: [new MathRun("3")],}); Copy
// Square root of xnew MathRadical({ children: [new MathRun("x")] });// Cube root of xnew MathRadical({ children: [new MathRun("x")], degree: [new MathRun("3")],});
Do not use this method. It is only used internally by the library. It will be removed in a future version.
Represents a radical (root) expression in a math equation.
MathRadical displays a radical symbol (√) with optional degree for n-th roots (cube root, fourth root, etc.).
Reference: http://www.datypic.com/sc/ooxml/e-m_rad-1.html
XSD Schema
Example