编号列表中的数字缩进

编号列表中的数字缩进

我在 LaTeX 文档中有一个编号列表,它会自动缩进数字。我该如何阻止这种情况发生?

答案1

通常人们会选择enumitem因为它可以非常轻松地对列表进行本地化(或全局)更改。

在此处输入图片描述

\documentclass{article}
\usepackage{enumitem}
\setlist[enumerate,1]{leftmargin=*}
\begin{document}

\noindent
This is some paragraph text with no indent.

\begin{enumerate}
  \item First item
  \item Second item
  \item Third item that is very long and should span at least two lines within this environment.
  \item Last item
\end{enumerate}

\end{document}

相关内容