I'm trying to write solutions to a recently-given test. One of the problems is a list of "True/False & Justify" questions.
MWE of Questions:
\documentclass{article}
\usepackage{tkz-euclide}
\begin{document}
\begin{enumerate}
\item If $AM = MB$, then $M$ is the midpoint of $\overline{AB}$.\vfill
\item A right triangle cannot be isosceles.\vfill
\item The supplement of an acute angle is acute.\vfill
\end{enumerate}
\end{document}
I would like to be able to keep this vertical spacing exactly (i.e., the amount of whitespace between each enum-item is the same), but be able to go through and add answers after each. I know if each answer were exactly the same vertical height it wouldn't matter, but if they aren't (such as...)?
MWE of Not-Quite-Answers:
\documentclass{article}
\usepackage{tkz-euclide}
\begin{document}
\begin{enumerate}
\item If $AM = MB$, then $M$ is the midpoint of $\overline{AB}$.\\
False: For example, if $\triangle ABM$ is equilateral then $AM = MB$ but not the midpoint of $\overline{AB}$.
\begin{center}\begin{tikzpicture}[scale=2]\begin{scope}[thick]
\draw (0,0) node[below left] {$A$} -- (60:1) node[above] {$M$} -- (1,0) node[below right] {$B$} -- (0,0);
\draw (60:.5)++(-30:.1) -- ++(-30:-.2);
\draw (1,0)++(120:.5)++(30:.1) -- ++(30:-.2);
\draw (.5,.1) -- (.5,-.1);
\end{scope}\end{tikzpicture}\end{center}\vfill
\item A right triangle cannot be isosceles.\\
False: If a triangle has angles of measures $45^\circ$, $45^\circ$, and $90^\circ$, then the triangle is both isosceles and right.
\begin{center}\begin{tikzpicture}[scale=2]\begin{scope}[thick]
\draw (0,0) node[below left] {$C$} -- (0,1) node[above] {$A$} -- (1,0) node[below right] {$B$} -- (0,0);
\draw (0,0) rectangle (.2, .2);
\draw (-.1,.5) -- (.1,.5);
\draw (.5,.1) -- (.5,-.1);
\end{scope}\end{tikzpicture}\end{center}\vfill
\item The supplement of an acute angle is acute.\\
False: The supplement of $\angle A$ has measure $180^\circ - m\angle A$. If $\angle A$ is acute, then $m\angle A < 90^\circ$ and its supplement has measure $>90^\circ$, which means it is obtuse.\vfill
\end{enumerate}
\end{document}




\measuredanglemacro is undefined. – Torbjørn T. Dec 29 '16 at 20:19\measuredangleisn't native. – D.J. Dec 30 '16 at 02:16overlay, maybe. Otherwise, lie. Put them all in boxes and tell LaTeX they are all the same height and depth e.g.0pt, whatever. – cfr Dec 30 '16 at 02:39