我在使用带有每个项目自定义标签的列表时遇到了一个小问题。当我使用以下代码时,列表项未正确缩进,它使用后面的第二个数字来\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}
。