HTML5 MathML

2016-08-17  本文已影响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

个人觉得意义不是太太

上一篇下一篇

猜你喜欢

热点阅读