mit Hilfe des fancyhdr-Packages formatiere ich die Kopfzeilen (und Seitenzahlen in der Fußzeile) für ein zweiseitiges Dokument (Book-Klasse) wie folgt.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % formatting the headlines \usepackage{fancyhdr} \pagestyle{fancy} \fancyhf{} % Kill everything \renewcommand{\headrulewidth}{0.25pt} % Switching all UPPERCASES to nouppercase (BIBLIOGRAPHY, etc.) \fancyhead[EL]{\nouppercase{\leftmark}} \fancyfoot[EL]{\nouppercase{\thepage}} \renewcommand{\chaptermark}[1]{% \markboth{\thechapter.\ #1}{}} % Switching all UPPERCASES to nouppercase (BIBLIOGRAPHY, etc.) \fancyhead[OR]{\nouppercase{\rightmark}} \fancyfoot[OR]{\nouppercase{\thepage}} \renewcommand{\sectionmark}[1]{% \markright{\thesection\ #1}{}} % The same for the chapter pages \fancypagestyle{plain}{% \fancyhf{} \renewcommand{\headrulewidth}{0pt} \fancyfoot[EL]{\nouppercase{\thepage}} \fancyfoot[OR]{\nouppercase{\thepage}} }
Geht das eleganter als manuell eine blank Page einzufügen und den Pagestyle auf "empty" zu setzen?
Viele Grüße und Danke schon mal!!!
Der Bezeichner