Crie uma lista numerada 1 a), b), c), 2 a), b), etc.

Crie uma lista numerada 1 a), b), c), 2 a), b), etc.

Quero criar uma lista como esta:

1 (a) first item  
  (b) second item  

2 (a) third item  
  (b) fourth item  

3 (a) fifth item  
  (b) sixth item

e assim por diante. Existe alguma maneira de fazer isso?

Obrigado

Responder1

A única coisa que você precisa mudar é emitir a instrução

\renewcommand{\labelenumi}{\theenumi}

para se livrar do ponto final (também conhecido como ponto final) colocado após os numerais de nível 1.

Um MWE completo:

\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}

informação relacionada