0
我想呈現在網頁上的兩個數字是這樣的:呈現垂直佈局與MathJax另外兩個數的和asciimath瀏覽器的
123
+ 456
______
有使用MathML和mathjax類似的問題 Unable to render vertically lay out addition of two numbers with MathJax and MathML
有沒有辦法使用asciimath
我想呈現在網頁上的兩個數字是這樣的:呈現垂直佈局與MathJax另外兩個數的和asciimath瀏覽器的
123
+ 456
______
有使用MathML和mathjax類似的問題 Unable to render vertically lay out addition of two numbers with MathJax and MathML
有沒有辦法使用asciimath
AsciiMath並沒有真正有一個語法正確做到這一點來實現這樣的渲染,但你可以嘗試
{:(\ \ \ \ 123),(+\ 456),(_):}
問題是你必須用\
(反斜槓空格)手工對齊右手,這很難正確。爲此,最好使用TeX或MathML輸入。請注意,您可以配置MathJax以允許多個輸入表單,因此可以將AsciiMath用於其他所有內容,MathML用於此。例如
<math display="block" xmlns="http://www.w3.org/1998/Math/MathML">
<mtable columnalign="right">
<mtr><mtd><mn>123</mn></mtd></mtr>
<mtr><mtd><mo form="infix">+</mo><mn>456</mn></mtd></mtr>
<mtr><mtd><mo stretchy="true">-</mo></mtd></mtr>
</mtable>
</math>
會產生您正在尋找的排列。