0

I am trying to include paragraphs in my table of contents. I believe the reason ehy I did not find any solution yet is my documentclass:

\documentclass[ a4paper, fontsize=12pt, openright, twoside, listof=totocnumbered, bibliography=totoc, pointlessnumbers ]{scrbook}

I use one main.tex file, which uses \include to include other tex files, which contain the actual sections and paragraphs.

How do I make paragraphs show up in my toc (having a subsubsubsection would also work for me)?

1 Answers1

0

This works for me:

\documentclass[ a4paper, fontsize=12pt, openright, twoside, listof=totocnumbered, bibliography=totoc, pointlessnumbers ]{scrbook}
\begin{document}
% 1 = chapter
% 2 = section
% and so on
\setcounter{tocdepth}{5}
\tableofcontents
\chapter{chapter1}
\section{section1}
\subsection{subsection1}
\subsubsection{subsubsection1}
\paragraph{paragraph1}
\end{document}
Ronald
  • 291