美文网首页
HTML5 MathML

HTML5 MathML

作者: 小弱鸡 | 来源:发表于2016-08-17 10:29 被阅读72次

    HTML5 可以在文档中使用 MathML 元素,对应的标签是 <math>...</math> 。
    MathML 是数学标记语言,是一种基于XML(标准通用标记语言的子集)的标准,用来在互联网上书写数学符号和公式的置标语言。
    实例:

    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>H5第二天</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>
    
    屏幕快照 2016-08-17 上午10.16.16.png
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>H5第二天</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> -->
          <math xmlns="http://www.w3.org/1998/Math/MathML">
            
             <mrow>
                <msup><mi>x</mi><mn>2</mn></msup>
                <mo>+</mo>
                    
                <mrow>
                    <mn>4</mn><mo></mo><mi>x</mi>
                </mrow> 
                <mo>=</mo>
                <mn>0</mn>
               
             </mrow>
                
          </math>
    </body>
    </html>
    
    屏幕快照 2016-08-17 上午10.28.47.png

    个人觉得意义不是太太

    相关文章

      网友评论

          本文标题:HTML5 MathML

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