“考试”文档类中的页码

“考试”文档类中的页码

使用“考试”文档类时,LaTeX 会在第一页底部打印“1”作为页码,但会为所有后续页面打印“第 n 页”,其中 n 是页码。有人知道如何修复这个问题吗?我只想让页码出现在每页的底部。

答案1

\footer{...}{...}{...}可以使用序言中的命令重新定义页脚。

\documentclass{exam}

\usepackage{lipsum}
\footer{}{\thepage}{}

\begin{document}
\title{A title}
\author{A. Author}

\maketitle

\section{Section One}

\begin{questions}
  \question
  What if there were no air?

\end{questions}

\lipsum[1-20]

\end{document}

相关内容