使用 \fillwithlines 时,如何更改每行之间的垂直空间?

使用 \fillwithlines 时,如何更改每行之间的垂直空间?

在下面的代码中,我得到了 10cm 的标尺线。如何控制每条线之间的间距?

\begin{document}
\begin{questions}
    \question what is the time Mr Wolf?
    \fillwithlines{10cm}
\end{questions}
\end{document}

答案1

您可以使用\setlength\linefillheight{<length>}。默认为.25in。您还可以使用 设置线条粗细\setlength\linefillthickness{<length>}。默认为0.1pt

\documentclass{exam}
\begin{document}

\setlength\linefillheight{.2in}
\begin{questions}
    \question what is the time Mr Wolf?
    \fillwithlines{10cm}
\end{questions}
\end{document}

相关内容