HTML
HTML5 MathML
以下实例添加了一些运算符
源代码:
点击运行 »
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> </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>
运行结果:
点击运行 »