如何在考试类 \fillwithdottedlines 中继续下一页的行

如何在考试类 \fillwithdottedlines 中继续下一页的行

我的问题基本上与之前提出的问题相同:

如何在考试类 \fillwithlines 中继续下一页的行

除了 \fillwithdottedlines

“我使用 exam 类来排版我的考试。我通常使用 \fillwithdottedlines{3in} 为答案留出空间,因为我喜欢固定空间量。但是,当问题位于页面末尾并且 \fillwithdottedlines{3in} 所需的空间超出该空间时,行不会在下一页继续。相反,整个问题会移动到下一页,而当前页面为空白。有没有办法改变这种行为,让行从一页开始,然后继续到下一页?”

任何帮助都将不胜感激:D。

\begin{document}
\begin{questions}
\question This question should appear on page 1. It should be followed by lines which continue on page 2.
\fillwithdottedlines{20in}
\end{questions}
\end{document}

答案1

用这个改变你的代码行一次:

\begin{document}
    
    \begin{enumerate}
        \item This question should appear on page 1. It should be followed by lines which continue on page 2.
        \fillwithlines{2in}
        \item Second question.
        \fillwithlines{4in}
        \item Third question.
        \fillwithlines{3in}
    \end{enumerate}
\end{document}

你有:

在此处输入图片描述

相关内容