Is there any way in which I can either hide the 5.1 and 5.1.1? So I can directly use what I set to the right
I would need to do this hiding only for specific subsections /subsubsections
Is there any way in which I can either hide the 5.1 and 5.1.1? So I can directly use what I set to the right
I would need to do this hiding only for specific subsections /subsubsections
\section*{<Your section title>}instead of\section{<Your section Title>}After that look for the usage\addcontentsline{toc}{section}{<Your toc -table of contents- content>}if you need to add the specific sections in the table of contents – koleygr Sep 20 '20 at 20:32\renewcommand\thesection{\arabic{section}so you getnot 5.1 and use\renewcommand\thesubsection{\thesection.(\Alph{subsection})}` so you get 1.(A) – David Carlisle Sep 20 '20 at 20:38