次のようなリストを作成したいと思います。
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}