我想在这样的网页上呈现两个数字:
123
+ 456
______
我找到了这个例子:
<mstack>
<mn>496</mn>
<msrow> <mo>+</mo> <none/> <mn>28</mn> </msrow>
<msline/>
</mstack>
但MathJax 不支持 mstack、msrow 和 msline 元素。我尝试使用 mtable
<body>
<math xmlns="http://www.w3.org/1998/Math/MathML">
<mtable id="test" columnalign="right">
<mtr><mtd></mtd><mtd><mn>12321</mn></mtd></mtr>
<mtr><mtd><mo>+</mo></mtd><mtd><mn>45665445</mn></mtd></mtr>
</mtable>
</math>
</body>
使用这个 CSS:
<style type="text/css">
#test
{
border-bottom:1px solid black;
}
</style>
但底部边框与较低的数字重叠。有没有办法用 MathJax/MathML 实现这种布局?