I have a 3-level list with the levels formatted as follows:
A.
1.
(a)
I would like to skip a level at one point, so that I have the following:
A.
1.
(a)
(b)
B.
(a)
(b)
C.
1.
2.
Notice that I don't want to use the 1. (i.e. enumii) in the level that follows "B." and just use level 3 as the next set of labels.
I tried to use the following:
\begin{enumerate}
\def\labelenumiii{(\alph{enumiii})}
But that didn't produce the result I was looking for. It ignored the \def and just used level 2 (enumii).


\item[]– Sigur Nov 20 '18 at 15:26