[Tex/LaTex] ToC: How to no-indent the second line of large entries

indentationtable of contentstocloft

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.

Best Answer

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}

enter image description here

Related Question