Hey guys! I use KOMA script and fancyhdr to define headers and footers of my document.
In my preamble I definded: \usepackage{fancyhdr} \renewcommand{\chaptermark}[1]{\markboth{#1}{#1}} \renewcommand{\sectionmark}[1]{\markright{\thesection.#1}} \rhead[\fancyplain{}{\leftmark}]{\fancyplain{}{}} To start the headers I wrote: \pagestyle{fancy} \lhead[\fancyplain{}{}]{\fancyplain{}{\rightmark}} %Fußzeile \fancyfoot[RO,LE]{\thepage} \fancyfoot[RE,LO,CE,CO]{} However, the font of the indices is different from the main chapters. In addition, the command "cleardoublepage" which in KOMA normaly suppresses headers and footers on vacant pages is overwritten. How can I delete the headers and footers on the vacant pages again? I want the headers to look alike for the whole document. Thanks guys!