I am currently stuck with a problem related to the indentation in the table of contents. Essentially, the numbering "eats into" the heading. This happens for "Chapter 7" and "Chapter 8" in the example. Unfortunately, I cannot change the type of numbering, as it is required by the professor.
Is there any method to increase indentation for chapters in the table of contents without changing indentation in the regular document?
Many thanks, your help is highly appreciated!
desp_user
\documentclass[12pt, a4paper, tocindentauto, bibliography=totoc, listof=totoc, final]{scrbook}
\renewcommand\thepart{\Alph{part}}
\renewcommand\thechapter{\Roman{chapter}}
\renewcommand\thesection{\arabic{section}}
\renewcommand\thesubsection{\thesection.\arabic{subsection}}
\begin{document}
\frontmatter
\tableofcontents
\mainmatter
\part{Part 1}
\chapter{Chapter 1}
\chapter{Chapter 2}
\chapter{Chapter 3}
\chapter{Chapter 4}
\chapter{Chapter 5}
\chapter{Chapter 6}
\chapter{Chapter 7 - issue}
\chapter{Chapter 8 - issue}
\chapter{Chapter 9}
\end{document}

\thesectioncan be dangerous. The countersectionstarts at every chapter with 1. So you have a lot of section with the number 1 and so you can't reference to them. – Marco Daniel Apr 02 '17 at 12:30