Categories:
Cloud (204)
Entertainment (11)
Facebook (43)
General (50)
Life (31)
Programming (64)
Technology (430)
Testing (4)
Tools (488)
Twitter (5)
Wearable (26)
Web Design (44)
Collections:
Other Resources:
What Is MathML (Mathematical Markup Language)
What Is MathML (Mathematical Markup Language)?
✍: FYIcenter.com
MathML (Mathematical Markup Language) is an XML-based language
for describing mathematical notations and capturing both its structure and content.
The MathML specification is an open standard developed by the w3.org. See the latest version at https://www.w3.org/TR/MathML/.
Main features of MathML are:
Here is a MathML example to represent the Quadratic Formula:
<math xmlns="http://www.w3.org/1998/Math/MathML">
<mrow>
<mi>x</mi> <mo>=</mo>
<mfrac>
<mrow>
<mrow><mo>-</mo><mi>b</mi></mrow>
<mo>±</mo>
<msqrt>
<mrow>
<msup><mi>b</mi><mn>2</mn></msup>
<mo>-</mo>
<mrow>
<mn>4</mn><mo>⁢</mo>
<mi>a</mi><mo>⁢</mo>
<mi>c</mi>
</mrow>
</mrow>
</msqrt>
</mrow>
<mrow>
<mn>2</mn><mo>⁢</mo>
<mi>a</mi>
</mrow>
</mfrac>
</mrow>
</math>
The above MathML structure will be rendered in Web browser as:
⇒ Insert MathML Element in HTML Documents
⇐ Introduction to MathML (Mathematical Markup Language)
2025-10-14, 1139🔥, 0💬
Popular Posts:
Where to find answers to frequently asked questions about Fitbit devices? Here is a collection of fr...
How to unzip an XPS (XML Paper Specification, .xps) file? According to Microsoft documentation, an ....
How to connect FileZilla to an Anonymous FTP Server? If you know the server host name, you can conne...
How to add comments on slides? I am reviewing someone else's presentation and I want to add some com...
What are Link and Activity LEDs on Ethernet Socket? Link and Activity LEDs on Ethernet Socket are LE...