描述中的对齐方式错误

描述中的对齐方式错误

当我使用这个命令时:

\begin{description}
    \item[label1] text1
    \item[label2] text2
\end{description}

如果 text1 或 text2 长于一行,则第二行(例如 text1)与书写的“label1”对齐不充分。我该如何解决?

编辑:我希望图中的 c 与 A 对齐。

在此处输入图片描述

答案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} 

在此处输入图片描述

相关内容