Tell me more ×
TeX - LaTeX Stack Exchange is a question and answer site for users of TeX, LaTeX, ConTeXt, and related typesetting systems. It's 100% free, no registration required.

I'm using the following document structure based on KOMA script classes and styles

\documentclass[11pt,a4paper,BCOR10mm,DIV11,toc=listof]{scrbook}
\usepackage[nouppercase,headsepline]{scrpage2}
\pagestyle{scrheadings}
\clearscrheadfoot
\automark[section]{chapter}
\chead{\headmark}

(plus some more stuff I'm not listing here). This works very well in general. But I do have an unnumbered chapter like this

  \addcontentsline{toc}{chapter}{Bla bla}
  \chapter*{Bla bla}

and I want its title (no number) to appear in the heading of right pages (left pages blank as there are no numbered sections in this chapter). As was to be expected, this does not work out of the box, it currently lists the name of the previous chapter (list of figures).

How can I make it work? Would a manually issued \markboth{}{Bla bla} be the right way to go? From the KOMA script documentation I'm not quite sure how that would interfere with the automark stuff.

share|improve this question

1 Answer

up vote 3 down vote accepted

With the KOMA-Script classes scrbook and scrreprt you can use \chaptermark{...}, \sectionmark, \chaptermarkformat{...}, \sectionmarkformat{...} to set and format the running headings. A little example:

\documentclass[11pt,a4paper,BCOR10mm,DIV11,toc=listof]{scrbook}
\usepackage[nouppercase,headsepline]{scrpage2}
\pagestyle{scrheadings}
\clearscrheadfoot
\automark[section]{chapter}
\chead{\headmark}
\usepackage{lipsum}

\begin{document}

\chapter{A numbered chapter}
\section{Test section}
\lipsum[1-5]
\chapter*{A chapter without number}
\renewcommand*{\chaptermarkformat}{}
\renewcommand*{\sectionmarkformat}{}
\chaptermark{}
\sectionmark{A chapter without number}
\lipsum[1-30]

\end{document}
share|improve this answer
Ok. That's definitely going into the right direction. However, the \renewcommand*{\chaptermarkformat}{} part does also kill numbering and formats for all subsequent chapters and sections. Is there a way to prevent this? – janitor048 Mar 27 '11 at 21:34
You can keep the changes local by enclosing the affected chapter and its contents inside a pair of braces. – Gonzalo Medina Mar 27 '11 at 21:36
Damn! Of course.. Could have thought of this myself. It's getting late.. Thanks a lot! – janitor048 Mar 27 '11 at 21:41

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.