美文网首页
HTML MathML

HTML MathML

作者: 不语翕 | 来源:发表于2017-11-08 16:47 被阅读0次
<!DOCTYPE>
<html>
<head>
  <meta charset="UTF-8">
  <title>MathML Examples</title>
</head>

<body>
  <h2>a2 + b2 = c2</h2>
  <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>


  <h2>x 2 + 4 x + 4 = 0</h2>
  <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>

  <h2></h2>
  <math xmlns="http://www.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>

相关文章

  • HTML MathML

  • HTML5 MathML

    HTML5 MathML HTML5 可以在文档中使用 MathML 元素,对应的标签是 ...

  • HTML5_MathML

    HTML5 MathML HTML5 可以在文档中使用 MathML 元素,对应的标签是 ...

  • HTML5 MathML

    HTML5 可以在文档中使用 MathML 元素,对应的标签是 ... 。MathML ...

  • HTML5 MathML

    HTML5可以在文档中使用 MathML元素,对应的变迁是....MathML是数学标记...

  • 公式编辑器

    1、确定开发方案,以mathml结构来渲染和编辑html。在前端将latex转化为mathml,在后端将mathm...

  • html5--day2-3

    1.SVG 将SVG嵌入HTML页面 2.MathML MathML是一种数学标记语言,对应标签为.....

  • DOMPurify 简单使用

    DOMPurify – 针对 HTML、MathML 和 SVG 的仅支持DOM、快速、高容错的 XSS 过滤器 ...

  • HTML 空元素 And 可替换元素

    空标签 MDN 概念 一个空元素(empty element)可能是 HTML,SVG,或者 MathML 里的一...

  • html标签

    1,什么是空标签? 一个空元素(empty element)可能是HTML,SVG,或者MathML 里的一个不可...

网友评论

      本文标题:HTML MathML

      本文链接:https://www.haomeiwen.com/subject/uqsymxtx.html