"mo" - MathML Operator Element

Q

How to use the MathML Operator Element: "mo"?

✍: FYIcenter.com

A

"mo" is the MathML Operator Element that allows you to specify a mathematical operator.

The syntax for "mo" element is:

<mo>operator</mo>

Here are some commonly used mathematical operators with MathML code examples:

Addition: +

<mn>10</mn><mo>+</mo><mn>1</mn>
    10+1

Subtraction: -

<mn>10</mn><mo>-</mo><mn>1</mn>
    10-1

Multiplication: ×

<mn>10</mn><mo>&#x00d7;</mo><mn>2</mn>
    10×2

Division: ÷

<mn>10</mn><mo>&#x00f7;</mo><mn>2</mn>
    10÷2

Invisible Addition: &#x2064;

<math><mn>3</mn><mo>&#x2064;</mo><mfrac><mn>1</mn><mn>3</mn></mfrac></math>
    313

Invisible Multiplication: &#x2062;

<mn>π</mn><mo>&#x2062;</mo><mi>d</mi>
    πd

Greater Than: >

<mn>10</mn><mo>></mo><mn>2</mn>
    10>2

Less Than or Equal: ≤

<mi>T</mi><mo>&#x2264;</mo><mn>0</mn>
    T0

Brackets: (), [], {}, ...

<mo>(</mo><mi>x</mi><mo>,</mo><mi>y</mi><mo>)</mo>
    (x,y)

N-ary Summation: ∑

<math display="block"><munderover><mo>&#x2211;</mo>
  <mrow><mi>i</mi><mo>=</mo><mn>0</mn></mrow>
  <mi>n</mi></munderover><mi>i</mi></math>
    
      i=0
      ni

Invisible Function Application: &#x2061;

<mrow><mi>f</mi><mo>&#x2061;</mo><mrow>
  <mo>(</mo><mi>x</mi><mo>)</mo></mrow></mrow>
    f
      (x)

 

"ms" - MathML String Element

"mn" - MathML Number Element

Simple MathML Elements

⇑⇑ MathML (Mathematical Markup Language)

2025-03-29, 369🔥, 0💬