I would like chapter numbers to be in roman numerals - I, II, etc. However, in the autogenerated table of contents the space for the chapter numbers is not big enough and the larger numbers (VIII) overwrite the chapter name. Is there any way of increasing the space for the numbers?
Code: Select all
\documentclass{book}
\renewcommand{\thechapter}{\Roman{chapter}}
\begin{document}
\tableofcontents
\chapter{One}
\chapter{Two}
\chapter{Three}
\chapter{Four}
\chapter{Five}
\chapter{Six}
\chapter{Seven}
\chapter{Eight}
\end{document}