With de code bellow from, the manual, I get the part name in left-even
pages but the section name in the right-odd pages.
Using MikTex 2.8 (under Vista) and Memoir recently (today) updated.
Minimal example:
\documentclass[letterpaper,11pt,twoside]{memoir}
\usepackage{lipsum}
%from manual: page 124 [7.3.1]
\makepsmarks{headings}{%
\createmark{part}{left}{nonumber}{\partname\ }{. \ }
\createmark{chapter}{right}{nonumber}{\@chapapp\ }{. \ }
}
\pagestyle{headings}
\begin{document}
\chapterstyle{bringhurst}
\mainmatter
\part{Begining}
\chapter{This is the chapter 1}
\lipsum[1-3]
\section{sec. 1}
\lipsum[1-3]
\section{sec. 2}
\lipsum[1-6]
\subsection{subsection}
\lipsum[1-5]
\end{document}
I will appreciate any help.
Thanks in advance.
the problem is that the section mark also sets the rightmark so the
rightmark set by chapter is overridden.
try adding
\renewcommand\sectionmark[1]{} to your \makepsmarks
/daleif
Ok. Yes that solve the problem.
This is the code.
\makeatletter
\makepsmarks{headings}{%
\createmark{part}{left}{shownumber}{\partname\ }{. \ }
\createmark{chapter}{right}{shownumber}{\@chapapp\ }{. \ }
\renewcommand\sectionmark[1]{}
\makeatother
\pagestyle{headings}
If no makeat* an error popups:
! You can't use `\spacefactor' in internal vertical mode.
<to be read again> \spacefactor
\@m CHAPAPP\ 1. \ THIS IS THE CHAPTER
1
Thanks a lot... again.