在“\item[·]”后缩进“enumerate”

在“\item[·]”后缩进“enumerate”

我正在尝试列出一份清单

  This is important because
  \begin{enumerate}
  \item[a)] \quad this,
  \item[b)] \quad this other and,
  \item[c)] \quad obviously this.
  \end{enumerate}

但是我见过的所有包都管理项目前的缩进空间,而我正在寻找项目后的缩进。我可以使用“\quad”,但如果文本有多行,它就不起作用。如果有人能告诉我我需要的包或代码是什么,我将不胜感激。我将不胜感激任何帮助或建议。谢谢。

答案1

我想这或多或少就是你想要的吧?我\labelsep玩过:leftmarginenumitem

\documentclass[12pt]{article}
\usepackage[utf8]{inputenc}
\usepackage[showframe]{geometry}
\usepackage{lipsum}
\usepackage{ebgaramond}
\usepackage{enumitem}

\begin{document}

\begin{enumerate}[label = \alph*), wide, labelsep = 1em, leftmargin =*]
  \item She very imprudently married the Barber: and
  \item there were present the Picninnies, and
  \item the Joblillies, and the Garyulies, and the great Panjandrum himself, with the little round button at top.
\end{enumerate}

\end{document} 

在此处输入图片描述

相关内容