多列枚举环境

多列枚举环境

有没有简单的方法来生成这样的两列枚举列表:

a. A short bit of text          d. And so on
b. Another short bit            e. Down to ...
c. Yet another                  f. The end

我查看了multicol、、和包,但它们都存在一些问题,使它们不太适合我的目的。有谁知道有什么方法可以让我轻松使用tasks吗?我正在写一篇文章,所以我会用到很多这样的包。在理想情况下,解决方案应该比标准枚举环境稍微多一点。shortlistparacol

答案1

向下的多列枚举列表很容易——水平的列表需要任务包。

我已经使用了该multicol包并\begin{multicols}{2}...\end{multicols}为此(两列)

为了改变枚举标签,使用起来相当容易enumitem(或者enumerate,使用另一种语法)

\documentclass{article}

\usepackage{multicol}
\usepackage{enumitem}
\begin{document}

\begin{multicols}{2}

\begin{enumerate}[label={\alph*.}]
\item This 
\item starts
\item here
\item and 
\item goes
\item down
\item and so on
\item[]
\end{enumerate}
\end{multicols}
\end{document}

如果数量为奇数,则\item可以enumerate通过\item[]获取空项目条目并保持对齐来欺骗。

在此处输入图片描述

相关内容