Menu
MathML mo Element Operators

The mo element is possibly the most important part of MathML. This is because it specifies mathematical operations and mathematics is essentially about operations. You'll need to use character codes to specify some operations because there are no, for example, ≠ keys on the computer keyboard.

a b
<math>
<mi>a</mi>
<mo>≠</mo>
<mi>b</mi>
</math>

The example above uses an inequality operator to state that a does not equal b. Shown below are the character codes for some other inequality operators.

Symbol Meaning Character Code
Not equal &#x2260;
Approximately equal &#x2248;
< Less than &#x003c;
Less than or equal &#x2264;
> Greater than &#x003e;
Greater than or equal &#x2265;
± Plus or minus &#x00b1;

Shown below are the character codes for some trigonometry symbols.

Symbol Meaning Character Code
° Degree &#x00B0;
Angle &#x2220;
Right angle &#x299C;

Shown below are the character codes for some Greek symbols.

Symbol Meaning Character Code
α Alpha &#x03B1;
β Beta &#x03B2;
γ Gamma &#x03B3;
δ Delta &#x03B4;
π Pi &#x03C0;
ω Omega; &#x03C9;

-1 +1 d x x
<math>
<mrow>
  <munderover>
    <mo>&#8747;</mo>
    <mn>-1</mn>
    <mn>+1</mn>
  </munderover>
  <mfrac>
    <mrow>
      <mi>d</mi>
      <mi>x</mi>
    </mrow>
    <mi>x</mi>
  </mfrac>
</mrow>
</math>

The example above shows a calculus expression using an integral operator. Shown below are the character codes for some other calculus operators.

Symbol Meaning Character Code
Summation &#x2211;
Δ Increment &#x0394;
Integration &#x222B;
Infinite &#x222B;


Learn more at amazon.com

More Graphics Design Tips:
• Drawing Text with Draw SVG
• The Browser Safe Palette
• SVG Example Code to Rotate Elements
• Inkscape Layers and Z-Order
• CSS Button Designer
• Graphics Design for Beginners - Blur Filters
• MathML Elements to Display Subscripts and Superscripts
• Inscape Text in a Shape
• SVG Code for Outlined Letters Text
• Introduction to X3D (Extensible 3D)