다른 문자로 목록 만들기

다른 문자로 목록 만들기

서문에 정의 없이 a) 대신 문자 b)를 사용하여 목록을 시작하는 방법이 있습니까(콤팩트넘 사용)?

\documentclass{article}
\usepackage{paralist}
\begin{document}
\begin{compactenum}[a)] 
\item one % start with b)
\item two
\item three
\end{compactenum}
\end{document}

답변1

\documentclass{article}
\usepackage{paralist}
\begin{document}
\begin{compactenum}[a)]\setcounter{enumi}{1}
\item one % start with b)
\item two
\item three
\end{compactenum}
\end{document}

여기에 이미지 설명을 입력하세요

관련 정보