Here's my code:
\documentclass{scrbook}
\usepackage[english]{babel}
\usepackage{blindtext}
\usepackage[markuppercase]{scrpage2}
\pagestyle{scrheadings}
\automark[chapter]{part}
\begin{document}
% This works as expected
\part{Ancient writing and its influence}
\chapter{The origin of writing}
\section{Introduction}
\blindtext[15]
% But this doesn't
\addpart{Modern writing and its influence}
\addchap{The end of writing}
\addsec{Conclusion}
\blindtext[15]
\end{document}
The problem is that the headmarks in the unnumbered document half keep running like [section]{chapter} and I want them running like [chapter]{part}. What am I doing wrong?
\sectionetc instead of\addsecetc – Seamus Jul 28 '11 at 15:42markuppercaseoption, since the non-working marks are appearing not in uppercase while the working ones are... – Seamus Jul 28 '11 at 16:22