[Tex/LaTex] Numbering subsubsections with letters

sectioning

I'm currently writing a thesis and I need to divide the sections of my chapters beyond the conventional numeric subsubsection. It's the reason why I use an asterisk *. But I'd like to change that way of ordering my sections and change the numeric section beyond subsubsection to an alphabetical order. How could I do that?

\documentclass{book}

\renewcommand{\thesubsection}{\thesection.\alph{subsubsection*}}

\begin{document}

\chapter{Title}

\section{Title}

\subsection{Title}

\subsubsection{Title}

\subsubsection*{Title}

\chapter{Second}

\end{document}

Best Answer

In the standard LaTeX classes the sectional divisions are \part, \chapter (but not in article), \section, \subsection, \subsubsection, \paragraph, and \subparagraph. Perhaps you could try using \paragraph and \subparagraph as a first go to get your lower level headings and then, if needs be, ask about changing the numbering from numeric to alphabetic.