我正在写一篇论文,但我无法让目录显示出来或者在文档中显示它之前的任何内容(即我的摘要在目录之前,但未在目录中列出!)。
\pagenumbering{roman}
\chapter*{ABSTRACT}
\newpage
\tableofcontents\newpage
\listoffigures\newpage
\listoftables\newpage
\clearpage
\chapter{INTRODUCTION}
\pagenumbering{arabic}
答案1
的星号形式\chapter
不会在目录中添加条目。这可以通过以下方式实现\addcontentsline
:
\documentclass{report}
\begin{document}
\pagenumbering{roman}
\chapter*{ABSTRACT}
\addcontentsline{toc}{chapter}{ABSTRACT}
\newpage
\tableofcontents\newpage
\listoffigures\newpage
\listoftables\newpage
\clearpage
\chapter{INTRODUCTION}
\pagenumbering{arabic}
\end{document}
班级book
类book
提供\frontmatter
、\mainmatter
、\backmatter
,用于处理页码样式。还\frontmatter
允许其章节不编号。然后\chapter
可以使用不带星号的:
\documentclass{book}
\begin{document}
\frontmatter
\chapter{ABSTRACT}
\newpage
\tableofcontents\newpage
\listoffigures\newpage
\listoftables\newpage
\mainmatter
\chapter{INTRODUCTION}
\end{document}