如何在考试类中添加恒定高度

如何在考试类中添加恒定高度

我使用 \documentclass[addpoints,answers,10pt]{exam} 创建了 MCQ 试卷;在此每个页面上,我都必须提供“粗略工作空间”。 “粗略工作空间”的高度约为页面高度的 20%。 此高度在所有页面上都是恒定的。 请提出建议,是否有任何方法可以在页面底部添加恒定高度,以保留用于粗略工作的空间?在此处输入图片描述

我试过了\setlength{\footskip}{200pt};但是没有用。

答案1

尝试\setlength\textheight{15cm}或适合您的长度。然后您可以将页脚推入向下例如,\setlength{\footskip}{8.5cm}

\documentclass[addpoints,answers,10pt]{exam}
\setlength\textheight{15cm}
\setlength{\footskip}{8.5cm}

\providecommand{\myquestion}{%
\question 
Question text

\begin{choices}
\choice First choice
\choice Second choice
\choice Third choice
\choice Fourth choice
\end{choices}
\medskip
}
\begin{document}
\begin{questions}
\myquestion
\myquestion
\myquestion
\myquestion
\myquestion
\myquestion
\myquestion
\myquestion
\myquestion

\end{questions}
\end{document}

在此处输入图片描述

编辑:

由于下面的空间\textheight基本上是页脚,因此您可以使用页脚文本作为此空间的有效页眉。为此,请删除\setlength{\footskip}{8.5cm}上例中的,并按照文档第 2.6 节中的说明自定义页脚外观exam。请注意,第一页的页眉和页脚是分开处理的。

在此处输入图片描述

\documentclass[addpoints,answers,10pt]{exam}
\setlength\textheight{15cm}
\firstpagefooter{Space for Rough Work}{}{}
\firstpagefootrule
\runningfooter{Space for Rough Work}{}{}
\runningfootrule

\providecommand{\myquestion}{%
\question 
Question text

\begin{choices}
\choice First choice
\choice Second choice
\choice Third choice
\choice Fourth choice
\end{choices}
\medskip
}
\begin{document}
\begin{questions}
\myquestion
\myquestion
\myquestion
\myquestion
\myquestion
\myquestion
\myquestion
\myquestion
\myquestion

\end{questions}
\end{document}

相关内容