HTML5 MathML
HTML5 boleh menggunakan elemen MathML dalam dokumen dan teg yang sepadan ialah <math>...</math>
MathML ialah bahasa markup matematik, standard berdasarkan XML (subset Standard Universal Markup Language), bahasa markup yang digunakan untuk menulis simbol dan formula matematik di Internet.
Nota: Kebanyakan penyemak imbas menyokong teg MathML Jika penyemak imbas anda tidak menyokong teg ini, anda boleh menggunakan versi terkini pelayar Firefox atau Safari untuk melihatnya.
Contoh MathML
Berikut ialah contoh MathML yang mudah:
实例
Jalankan hasilnya
Contoh
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>php中文网(php.cn)</title> </head> <body> <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> </body> </html>
Jalankan Instance»
Klik butang "Run Instance" untuk melihat contoh dalam talian
Gambar hasil adalah seperti berikut :
Contoh berikut menambah beberapa operator:
实例 <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>php中文网(php.cn)</title> </head> <body> <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> </body> </html>
Graf hasil berjalan adalah seperti berikut:
Contoh berikut ialah matriks 2×2, kesannya boleh dilihat dalam Firefox 3.5 ke atas:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>php中文网(php.cn)</title> </head> <body> <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> </body> </html>