考虑以下简单的代码,它本身可以很好地显示enumerate
没有缩进的项目:
\documentclass{book}
\usepackage{enumitem}
\begin{document}
\thispagestyle{empty}
\Large
\begin{enumerate}[leftmargin=*]
\item A non-indented enumerate item using enumitem.
\item Another non-indented enumerate item using enumitem.
\item \textbf{Is there an comparatively simple way to do this without invoking the enumitem package?}
\end{enumerate}
\end{document}
它产生非缩进的输出:
我目前正在处理一个大型文档,它调用了许多包,但并非所有包都相互兼容。有时,我想显示一个不带缩进的枚举列表。上面的代码 [leftmargin=*]
立即使用了 ,\begin{enumerate}
很好地完成了任务。但是,我希望能够以相对简单的方式选择性地执行相同的操作,而无需调用enumitem
。
enumerate
问题:在使用 编译的长文档中,有选择地显示列表中没有缩进的项目的最简单方法是什么lualatex
?
谢谢。