如何在目录前写章节?

如何在目录前写章节?

假设我正在写一份报告(使用报告类),我想在目录之前添加一些章节,我该怎么做?如何从目录之后开始对章节进行编号?

答案1

在此处输入图片描述

\documentclass{book}

\begin{document}

\frontmatter

\chapter{intro}
something

\chapter{acknowledgements}
somebody

\tableofcontents

\mainmatter

\chapter{start here}
the real stuff

\chapter{more stuff}
\ldots

\end{document}

相关内容