[Tex/LaTex] How to add abstract and acknowledgement pages into the table of contents

abstractnumberingsectioningtable of contents

I followed Mike's solution from my first question:

Roman numeral page numbering

My next question is how to add entries (for the abstract and acknowledgements pages) into the table of contents.

Best Answer

Assuming that the abstract and acknowledgement contents is typeset using a \chapter*{...}, you could do the following:

\chapter*{Abstract}%
\addcontentsline{toc}{chapter}{\numberline{}Abstract}%
...
\chapter*{Acknowledgements}%
\addcontentsline{toc}{chapter}{\numberline{}Acknowledgements}%
...

This will add a chapter-level (chapter) entry to the table of contents (toc) without a chapter number (\numberline{}).