枚举列表可以居中吗?

枚举列表可以居中吗?

对于枚举列表如:

\begin{enumerate}
\item One
\item Two
\item Three
\end{enumerate}

center和命令centering似乎不起作用,列表粘在页面的左侧。是否可以将这样的列表居中,或者我必须使用除 之外的其他东西enumerate

答案1

您可以将列表置于中心,minipage但不必猜测小页面的宽度,您可以使用以下varwidth包:

在此处输入图片描述

\documentclass{article}
\usepackage{varwidth}

\begin{document}
\centering

X\dotfill X

\begin{varwidth}{\textwidth}
\begin{enumerate}
\item One
\item Two
\item Three
\end{enumerate}
\end{varwidth}
\end{document}

相关内容