创建仅嵌套编号的列表

创建仅嵌套编号的列表

我想创建自己的列表,其中仅包含嵌套编号,如下所示:

1.1 AAA
1.2 BBBB
1.3 CCCC

当我使用

\begin{enumerate}
\begin{enumerate}[label*=.\arabic*,leftmargin=*,labelsep=2ex]
\item First section \dotfill 3
\end{enumerate}
\end{enumerate}

我收到 \item 缺失的错误(当然它是正确的,但我不想只嵌套主编号)。如何改进?

答案1

根本不需要嵌套(或手动编写列表)

\documentclass{article}
\usepackage{enumitem}

\begin{document}

\begin{enumerate}[label=1.\arabic*,leftmargin=*,labelsep=2ex]
\item First section \dotfill 3
\end{enumerate}
\end{document}

在此处输入图片描述

相关内容