我正在使用包撰写论文isuthesis
。我希望页码位于页面底部的中间。为此,我想到了使用fancyhdr
包。
\documentclass[answers,a4paper]{isuthesis}
\usepackage{fancyhdr}
\begin{document}
hello world
\end{document}
我收到构建错误:
!LaTeX 错误:命令 \lhead 已定义。或名称 \end... 非法,请参阅手册第 192 页。
请帮助解决此错误。
答案1
正如评论中所述,该类已经定义了诸如\lhead
或之类的命令cfoot
,您可以直接使用它们。
默认情况下,页码设置在头部的中心,您首先需要清除此字段否则页码将在页面上出现两次。
\documentclass{isuthesis}
\usepackage{blindtext}
\chead{}
\cfoot{\thepage}
\begin{document}
\blinddocument
\end{document}