创建一个列表,编号为 1 a)、b)、c)、2 a)、b) 等

创建一个列表,编号为 1 a)、b)、c)、2 a)、b) 等

我想创建一个这样的列表:

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}

相关内容