对于枚举列表如:
\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}