I was making a sheet for one of my students (I'm a math tutor) that shows examples of how to solve equations and was using the multicol package. At the moment, the columns are the same length on the page, which cuts off a certain item and makes it continue on the next column, which is going to confuse my student. How would I make it so that individual items in a column stay wholly in one column and don't "spill over" into the next column?
Here is the code that I am using. Please excuse any bad habits of LaTeX coding that might be there, as I'm new to LaTeX, and my primary concern was to get it to work and later make it look nice.
Code: Select all
\documentclass[10pt]{article}
\usepackage{multicol}
\begin{document}
\begin{multicols}{2}
\begin{enumerate}
\item $2x - 3 = 13$
$2x - 3 + 3 = 13 + 3$
$2x + 0 = 16$
$2x = 16$
$x = 16 \div 2$
$x = 8$
\item $\frac{x}{3} + 2 = 10$
$\frac{x}{3} + 2 - 2 = 10 - 2$
$\frac{x}{3} + 0 = 8$
$\frac{x}{3} = 8$
$\frac{x}{3} \times \frac{3}{1} = 8 \times \frac{3}{1}$
$x = 8 \times 3$
$x = 24$
\item $2x^2 = 128$
$2x^2 \div 2= 128 \div 2$
$x^2 = 64$
$\sqrt{x^2} = \sqrt{64}$
$x = 8 ~~ or ~~ -8$
$x = 8 ~~ or ~~ x=-8$
\item $(x + 1)^2 - 2 = 7$
$(x + 1)^2 - 2 + 2 = 7 + 2$
$(x + 1)^2 + 0 = 9$
$(x + 1)^2 = 9$
$\sqrt{(x + 1)^2} = \sqrt{9}$
$\sqrt{(x + 1)^2} = 3 ~~ or ~~ -3$
$(x + 1) = 3 ~~ or ~~ (x + 1) = -3$
$x + 1 = 3 ~~ or ~~ x + 1 = -3$
$x + 1 - 1 = 3 - 1 ~~ or ~~ x + 1 - 1 = -3 - 1$
$x = 2 ~~ or ~~ x = -4$
\end{enumerate}
\end{multicols}
\end{document}