HTML
HTML5 MathML
以下是一个简单的 MathML 实例
源代码:
点击运行 »
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> </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>
运行结果:
点击运行 »