i am using the memoir class and my toc is mor than one page long. on
the first page of the toc the page number appears in the bottom's
middle, whereas on the following pages it is on the top's left.
how can i make the page numbers always be located on the top's left?
christoph
ciao,
christoph
please see page 111 in the memoir manual, at the very top is your answer.
--
/daleif (remove RTFSIGNATURE from email address)
LaTeX FAQ: http://www.tex.ac.uk/faq
Superb Class: http://www.ctan.org/tex-archive/help/Catalogue/entries/memoir.html
LaTeX book: http://www.imf.au.dk/system/latex/bog/ (in Danish)
Remember to post minimal working examples.
but where do i include this command? i suppose it has to appear before
the command \tableofcontents, right?
but this gives me the errror message
\afterZtitle undefined
what am i doing wrong?
I don't know anything about the memoir class, but with the usual LaTeX
classes the fancyhdr package could fix this, although the advice below will
affect the first page of /all/ chapters (and chapter-like blocks), not just
the first page of the TOC. Define
\fancypagestyle{plain}{
....
}
to include an instruction to place the page number where you want it.
(Consult the fancyhdr documentation.)
Best wishes,
Anton P.
would you please read the text before you copy from it.
Z is either toc, lof or lot
you should use
\renewcommand{\aftertoctitle}{\thispagestyle{empty}\afterchaptertitle}
in the preamble
however, in my case i had to use
\renewcommand{\aftertoctitle}{\thispagestyle{myheadings}\afterchaptertitle}
because i want the page number to appear.