使用其他字母创建列表

使用其他字母创建列表

有没有办法(使用 compactenum)以字母 b) 而不是 a) 来开始列表,而无需在序言中给出任何定义?

\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}

在此处输入图片描述

相关内容