html5 可以在文檔中使用 <math> 添加 MathML 數(shù)學(xué)公式 MathML 是數(shù)學(xué)標(biāo)記語言,是一種基于XML(標(biāo)準(zhǔn)通用標(biāo)記語言的子集)的標(biāo)準(zhǔn),用來在互聯(lián)網(wǎng)上書寫數(shù)學(xué)符號和公式的置標(biāo)語言 注意大部分瀏覽器都支持 MathML 標(biāo)簽 下面的范例演示了一個最基本的 MathML <!DOCTYPE html> <Meta charset="UTF-8"> <math xmlns="http://www.w3.org/1998/Math/MathML"> <mrow> <msup><mi>a</mi><mn>2</mn></msup> <mo>+</mo> <msup><mi>b</mi><mn>2</mn></msup> <mo>=</mo> <msup><mi>c</mi><mn>2</mn></msup> </mrow> </math> 在瀏覽器中顯示如下 范例 2下面的范例演示了一些運算符 <!DOCTYPE html> <Meta charset="UTF-8"> <math xmlns="http://www.w3.org/1998/Math/MathML"> <mrow> <mrow> <msup> <mi>x</mi> <mn>2</mn> </msup> <mo>+</mo> <mrow> <mn>4</mn> <mo></mo> <mi>x</mi> </mrow> <mo>+</mo> <mn>4</mn> </mrow> <mo>=</mo> <mn>0</mn> </mrow> </math> 在瀏覽器中顯示如下: 范例 3下面的范例演示了一個 2×2 矩陣,可以在 Firefox 3.5+ 或 Safari 查看到效果 <!DOCTYPE html> <Meta charset="UTF-8"> <math xmlns="http://www.w3.org/1998/Math/MathML"> <mrow> <mi>A</mi> <mo>=</mo> <mfenced open="[" close="]"> <mtable> <mtr> <mtd><mi>x</mi></mtd> <mtd><mi>y</mi></mtd> </mtr> <mtr> <mtd><mi>z</mi></mtd> <mtd><mi>w</mi></mtd> </mtr> </mtable> </mfenced> </mrow> </math> 在瀏覽器中顯示如下: |