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}

관련 정보