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.
views:
67answers:
2
+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
2010-05-18 02:58:50
+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
2010-05-18 03:03:03