手稿底部缺少页码

手稿底部缺少页码

我正在写博士论文,我注意到手稿的最后一页,就在参考书目之前,缺少页码。所有其他页面的页码都正确,只有这一页不正确。我该如何纠正这个错误?在此处输入图片描述

\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}

这是猜测,因为\backmatterbook加载器umthesis已经启动了新页面。因此,参考书目似乎没有启动后记部分。

相关内容