如何在HTML5中定义MathML演示文稿

HTML5中的MathML演示文稿

  • MathML是一个用于标记数学的XML词汇表。
  • 演示文稿Mathml是HTML5的一部分
  • MathML演示主要涉及描述数学表达式的布局。

定义MathML演示文稿示例

<!doctype html>

  <html>

  <head>

  <meta charset="UTF-8">

  <title>MathML Presentation Examples</title>

  </head>

  <body>

   <h1> Matrix Presentation<h1>

    <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>

日期:2020-04-11 23:04:05 来源:oir作者:oir