[Tex/LaTex] How to write a chapter before table of contents

chapterstable of contents

Suppose I am writing a report (report class used) and I want some chapters before the TOC what should I do? How to number the chapters from after the TOC?

Best Answer

enter image description here

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