tags:

views:

167

answers:

1

I want to create section without numbers using the command \section*{Section Name}, but doing this omits them from the table of contents. The same thing happens using \part*{Part Name}. Is there a way to omit the section number and keep the section title in the table of contents?

+2  A: 

You can add a line to the toc with this command:

\addcontentsline{toc}{chapter}{Your Title}
pgb