如何正确使用 \tableofcontents

如何正确使用 \tableofcontents

我想要写的是:-索引 - 备注和注释 - 章节以及所有内容,但使用以下代码:

\documentclass[a4paper]{book}
\title{Introduction}
\author{Dd}
\renewcommand*\contentsname{Summary}

\begin{document}
\maketitle
\tableofcontents
\clearpage  
\section*{remarks}
 stuff
\chapter{}
\end{document}

等等。备注就写在索引之后。

答案1

据我了解,您想要的是将移到\tableofcontents结尾 \section*{remarks}及其文本之后。然后打印顺序将是标题页、备注、目录,然后是章节。

\documentclass[a4paper]{book}
\title{Introduction}
\author{Dd}
\renewcommand*\contentsname{Summary}

\begin{document}
\maketitle
% \tableofcontents
\clearpage  
\section*{remarks}
 stuff
\tableofcontents
\chapter{}
\end{document}

源文件按从开始到结束的顺序进行处理(除非您使用可以改变此顺序的包)。例如,如果您将内容放在\tableofcontents紧前面\end{document},它将在最后打印。

相关内容