I create running headers in a Koma-script book with the following. This gives
me a page number and the chapter heading on each page, except on the first page
of each chapter as desired.
\usepackage[automark]{scrlayer-scrpage}
\pagestyle{scrheadings}
\ihead{Chapter \headmark}
\ohead[\pagemark]{\pagemark}
\chead{}
\cfoot[]{}
In this book, I have a bibliography and a further reading section at the end of
each chapter via this code in the preamble
\defbibheading{subbibliography}[\bibname]{%
\section*{#1}%
\markboth{#1}{#1}}
and this ERT at the end of each chapter.
\printbibliography[heading=subbibintoc,title={Further
Reading},notcategory=cited]
\printbibliography[heading=subbibintoc,category=cited]
\end{refsection}
\begin{refsection}
Everything works fine, except that the header on the last page of each chapter
is called "Further Reading" instead of the name of the chapter.
How to fix this?
Many thanks!