I am creating a document using the memoir class and pedersen style. In my document which is mainly portrait, I have to display some diagrams in a landscape orientation. Unfortunatley, one of the pages turned out to be a chapter title too. Now usually this would not be a problem, but my document has a header and footer. As a result, this happened:
\documentclass[12pt,a4paper,oneside]{memoir}
\usepackage[left=3.00cm, right=3.00cm, top=3.00cm, bottom=3.00cm, a4paper]{geometry}
\usepackage{pdflscape,blindtext,graphicx,xcolor}
%Defining a colour %
\definecolor{ared}{HTML}{BF0000}
\renewcommand\colorchapnum{\color{ared}}
\renewcommand\colorchaptitle{\color{ared}}
\chapterstyle{pedersen}
%The header of the document %
\makeevenhead{plain}{MyName}{Document Title}{Date}
\makeheadrule{plain}{\textwidth}{1pt}
\makeoddhead{plain}{MyName}{Document Title}{Date}
\begin{document}
\Blindtext
\pagebreak
\begin{landscape}
\chapter{Chapter Name}
\Blindtext
\end{landscape}
\end{document}
Is there a way to temporarily reposition the chapter number, so that it will only affect this page or the pages I set to landscape?
Thanks in advance

