I want to have Bibliography as a header title in my bibliography (starting obviously from the second page). But, the title of the previous chapters appears instead!
I am using Memoir class with biblatex. with my pagestyle named as: MyPageStyle
Here is my MWE
\documentclass[oneside,12pt]{memoir}
\usepackage{blindtext}
\makepagestyle{MyPageStyle}
\copypagestyle{MyPageStyle}{ruled}
\makeoddhead{MyPageStyle}{\textsl\leftmark}{}{}
\pagestyle{MyPageStyle}
\usepackage[natbib=true, backend=biber, url=false, isbn=false, sorting=none]{biblatex}
\addbibresource{biblatex-examples.bib}
\begin{document}
\mainmatter
\chapter{Introduction}
\Blindtext
\nocite{*}
\printbibliography
\end{document}
here is a snapshot of my problem
Any idea on how to solve that?
There is this solution but I don't know how to make it work with my specific problem!
Edit 1:
I have tried to change \leftmark with \rightmark as suggested by @daleif. It solved the Bibliography headers, but the other chapters (numbered, unnumbered, appendix) remain un-headed! (see my updated MWE below).
\documentclass[oneside,12pt]{memoir}
\usepackage{blindtext}
\makepagestyle{MyPageStyle}
\copypagestyle{MyPageStyle}{ruled}
\makeoddhead{MyPageStyle}{\textsl\rightmark}{}{}
\pagestyle{MyPageStyle}
\usepackage[natbib=true, backend=biber, url=false, isbn=false, sorting=none]{biblatex}
\addbibresource{biblatex-examples.bib}
\begin{document}
\mainmatter
\chapter[Ch. w/ N.]{Numbered Chapter}
\Blindtext
\chapter*[Ch. w/o N.]{Unnumbered Chapter}
\Blindtext
\nocite{*}
\printbibliography
\appendix
\chapter[Specs.]{Specification}
\Blindtext
\end{document}
How to solve these inconsistencies?

onesideyou should use\rightmarkinstead. For example the standard memoirheadingsstyle only writes to\rightmarkunderoneside. Looking atbiblatex.defthis is exactly what biblatex does underoneside– daleif Jun 16 '21 at 11:12