答案1
一个解决方案是calc
,它可以让您将描述左边距与您想要的项目文本对齐:
\documentclass{article}
\usepackage{enumitem}
\usepackage{calc}
\begin{document}
\begin{description}[leftmargin=\widthof{\textbf{Label 1}\hspace*{\labelsep}} ]
\item[Label 1] Some description text. Some description text. Some description text. Some description text.
\item[Label 2] Description text for label 2. Description text for label 2.Description text for label 2. Description text for label 2.
\item[Another label] Description text for another label. Description text for another label. Description text for another label. Description text for another label.
\end{description}
\end{document}