HTML5 MathML简介

admin9个月前笔记93

image.png

MathML 是数学标记语言,是一种基于XML(标准通用标记语言的子集)的标准,用来在互联网上书写数学符号和公式的置标语言。

注意:目前只有 Firefox 或 Safari 浏览器支持,大部分浏览器还不支持 MathML 标签,如果你的浏览器不支持该标签,可以使用最新版的 Firefox 或 Safari 浏览器查看。

MathML 实例

以下是一个简单的 MathML 实例:

实例

<!DOCTYPE html>
<html>
   <head>
      <meta charset="UTF-8">
      <title>菜鸟教程(runoob.com)</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>

使用第三方库来支持:

实例

<!DOCTYPE html>
<html>
   <head>
      <meta charset="UTF-8">
      <title>菜鸟教程(runoob.com)</title>
      <script type="text/javascript" src="https://static.runoob.com/assets/js/mathml/mspace.js"></script>
   </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>

运行结果图,如下所示:
image.png以下实例添加了一些运算符:

实例

<!DOCTYPE html>
<html>
   <head>
      <meta charset="UTF-8">
      <title>菜鸟教程(runoob.com)</title>
   </head>       
   <body>       
      <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>               
   </body>
</html>

使用第三方库来支持:

实例

<!DOCTYPE html>
<html>
   <head>
      <meta charset="UTF-8">
      <title>菜鸟教程(runoob.com)</title>
      <script type="text/javascript" src="https://static.runoob.com/assets/js/mathml/mspace.js"></script>
   </head>       
   <body>       
      <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>
                  <mi>x</mi>
               </mrow>                                      
               <mo>+</mo>
               <mn>4</mn>                                       
            </mrow>                               
            <mo>=</mo>
            <mn>0</mn>                                 
         </mrow>
      </math>               
   </body>
</html>

运行结果图,如下所示:
image.png以下实例是一个 2×2 矩阵,可以在 Firefox 3.5 以上版本查看到效果:

实例

<!DOCTYPE html>
<html>
   <head>
      <meta charset="UTF-8">
      <title>菜鸟教程(runoob.com)</title>
   </head>       
   <body>
      <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>

使用第三方库来支持:

实例

<!DOCTYPE html>
<html>
   <head>
      <meta charset="UTF-8">
      <title>菜鸟教程(runoob.com)</title>
      <script type="text/javascript" src="https://static.runoob.com/assets/js/mathml/mspace.js"></script>
   </head>
       
   <body>
      <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>

运行结果图,如下所示:
image.png


相关文章

用于自动监控磁盘使用情况的 Shell 脚本

用于自动监控磁盘使用情况的 Shell 脚本

在文章中,我们写一个 shell 脚本,它在 crontab 中指定固定时间间隔监控磁盘使用情况,并在报告达到指定的阈值时通过电子邮件发送报告。首先,需要确保系统安装了mail命令...

在 CentOS 7 中安装、配置和安全加固 FTP 服务

在 CentOS 7 中安装、配置和安全加固 FTP 服务

FTP(文件传输协议)是一种用于通过网络在服务器和客户端之间传输文件的传统并广泛使用的标准工具,特别是在不需要身份验证的情况下(允许匿名用户连接到服务器)。我们必须明白,默认情况下 FTP 是不安全的...

自定义 sudo 在你输入错误的密码时嘲讽信息

自定义 sudo 在你输入错误的密码时嘲讽信息

你可以在上面的文件中定义 sudoers 嘲讽或其他选项。它在 defaults 部分下设置。在本文中,我们将解释一个 sudoers 配置参数,以允许个人或系...

uptime 命令介绍

uptime 命令介绍

Linux uptime 命令望名生义,uptime 命令告诉你系统启动up了(运行了)多长时间。这是语法:uptime [options]这个工具的 man 页是这么说的:uptime会在...

nginx源码安装的同时并对nginx进行优化配置

nginx源码安装的同时并对nginx进行优化配置

Nginx编译前的优化[root@linuxprobe ~]# wget http://nginx.org/download/nginx-1.10.1.tar.gz [...

ncat 几个常用例子

ncat 几个常用例子

ncat 或者说 nc 是一款功能类似 cat 的工具,但是是用于网络的。它是一款拥有多种功能的 CLI 工具,可以用来在网络上读、写以及重定向数据。...

发表评论    

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。