- 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 - 长除法
<mlongdiv> 标签用于绘制长除法。
句法
这是使用此标签的简单语法 -
<mlongdiv> divisor dividend result expression </mlongdiv>
参数
这是该标签所有参数的描述 -
除数- 长除法的除数。
红利- 长除法的红利。
result - 长除法的结果。
表达式- mstack 元素或 mstack 的子元素。
属性
这是该标签所有属性的描述 -
longdivstyle - 控制长除法布局的样式。有效值为 lefttop、stackedrightright、mediumstackedrightright、shortstackedrightright、righttop、left/\right、left)(right、:right=right、stackedleftleft、stackedleftlinetop。默认值为 lefttop。
例子
让我们画一个简单的分数 1/x。
<math xmlns = "http://www.w3.org/1998/Math/MathML"> <mlongdiv longdivstyle = "lefttop"> <mn> 3 </mn> <mn> 435.3</mn> <mn> 1306</mn> <msgroup position = "2" shift = "-1"> <msgroup> <mn> 12</mn> <msline length = "2"/> </msgroup> <msgroup> <mn> 10</mn> <mn> 9</mn> <msline length = "2"/> </msgroup> <msgroup> <mn> 16</mn> <mn> 15</mn> <msline length = "2"/> <mn> 1.0</mn> </msgroup> <msgroup position='-1'> <mn> 9</mn> <msline length = "3"/> <mn> 1</mn> </msgroup> </msgroup> </mlongdiv> </math>