in formatting my table of contents I have the following problem. As per style guidelines of my university I am required to typeset the page numbers of the appendix using roman numbers. Unfortunately, roman numbers tend to get very large (e.g. LXXXVIII).
Using tocloft I therefore have to set:
Code: Select all
\cftsetpnumwidth{45pt}
\cftsetrmarg{65pt}
So, is there any way to make the dots in the table of contents run up all the way to each individual number?
Minimal Working Example:
Code: Select all
\documentclass[12pt, numbers=noenddot]{scrartcl}
\usepackage[ngerman]{babel}
\usepackage[babel, german=quotes]{csquotes}
\usepackage[T1]{fontenc}
\usepackage{tocloft}
\cftsetpnumwidth{70pt}
\cftsetrmarg{85pt}
\renewcommand{\cftsecleader}{\cftdotfill{\cftdotsep}}
\begin{document}
\tableofcontents
\clearpage
\section{Sec1}
\clearpage
\pagenumbering{Roman}
\setcounter{page}{88}
\section{Sec2}
\end{document}