我正在使用“if”来制作两个版本的文档(一个问题集和一个答案)。我希望在使用 vfill 时两个版本具有相同的垂直间距,但我认为这可能不太有效。
我的问题:
- 有没有办法让它们具有相同的间距,而无需进行反复试验?
- 你如何判断某项任务不值得尝试?是否值得尝试修复此问题?
梅威瑟:
\documentclass{article}
\usepackage[margin=1in, bottom=6in]{geometry} % This is to make the MWE more viewable, not a part of the original document
\newif\ifkey
\keytrue % comment out to view student version
\begin{document}
\ifkey Teacher version \else Student version \fi
\begin{enumerate}
\item Question 1
\ifkey key \\ has \\ long \\ answer \fi
\vfill
\item Question 2
\ifkey key has short answer \fi
\vfill
\item Question 3 \ifkey key doesn't take any vertical space \fi
\vfill
\end{enumerate}
\end{document}
这些截图不太好,因为我无法将它们并排显示,但希望你能明白我的意思
[