考试文档类末尾的封面

考试文档类末尾的封面

我正在使用考试文档类,目前有

\pagestyle{headandfoot}
\runningfooter{foo}{Page \thepage\ }{\iflastpage{End of Paper}{bar}}

指导学生何时考试结束。

我们的大学现在要求我们在考试封底打印说明。我想在不干扰现有页脚的情况下添加这些说明。因此,我想我正在寻找类似封面的东西,但在文档的末尾。

(如果能确保封底的页码是偶数就更好了,但我很乐意对此进行硬编码。)

答案1

  • \clearleftpage将确保以下文本放置在双面文档的偶数页上,或放置在单面文档的下一页上(基于https://tex.stackexchange.com/a/11709/36296

  • 文本\AtEndDocument会自动放置在末尾,而不会干扰您的脚注。


\documentclass[twoside]{exam}

\usepackage{lipsum}

\makeatletter
\newcommand*{\clearleftpage}{%
    \clearpage
    \if@twoside
    \ifodd\c@page
    \hbox{}\newpage
    \if@twocolumn
        \hbox{}\newpage
    \fi
    \fi
    \fi
}
\makeatother

\pagestyle{headandfoot}
\runningfooter{foo}{Page \thepage\ }{\iflastpage{End of Paper}{bar}}

\AtEndDocument{\clearleftpage bla}

\begin{document}

\lipsum
\lipsum

\end{document}

在此处输入图片描述

相关内容