Getting subsection to list in table of contents in LaTeX

latex

Solution

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.

Problem

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.

Original source