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}

