我正在使用书籍文档类来起草我的论文。但我很难枚举页数。它在每一章的第一页上显示数字,然后它们就消失了!另外,我想反对摘要页面,但它也忽略了这一点!我希望从开头到目录的页面使用罗马数字,之后使用阿拉伯数字。
这是我正在使用的一段代码。非常感谢您的帮助。
\documentclass[12pt, letterpaper, oneside]{book}
\usepackage{fancyhdr}
\begin{document}
\frontmatter
Blah blah blah...
\begin{center}
We hereby approve this thesis for...
\end{center}
ACKNOWLEDGMENTS goes here!
\pagestyle{empty}
\newpage
Abstract goes here!
\addcontentsline{toc}{chapter}{Abstract}
\tableofcontents
\listoffigures
\addcontentsline{toc}{chapter}{List of Figures}
\listoftables
\addcontentsline{toc}{chapter}{List of Tables}
\mainmatter
\input{Chapter1}
\input{Chapter2}
\input{Chapter3}
\end{document}