如何倒写长除法公式,将商写在底部

如何倒写长除法公式,将商写在底部

我想在 Mathjax 中倒写一个长除法方程。

然而,使用类似关键字“longdiv upside down”进行谷歌搜索并没有给我一个好的解决方案。

解决方案在 latex 中写入这个除法 有垂直杆,但我想要弯曲杆。

我找到了另一个解决方案关联并将 修改\longdiv)\underbar形式。这和我想要的是最相似的,但\underline{sth}和 的\underline{\smash{sth}}边缘都有一点缝隙。它们的边缘不如 贴合得好\longdiv

这是我的问题。如果存在的话,你能告诉我这个语法吗?实际上,我不知道这个语法是否存在。


以下是我编写的 Mathjax 代码的一部分以及实际结果的图像。
由于这只是一个原型,所以数字写错了,请见谅。请注意除法符号。

$$ 
\require{enclose}
\begin{array}{rll}

   4 \underline{\smash{)500\phantom{0}}} && \hbox{($4 \times 1 = 4$)} \\[-3pt]
      10\phantom{00} && \hbox{($5 - 4 = 1$)} \\[-3pt]
      \underline{) \phantom{0}8\phantom{00}} && \hbox{($4 \times 2 = 8$)} \\[-3pt]
      \phantom{00}20 \phantom{0} && \hbox{($10 - 8 = 2$)} \\[-3pt]
      \underline{)\phantom{0}20 \phantom{0}} && \hbox{($4 \times 5 = 20$)} \\[-3pt]
      \phantom{0}0 \phantom{0}
  \end{array}
$$

在此处输入图片描述

相关内容