我正在使用这个exam
课程。
我正在进行一场考试,我希望最后的页脚(最后一个出现的页脚)是“考试结束”。
我有这个:
\pagestyle{headandfoot}
\runningheadrule
\firstpageheader{AP Calculus Practice Exam A1}{ Mao Laoshi }{Senior 2}
\firstpageheadrule
\runningheader{AP Calculus Practice Exam A1}
{ Page \thepage\ of \numpages}
{Senior 2 }
\footer{}
{\iflastpage{End of exam}{Please go on to the next page\ldots}}
{}
答案1
您可以使用
\iflastpage{<text 1>}{<text 2>}
里面的\footer
.<text 1>
会在最后一页使用,也会<text 2>
在除了最后一页之外的其他所有页面中使用;一个简单的例子,现在包括编辑问题的设置:
\documentclass{exam}
\usepackage[paperheight=12cm]{geometry}% just for the example
\usepackage{lipsum}% just to generate filler text for the example
\pagestyle{headandfoot}
\runningheadrule
\firstpageheader{AP Calculus Practice Exam A1}{ Mao Laoshi }{Senior 2}
\firstpageheadrule
\runningheader{AP Calculus Practice Exam A1}
{Page \thepage\ of \numpages}
{Senior 2}
\footer{}
{\iflastpage{End of exam}{Please go on to the next page\ldots}}
{}
\begin{document}
\lipsum[1-7]
\end{document}
答案2
也可以使用以下命令实现相同的结果\runningfooter{<text>}{<text>}{<text>}
:
\runningfooter{}{\iflastpage{End of exam}{Please go on to the next page\ldots}}{Page \thepage\ of \numpages}
这使得第一页的页脚与其余页面不同:
\firstpagefooter{}{}{Page \thepage\ of \numpages}