我正在写博士论文,我注意到手稿的最后一页,就在参考书目之前,缺少页码。所有其他页面的页码都正确,只有这一页不正确。我该如何纠正这个错误?
\documentclass{umthesis}
\frontmatter
\maketitle
\copyrightpage
\signaturepage
\chapter{Acknowledgments}
...
\begin{abstract}
...
\end{abstract}
\tableofcontents % Table of contents
\listoftables % List of Tables
\listoffigures
\mainmatter
\chapter{Chapter 1}
...
\chapter{Chapter 2}
...
\chapter{Chapter 3}
...
\backmatter %% <--- mandatory
\interlinepenalty=10000 % prevent split bibliography entries
\bibliographystyle{chicago}
\thispagestyle{empty}
\bibliography{umthsmpl}
\end{document}
答案1
示例不完整、\begin{document}
缺失、......
有\thispagestyle{empty}
。如果在参考书目之前的页面执行,它将解释空白页码。在参考书目之前添加\clearpage
或应该会有所帮助。\cleardoublepage
\thispagestyle{empty}
这是猜测,因为\backmatter
类book
加载器umthesis
已经启动了新页面。因此,参考书目似乎没有启动后记部分。