I want to do regular long division in latex. See also: http://en.wikipedia.org/wiki/Long_division
Is there a latex macro for this ?
Edit: I actually want to use it in mathjax, is this possible ?
I want to do regular long division in latex. See also: http://en.wikipedia.org/wiki/Long_division
Is there a latex macro for this ?
Edit: I actually want to use it in mathjax, is this possible ?
There is longdiv, which is loaded with \input not \usepackage, as it is not LaTeX specific.

\documentclass{article}
\input{longdiv}
\begin{document}
\longdiv{6000}{34}
\end{document}