tags:

views:

67

answers:

2

I made a table of contents using \tableofcontents Each section is made using \section yet when I do \subsection it is not listed in the table. How do I get it to list there? Thanks.

+2  A: 

Add:

\setcounter{tocdepth}{5}

to the preamble.

See: http://www.devdaily.com/blog/post/linux-unix/latex-setting-table-of-contents-toc-depth

WhirlWind
+4  A: 

Which document class are you using? I just tested it for article, and it works fine. In any case, try using this in the preamble:

\setcounter{tocdepth}{2}

Increase 2 if you want to list subsubsection, etc.

Steve