I’m trying to center align an enumerated list. I used the following code block:
\begin{center}
\begin{enumerate}[label=(\Roman*)]
\item Equation 1
\item Equation 2
\item Equation 3
\item Equation 4
\end{enumerate}
\end{center}
However, the alignment was not perfect. I also tried centering without using the enumerate
tag and labeling manually. This worked, but the alignment was still not ideal.
Alternatively, I used the following format for the list:
I. Equation 1 \quad II. Equation 2
III. Equation 3 \quad IV. Equation 4
This worked better, but I am still looking for a way to perfectly center align the list.