I have a scrartcl document with arabic and roman page numbers. The list of tables looks like this:
Arabic page numbers are right justified (relative to each other), whereas roman numbers are centered.
I would like to have all page numbers right justified, like this (the red line is just for illustration):
Although I suppose that the solution is probably related to the listof document options, I cannot find an appropriate setting. However, the problem also occurs with article instead of scrartcl, so it does not seem to be specific to KOMA script.
MWE:
\documentclass{scrartcl}
\begin{document}
\listoftables
\clearpage
\begin{table}
\caption{First main table.}
\end{table}
\clearpage
\setcounter{page}{95}
\begin{table}
\caption{Second main table.}
\end{table}
\clearpage
\pagenumbering{roman}
\setcounter{page}{1}
\begin{table}
\caption{First appendix table.}
\end{table}
\clearpage
\setcounter{page}{28}
\begin{table}
\caption{Second appendix table.}
\end{table}
\end{document}



\@pnumwidthis too small – Jun 25 '16 at 07:28