LaTeX ToC 不显示前几章

LaTeX ToC 不显示前几章

我正在写一篇论文,但我无法让目录显示出来或者在文档中显示它之前的任何内容(即我的摘要在目录之前,但未在目录中列出!)。

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

相关内容