[Tex/LaTex] Problem with indent in enumeration of paralist

#enumerateindentationlists

I have the following enumeration:

enter image description here

\documentclass{article}
\usepackage{paralist}
\begin{document}
\begin{compactenum}[i.]
\item foo
\item foo
\item foo
\item foo
\item foo
\item foo
\item foo
\item foo
\end{compactenum}
\end{document}

The text after the 8. item is indented more then any other item-text (apparently because "viii." is pretty long).

How can I fix this? I would probably like to align the item-symbols somehow.

Best Answer

Use neveradjust option for paralist package:

 \documentclass{article}
    \usepackage[neveradjust]{paralist}
    \begin{document}
    \begin{compactenum}[i.]
    \item foo
    \item foo
    \item foo
    \item foo
    \item foo
    \item foo
    \item foo
    \item foo
    \item foo
    \end{compactenum}
    \end{document}

enter image description here