使用自定义标签的列表中的缩进问题

使用自定义标签的列表中的缩进问题

我在使用带有每个项目自定义标签的列表时遇到了一个小问题。当我使用以下代码时,列表项未正确缩进,它使用后面的第二个数字来\Rightarrow缩进段落

\documentclass[a4paper]{article}
\begin{document}
\noindent Some text before
\begin{enumerate}
\item[$(1)\Rightarrow (2)$:] Proof 1 
\item[$(2)\Leftrightarrow (3)$:] Proof 2
\item[$(2)\Rightarrow (1)$:] Proof 3
\end{enumerate}
Some text after
\end{document}

我尝试使用\indent命令以及\hspace,但无法使其工作。有人能帮助我吗?

答案1

您应该强制left使用enumitem

在此处输入图片描述

\documentclass[a4paper]{article}
\usepackage{enumitem}
\begin{document}
\noindent Some text before
\begin{enumerate}[align=left]
  \item[$(1)\Rightarrow (2)$:] Proof 1 
  \item[$(2)\Leftrightarrow (3)$:] Proof 2
  \item[$(2)\Rightarrow (1)$:] Proof 3
\end{enumerate}
Some text after
\end{document}

也可以通过 进行全局设置\setlist[enumerate]{align=left}

相关内容