Overfull hbox in ToC after chapter numbers changed to Roman; see MWE below. With the tocloft package \setlength\cftchapternumwidth{3em} solves the problem.
But: Is there any solution to the problem NOT using tocloft but titletoc?
\documentclass{book}
\usepackage{titletoc}
\begin{document}
\renewcommand{\thechapter}{\Roman{chapter}}
\setcounter{chapter}{7}
\tableofcontents
\chapter{Lipsum}
\section{Introduction}
\subsection{Introduction to introduction}
\subsubsection{Introduction to introduction to introduction}
\end{document}
PS: I have specified certain things in the ToC using titletoc and would be glad not to have to do everything again with tocloft. That's why I want to avoid the tocloft solution!
