> On Thursday, 30 April 2015, 2:03, Johannes Böttcher wrote:
> You are defining `defbibheading` in a way that updates the running
> header with *Further Reading* via `markboth`. Deleting this line should
> fix your problem.
>
> If you really want to have the chapter titles on the starting pages of
> chapters, you can use
> `\renewcommand*{\chapterpagestyle}{scrheadings}`
> or use the starred variant of the commands -> `\ihead*{Chapter
> \headmark}`. An up to date version of KOMA-script is needed for that.
>
> Once you start the appendix, you have some trouble, as you are
> hard-coding the word *chapter*. You can use `\chapapp` instead.
Many thanks for pointing me in the right direction. I fixed it like this.
\documentclass[chapterprefix=on]{scrbook}
\usepackage[automark]{scrlayer-scrpage}
\pagestyle{scrheadings}
\ihead{\headmark}
\ohead[\pagemark]{\pagemark}
\chead{}
\cfoot[]{}
\defbibheading{subbibliography}{%
\addsec{#1}}
\chapter{...}
\begin{refsection}
...
\printbibliography[heading=subbibliography,title={Further
Reading},notcategory=cited]
\printbibliography[heading=subbibliography,title={Bibliography},category=cited]
\end{refsection}
Now works like a charm!
Again many thanks.
Cheers, Sam