MathML

Post tags: | mathml |

W3C Math Home

w3.org MathML v3 spec

MathML2 Ch. 2 MathML Fundamentals

dessci.com article A Gentle Introduction to MathML by Robert Miner and Jeff Schaeffer

Ry’s MathML Tutorial

Ry MathML advanced formatting

mozilla MathML Page

xmlmind.com MathML.pdf MathML Presentation Markup for the Impatient

danielscully.co.uk article A Beginner’s Guide to MathML

Online XML entity encoder | Coder’s Toolbox

ex. 1

        <mstyle mathsize="3em">
          <mn>3</mn>
          <mi>x</mi>
        </mstyle>
        
3 x

ex. 2

        <mi>f</mi>
        <mfenced>
          <mi>x</mi>
        </mfenced>
        
f x

ex. 3

        <mrow>
          <msup>
            <mi>&ExponentialE;</mi>
            <mrow>
              <msub>
                <mrow>
                  <mo>-</mo>
                  <mi>&DifferentialD;</mi>
                </mrow>
                <mn>1</mn>
              </msub>
              <mi>t</mi>
            </mrow>
          </msup>
        </mrow>
        
- 1 t

ex. 4

        <mi>sin</mi>
        <mfenced>
          <mrow>
            <mrow>
              <mi>t</mi>
              <msub>
                <mi>f</mi>
                <mn>1</mn>
              </msub>
            </mrow>
            <mo>+</mo>
            <mrow>
              <msub>
                <mi>p</mi>
                <mn>1</mn>
              </msub>
            </mrow>
          </mrow>
        </mfenced>
        
sin t f 1 + p 1