- 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 - 指定表格的垂直对齐方式。有效值为:轴、基线、底部、中心、顶部。默认为轴。
class, id, style - 与样式表一起使用。
columnalign - 指定单元格的水平对齐方式。有效值为:左、中、右。默认为中心。
columnlines - 指定列边框。有效值为:无、实线和虚线。默认为无。
columnspacing - 指定表列之间的空间。
displaystyle - 如果为 true,则使用更多垂直空间来显示方程,如果为 false,则使用更紧凑的布局来显示公式。
框架- 指定整个表格的边框。有效值为:无、实线和虚线。默认为无。
框架间距- 指定在表格和框架之间添加的额外空间。
href - 指定指向指定 uri 的超链接。
mathbackground - 指定背景颜色。有效格式为 #rgb、#rrggbb 和 html 颜色名称。
mathcolor - 指定文本颜色。有效格式为 #rgb、#rrggbb 和 html 颜色名称。
rowalign - 指定单元格的垂直对齐方式。有效值为轴、基线、底部、中心和顶部。默认为基线
rowlines - 指定行边框。有效值为:无、实线和虚线。默认为无。
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>