
私は博士論文を書いていますが、参考文献の直前の原稿の最後のページにページ番号がないことに気が付きました。他のページはすべて正しく番号が付けられているのですが、このページだけ番号が付けられていません。この間違いを訂正するにはどうすればよいでしょうか?
\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
すでに新しいページが開始されているためです。したがって、参考文献は巻末部分を開始しないようです。