HTML Extended: <math> tag
- <a>
- <b>, <strong>
- <br>
- <caption>, <figcaption>
- <div>
- <dl>, <dt>, <dd>
- <h1>, <h2>, <h3>, <h4>, <h5>, <h6>
- <hr>
- <i>, <em>, <cite>, <var>
- <input>
- <img>
- <mark>
- <p>, <address>, <blockquote>
- <pre>
- <s>
- <select>, <option>
- <small>
- <span>
- <sub>
- <sup>
- <table>, <tr>, <td>, <th>
- <textarea>
- <u>, <ins>, <del>
- <ul>, <ol>, <li>
- <math>
- <meta>
- <phpdocx_bookmark>
- <phpdocx_break>
- <phpdocx_comment>
- <phpdocx_crossreference>
- <phpdocx_dateandhour>
- <phpdocx_endnote>
- <phpdocx_footer>
- <phpdocx_footnote>
- <phpdocx_formelement>
- <phpdocx_header>
- <phpdocx_heading>
- <phpdocx_image>
- <phpdocx_link>
- <phpdocx_mathequation>
- <phpdocx_mergefield>
- <phpdocx_modifypagelayout>
- <phpdocx_ole>
- <phpdocx_onlinevideo>
- <phpdocx_pagenumber>
- <phpdocx_section>
- <phpdocx_shape>
- <phpdocx_simplefield>
- <phpdocx_structureddocumenttag>
- <phpdocx_tablecontents>
- <phpdocx_tablefigures>
- <phpdocx_text>
- <phpdocx_textbox>
- <phpdocx_wordfragment>
- <phpdocx_wordml>
- <svg>
- <title>
<math> tag


Inserts a MathML equation.
Code samples
AخA
1
<p>A math equation using MathML:</p>
2
<math xmlns="http://www.w3.org/1998/Math/MathML">
3
<mrow>
4
<mi>A</mi>
5
<mo>=</mo>
6
<mfenced open="[" close="]">
7
<mtable>
8
<mtr>
9
<mtd>
10
<mi>x</mi>
11
</mtd>
12
<mtd>
13
<mn>2</mn>
14
</mtd>
15
</mtr>
16
<mtr>
17
<mtd>
18
<mn>3</mn>
19
</mtd>
20
<mtd>
21
<mi>w</mi>
22
</mtd>
23
</mtr>
24
</mtable>
25
</mfenced>
26
</mrow>
27
</math>
28
<p>Paragraph after the math equation.</p>
29