Math & Science ⇒ Newbie Question
Newbie Question
I'm new Latex and considering to use Latex for a project I have.
Can anyone let me know the Latex code to show the formula attached? (it's the an example for teaching division)
Thanks
- Attachments
-
- test.png (5.8 KiB) Viewed 4015 times
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Newbie Question
Code: Select all
\documentclass{article}
\input{longdiv}
\begin{document}
\longdiv{715}{55}
\end{document}
Please also have a look at the documentations of packages xlop, polynom and physics.
There is also a cool MathML feature for long division, you should check it out.
If you want to do whole excercise sheets, have a look at exsheets.
Code: Select all
\documentclass{article}
\usepackage{exsheets}
\SetupExSheets{solution/print=true}%Only if you want to print
%solutions
\input{longdiv}
\begin{document}
\begin{question}
$715 \div 55 = \frac{715}{55}$\par
\[715 \div 55 = \frac{715}{55}\]
\end{question}
\begin{solution}
\longdiv{715}{55}
\end{solution}
\end{document}
Re: Newbie Question
Thank you!!!!!! You're a life saver
