如何创建具有固定前缀和增量数字的列表

如何创建具有固定前缀和增量数字的列表

可能重复:
使用属性进行枚举

如何创建包含混合列表的列表,即由固定前缀(例如字母)和自动递增数字组成的列表。例如

A1 my text....
A2 another text;
A3 again text.

也许存在这样一个我不知道的包......

答案1

使用enumitem

\documentclass{article}

\usepackage{enumitem}

\begin{document}

\begin{enumerate}[label=A\arabic*]
\item First item
\item Second item
\end{enumerate}

\end{document}

相关内容