html5学习笔记16-MathML 数学标记语言,书写数学符号和公式的置标语言

https://www.runoob.com/html/html5-mathml.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>ami><mn>2mn>msup>
            <mo>+mo>                               
            <msup><mi>bmi><mn>2mn>msup>
            <mo>=mo>                               
            <msup><mi>cmi><mn>2mn>msup>
         mrow>                       
      math>    
      
      以下为矩阵
      <math xmlns="http://www.w3.org/1998/Math/MathML">
          <mrow>
            <mi>Ami>
            <mo>=mo>                       
            <mfenced open="[" close="]">                       
               <mtable>
                  <mtr>
                     <mtd><mi>xmi>mtd>
                     <mtd><mi>ymi>mtd>
                  mtr>                                       
                  <mtr>
                     <mtd><mi>zmi>mtd>
                     <mtd><mi>wmi>mtd>
                  mtr>
               mtable>               
            mfenced>
         mrow>
      math>           
   body>
html>

你可能感兴趣的:(html,html)