Kevin Pfeiffer wrote:
> I'm using koma-book and have renewed the commands for \chapterpagestyle
> and \indexpagestyle to be empty so that no page numbers appear on the
> first page. But how do I do this for the first page of the TOC and the
> list of figures? I've tried a couple wild guesses and looked at the
> Wiki (as well as the LaTeX Companion) but not yet found anything.
Either use tocloft (\tocloftpagestyle) or do something like the following:
\addtocontents{toc}{\protect\thispagestyle{empty}}
\pagestyle{empty}
[TOC]
\pagestyle{<your default pagestyle>}
HTH,
Jürgen