GeneralAdd to table of contents

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
muath
Posts: 30
Joined: Thu Jul 15, 2010 11:34 am

Add to table of contents

Post by muath »

Hi!
How i can add nonnumbered chapter to my contents, or my abstract to that table.
Thanks
Last edited by muath on Tue Jul 20, 2010 5:38 pm, edited 1 time in total.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

Add to table of contents

Post by gmedina »

Hi,

you can use the command \addcontentsline; a little example:

Code: Select all

\documentclass{book}

\begin{document}

\tableofcontents

\chapter*{A starred chapter}
\addcontentsline{toc}{chapter}{A starred chapter}

\end{document}
1,1,2,3,5,8,13,21,34,55,89,144,233,...
Post Reply