I have a quite urgent topic as the deadline for my thesis is approaching and I am struggling with this issue the whole day.
The page numbers are not aligned properly for part of the table of context - more specifically for the part where I include appendices. Pls refer to the pic to get an idea what I mean. The alignment should be like for pp. 70, VII and IX.
I would have loved to create an example, but I am running out of time since I need to be done by tomorrow.
Thanks for your help in advance. Martin
Edit:
\newpage
\pagenumbering{Roman}
% Verzeichnisse
\tableofcontents
\newpage
\markboth{List of Figures and Tables}{List of Figures and Tables}
\listoffigures
\listoftables
\newpage
\markboth{List of Acronyms}{List of Acronyms}
\input{\WPath _acronyms.tex}
\newpage
\markboth{List of Symbols}{List of Symbols}
\input{\WPath _symbol.tex}
\newpage
\newcounter{mypage}
\setcounter{mypage}{\value{page}}
\pagenumbering{arabic} % Haupttext in arabischer Nummerierung
\input{\WPath _content.tex} % hier kommt das eigentliche Contentfile mit dem entsprechenden Text
\clearpage
\pagenumbering{Roman}
\setcounter{page}{\value{mypage}}
\appendix
\input{\WPath _annex.tex}


\input? Which documentclass are you using, which packages? – Jun 07 '17 at 17:45