Is there any way to do something like this using an enumerated list:
It's possible to do this with the exam package and if I have to I will but I thought there might be a way without having to bring in a specific package. In order to get on with the writing I'm currently doing something like this for a single question:
\item \phantom{x}
\begin{enumerate}
\item (a)
\item (b)
\end{enumerate}
which is far from desirable.



\usepackage{enumitem}...\begin{enumerate}[label=(\alph*)]for the second level enumeration. – Alan Munn Aug 27 '21 at 16:58