%E3%80%81b)%E3%80%81c)%E3%80%812%20a)%E3%80%81b)%E3%81%AA%E3%81%A9%E3%81%AE%E7%95%AA%E5%8F%B7%E3%81%8C%E4%BB%98%E3%81%91%E3%82%89%E3%82%8C%E3%81%9F%E3%83%AA%E3%82%B9%E3%83%88%E3%82%92%E4%BD%9C%E6%88%90%E3%81%97%E3%81%BE%E3%81%99%E3%80%82.png)
次のようなリストを作成したいと思います。
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}