如何控制 itemize 中的文本对齐方式和间距?

如何控制 itemize 中的文本对齐方式和间距?

我想在itemize列表中使用长项目。为了控制项目的对齐方式,我使用某些选项(参见示例)。但是,这会弄乱文本的对齐方式。我如何删除第一行的缩进?

\documentclass{article}
\usepackage{enumitem}
\setlist[itemize]{wide=0pt, widest=99,leftmargin=*, labelsep=4.5em}

\begin{document}
\begin{itemize}
    \item[Long item] This text is too long for a single line. But, as you can see, the alignment of the first line is different from the alignment of all other lines. How to fix that?
    \item[Longer item] Some text.
\end{itemize}
\end{document} 

在此处输入图片描述

相关内容