I have the following problem. At the moment I have this code:
\documentclass{article}
\begin{document}
\tableofcontents
\subsection{section}
\subsubsection{subsection}
\paragraph{subsubsection}
\subparagraph{paragraph}
\end{document}
Compiled the toc looks like this:
But I need it like this:
So I want, that the paragraphs list as subsubsections, the subsubsections list as subsections and the subsections list as sections in my toc.


