ToC: How to no-indent the second line of large entries?
I'm using the scrreprt class, typesetting a book with only 120mm of paperwidth.
ToC: How to no-indent the second line of large entries?
I'm using the scrreprt class, typesetting a book with only 120mm of paperwidth.
Personally, I don't like dropping the indentation, but here you go. (1.5em is only a guess.)
\documentclass{scrreprt}
\usepackage{tocloft}
\setlength{\cftchapnumwidth}{0pt}
\renewcommand{\cftchapaftersnumb}{\hspace{1.5em}}
\begin{document}
\tableofcontents
\chapter{Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Ut
purus elit, vestibulum ut, placerat ac, adipiscing vitae, felis.}
\end{document}

tocloftortocstyle? Both are ToC-customizing packages, and they are incompatible with each other. – lockstep Sep 13 '11 at 16:46