- MathML 教程
- MathML - 首页
- MathML - 概述
- MathML - 所有元素
- MathML - 基本元素
- MathML - 载体
- MathML - 闭合元素
- MathML - 界限符
- MathML - 分数
- MathML - 长除法
- MathML - 矩阵
- MathML - 乘法
- MathML - 上标
- MathML - 填充
- MathML - 虚元素
- MathML - 根式
- MathML - 循环小数
- MathML - 样式
- MathML - 下标
- MathML - 下标-上标
- MathML - 上标
- MathML - 下下标
- MathML - 下下标-上标
- MathML 符号
- MathML - 代数符号
- MathML - 微积分符号
- MathML - 省略号符号
- MathML - 函数符号
- MathML - 几何符号
- MathML - 希腊字母
- MathML - 无形运算符
- MathML - 逻辑符号
- MathML - 集合符号
- MathML 有用资源
- MathML - 快速指南
- MathML - 有用资源
- MathML - 讨论
MathML - 矩阵
<mtable> 标签用于绘制矩阵。
语法
mtable 类似于 HTML 的 table 标签,此标签使用 mtr、mtd 元素,它们类似于 HTML 的 tr 和 td 标签。
<mtable> <mtr> <mtd></mtd></mtr></mfrac>
属性
以下是此标签所有属性的描述:
align − 指定表格的垂直对齐方式。有效值为:axis、baseline、bottom、center、top。默认值为 axis。
class, id, style − 与样式表一起使用。
columnalign − 指定单元格的水平对齐方式。有效值为:left、center 和 right。默认值为 center。
columnlines − 指定列边框。有效值为:none、solid 和 dashed。默认值为 none。
columnspacing − 指定表格列之间的间距。
displaystyle − 如果为 true,则为显示的方程式使用更多垂直空间;如果为 false,则使用更紧凑的布局来显示公式。
frame − 指定整个表格的边框。有效值为:none、solid 和 dashed。默认值为 none。
framespacing − 指定在表格和边框之间添加的额外空间。
href − 指定指向指定 uri 的超链接。
mathbackground − 指定背景颜色。有效格式为 #rgb、#rrggbb 和 html 颜色名称。
mathcolor − 指定文本颜色。有效格式为 #rgb、#rrggbb 和 html 颜色名称。
rowalign − 指定单元格的垂直对齐方式。有效值为 axis、baseline、bottom、center 和 top。默认值为 baseline
rowlines − 指定行边框。有效值为:none、solid 和 dashed。默认值为 none。
width − 指定整个表格的宽度。
示例
让我们绘制一个 3 x 3 矩阵。
<math xmlns = "http://www.w3.org/1998/Math/MathML"> <mrow> <mo>[</mo> <mtable> <mtr> <mtd><mn>1</mn></mtd> <mtd><mn>0</mn></mtd> <mtd><mn>0</mn></mtd> </mtr> <mtr> <mtd><mn>0</mn></mtd> <mtd><mn>1</mn></mtd> <mtd><mn>0</mn></mtd> </mtr> <mtr> <mtd><mn>0</mn></mtd> <mtd><mn>0</mn></mtd> <mtd><mn>1</mn></mtd> </mtr> </mtable> <mo>]</mo> </mrow> </math>