[Tex/LaTex] Can enumerated lists be centred

#enumeratehorizontal alignmentlists

For enumerated list such as:

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

the center and centering commands don't seem to work, and the list sticks to the left hand side of the page. Is it possible to centre such a list, or would I have to use something other than enumerate?

Best Answer

You can center the list in a minipage but rather than have to guess a width for the minipage you can use the varwidth package:

enter image description here

\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}
Related Question