Я хочу создать такой список:
1 (a) first item
(b) second item
2 (a) third item
(b) fourth item
3 (a) fifth item
(b) sixth item
и т. д. Можно ли это как-то сделать?
Спасибо
решение1
Единственное, что вам нужно изменить, это выдать инструкцию
\renewcommand{\labelenumi}{\theenumi}
для того, чтобы избавиться от точки, которая ставится после цифр уровня 1.
Полная версия MWE:
\documentclass{article}
\renewcommand\labelenumi{\theenumi} % default is "\theenumi."
\begin{document}
\begin{enumerate}
\item
\begin{enumerate}
\item first item
\item second item
\end{enumerate}
\item
\begin{enumerate}
\item third item
\item fourth item
\end{enumerate}
\end{enumerate}
\end{document}