I am trying to create contents of a document and I am facing problem with numbering the subsubsection{} part. I am getting the following contents:
I want the subsubsections to be numbered like 1.1.1.1, 1.2.1.1 and so on in case I enter more of them. Below is the latex script:
\documentclass[a4paper]{report}
\begin{document}
\tableofcontents
\chapter{Introduction}
\section{Section 1}
\subsection{Subsection 1}
\subsubsection{Subsubsection 1}
\section{Section 2}
\subsection{Subsection 2}
\subsubsection{Subsubsection 2}
\end{document}

x.x.1.x? – ZhiyuanLck Jun 13 '20 at 13:55\setcounter{secnumdepth}{3}to your preamble. – leandriis Jun 13 '20 at 13:56x.x.x.xto stand forchapter.section.subsection.subsubsectionor something different? – leandriis Jun 13 '20 at 13:57chapter.section.subsection.subsubsection– Teo Protoulis Jun 13 '20 at 13:57\setcounter{tocdepth}{3}. – leandriis Jun 13 '20 at 13:58