I would like to change the chapter style so that chapters start at the top of the page. With
\renewcommand\chapter{\@startsection{chapter}{0}{\z@}%
{-2em}%
{6pt}%
{\LARGE\bfseries}}
this works fine for numbered chapters. How can I do this for unnumbered chapters such as TOC, LOF etc?
chapterheadstartvskip– Johannes_B Jun 06 '14 at 07:55\documentclass{scrreprt} \usepackage{blindtext} \usepackage{showframe} \renewcommand{\chapterheadstartvskip}{\vspace*{-2\topskip}} \begin{document} \tableofcontents \listoffigures \blinddocument \end{document}– Johannes_B Jun 06 '14 at 08:25tocloftis also not recommended when using a KOMA class. – Johannes_B Jun 06 '14 at 08:57