Page Layout ⇒ Modify table of Contents content
Modify table of Contents content
Acknowledgements iii
Abstract v
Contents vii
1 Introduction 1
2 Survey 6
etc.
I have successfully changed the numbering of pages from roman to arabic after the table of contents part BUT I cannot find a way to include acknowledgements, abstract, and contents in the Table of Contents.
Any ideas how this can be done?
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Modify table of Contents content
Where the acknowledgements section occurs in your document, add:
\addcontentsline{toc}{chapter}{Acknowledgements}
And so on.
I don't know what document class you're using, but the following works perfectly well for the Book class:
Code: Select all
\documentclass{book}
\begin{document}
%
\frontmatter
Whatever is on page i.
%
\cleardoublepage
\addcontentsline{toc}{chapter}{Acknowledgements}
\chapter*{Acknowledgements}
These are acknowledgements.
%
\cleardoublepage
\addcontentsline{toc}{chapter}{Abstract}
\chapter*{Abstract}
This is the abstract.
%
\cleardoublepage
\addcontentsline{toc}{chapter}{Contents}
\tableofcontents
%
\mainmatter
\chapter{Introduction}
This is chapter one.
\chapter{Survey}
This is chapter two.
\end{document}