我对 LaTeX 还不太熟悉,现在遇到了一个恼人的问题。我正在制作几份大型的多项选择题考试。由于每道考试题目都比较长,所以我想在新的一页上开始每道新题目。
\documentclass{exam}
\begin{document}
\begin{questions}
\question This is the question \#1. \newline
\begin{parts}
\part This is sub-question \#1. \newline
\begin{oneparchoices}
\choice This is choice 1. \newline
\choice This is choice 2. \newline
\choice This is choice 3. \newline
\end{oneparchoices}
\part This is sub-question \#2. \newline
\begin{oneparchoices}
\choice This is choice 1. \newline
\choice This is choice 2. \newline
\choice This is choice 3. \newline
\end{oneparchoices}
\end{parts}
\end{questions} \newpage %this \newpage command sporadically causes a blank page in the document, but does what I want the rest of the time.
\end{document}
在每个问题的末尾,我都会重新翻开一页。有时,当前页面已经满了,这意味着\新队写在新页的顶部,导致整个考试过程中出现随机空白页。有办法解决这个问题吗?
我意识到我可以滚动浏览(非常大的)文档并删除选择的 \newline 命令,但对于我需要制作的文档量来说,这会非常耗时。
干杯,
大卫。