I am hoping to get some much needed advice here. I would like to format my header of a book according to the standards of my publisher. On the left book page I would like to have the chapter number and on the right book page the chapter title.
I am using TeXstudio and Komascript.
This is what I got so far:
Code: Select all
\documentclass[a4paper, 12pt, listof=totoc, headsepline, twoside, toc=flat, headings=big,version=first, chapterprefix=false, BCOR8.25mm, open=any]{scrbook}
\usepackage[]{scrlayer-scrpage}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\usepackage{blindtext}
\usepackage[english,ngerman]{babel}
\renewcommand*{\chaptermarkformat}{}
\renewcommand*{\headfont}{\normalfont\footnotesize}
\pagestyle{scrheadings}
\clearscrheadings
\cehead[]{\chapapp~\thechapter}
%\cohead[]{????? what should it say here????}
\markboth{}{chapter}
\ofoot{\pagemark}
\begin{document}
What I want it to look like:
-On the left side of the book I would like to have the chapter number (format "Chapter 1") and on the right book page I would like to have the chapter title (without the word "chapter" or so in front).
-The header needs to be centered.
-On the first page of a chapter, there should be no header
-On those pages that do not belong to a chapter (table of content, glossary, etc), the title should be on both pages (e.g. "Table of content" on the left and right book page).
Anyone any ideas? I appreciate any help.
Thank you.