列挙リストを中央揃えにできますか?

列挙リストを中央揃えにできますか?

次のような列挙リストの場合:

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

およびコマンドcentercentering機能していないようで、リストはページの左側に固定されます。このようなリストを中央に配置することは可能ですか、それとも 以外のものを使用する必要がありますか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}

関連情報