Now what I want to do is to create more consistency, I want the page number of the headings page style to be in the footer as well, and remove the page number from the header. Because it's a one-sided document I want the content of the header centered instead of aligned to the right or left.
I've been searching for hours for a solution this morning. Placing the page number in the footer is easy:
Code: Select all
\makeevenfoot{headings}{}{\thepage}{}
\makeoddfoot{headings}{}{\thepage}{}
After even more searching – which turned up quite a lot of Usenet posts, which didn't help me much – I found this document describing how to use page styles in memoir which was quite helpful. Of course I already read the manual of memoir, but for a newbie like me it was quite difficult to understand.
The document I mentioned gives some examples, which I used in my own document to learn how memoir's page styles work. For example I copied the following code on page 19 of the document to my own document:
Code: Select all
\addtopsmarks{headings}{}{
\createmark{chapter}{both}{shownumber}{}{. \space}
}
I assume that I should download the latest memoir package from CTAN then (just download memoir.zip?), but if I installed the package manually as described here, would LaTeX overlook the old version of memoir then, and use the latest one which was manually installed?
Or is there an easier solution to my problem, so that I can modify my header with my possibly outdated version of memoir, or anything else?