Increasing nesting in sub headings with LaTeX

Posted by Andreas Grech on Stack Overflow See other posts from Stack Overflow or by Andreas Grech
Published on 2010-05-20T13:59:34Z Indexed on 2010/05/20 14:20 UTC
Read the original article Hit count: 219

Filed under:

The following is an example of what I currently have:

\setcounter{secnumdepth}{3}

\chapter{The Chapter}

\section{First Section}
\subsection{First sub Section}
\subsubsection{First sub sub Section}

which renders something like this:

Chapter 1
The Chapter

1.1 First Section
1.1.1 First Sub Section
1.1.1.1 First sub sub Section

Now unfortunately in LaTeX, I can only go down to a subsubsection (1.1.1.1) but I need to be able to go down further...for example, something like this 1.1.2.1.3. Are there any commands that will allow me to do this?

© Stack Overflow or respective owner

Related posts about latex