如何制作带有描述性前缀的列表?

如何制作带有描述性前缀的列表?

这是我希望实现的一个例子:标签与列出的项目的左侧对齐。

在此处输入图片描述

答案1

我们可以猜测,这个环境被称为description

\documentclass{article}
\usepackage{enumitem}
\begin{document}

\begin{description}[style=multiline,leftmargin=8mm]
\item[DA]
\begin{itemize}
\item
This is an example of what I hope to achieve: a label is aligned to the left of the listed items.
\item
Enter image description here
\end{itemize}
\item[DA]
\begin{itemize}
\item
This is an example of what I hope to achieve: a label is aligned to the left of the listed items.
\item
Enter image description here
\end{itemize}
\end{description}



\end{document}

在此处输入图片描述

相关内容