有长除法宏吗?

有长除法宏吗?

我想在 Latex 中进行常规长除法。另请参阅:http://en.wikipedia.org/wiki/Long_division

有没有用于这个的乳胶宏?

编辑:我实际上想在 mathjax 中使用它,可以吗?

答案1

长除法\input,它没有加载\usepackage,因为它不是 LaTeX 特有的。

示例输出

\documentclass{article}

\input{longdiv}

\begin{document}

\longdiv{6000}{34}

\end{document}

答案2

也许xlop包是你想要的:

\documentclass{article}
\usepackage{xlop}

\begin{document}
\opdiv{6000}{34}

\opdiv[maxdivstep=3]{6000}{34}
\end{document}

在此处输入图片描述

相关内容