[Tex/LaTex] Remove Chapter Number from Header–Memoir Class

header-footermemoir

I'm working in the memoir class using A6. For this format, I want to remove both the word "Chapter" from the default memoir page heading style as well as the chapter number, so that only the chapter title is included in the header. Removing the word "chapter" can be achieved by adding the following after \begin{Document}:

\renewcommand{\chaptername}{}

But the chapter number remains in the page header. I added this command:

\renewcommand\printchapternonum{}

but it had no effect.

What is a quick and easy way to remove the chapter number from the header? I looked at the fancyhdr package and there is conflict with memoir; similarly, I tried changing to scrbook but there were errors (baseline skip already defined).

There has to be a simple way of doing this.

[Later]

Thank you everyone for your helpful answers.

Best Answer

The proper memoir way of doing this

\addtopsmarks{headings}{}{
  \createmark{chapter}{left}{nonumber}{}{}
}
\pagestyle{headings} % activate changes

there is no need to try to figure out how the internals work or that sort of thing.

You might want to read http://tug.org/pracjourn/2008-2/madsen/

Related Question