On Jul 29, 11:32 am, Caboose <
ccaabboooos...@gmail.com> wrote:
>
> I have two questions relating to headers and section headings in
> LaTeX. I'm using the memoir document class, calling the "article"
> option. Perverse, I know, but I like memoir and try to use it even
> when I don't need to. So the problem is the following: I want the
> section heading for my bibliography to say "References" rather than
> "Bibliography". Reverting the document class to article does this for
> me, but that is unsatisfactory. I want to learn how to change these
> things in memoir.
\renewcommand\bibname{References}
> I also want to specify headers and footers for pages in my
> bibliography, ideally without having to specify all the headers and so
> on from scratch...
i'm not sure what you mean. in memoir you declare your pagestyles,
right?
\makepagestyle{mystyle}
\makeevenhead{mystyle}{ left }{ center }{ right }
\makeoddhead{mystyle}{ left }{ center }{ right }
\makeevenfoot{mystyle}{ left }{ center }{ right }
\makeoddfoot{mystyle}{ left }{ center }{ right }
and then declare it when you want to use it:
\pagestyle{mystyle}
there are also
\aliaspagestyle{ alias }{ original }
\copypagestyle{ copy }{ original }
the difference here is that if you modify the original later on, the
aliased style will follow the modified original, but the copied style
will follow the original original.
you can do a ton of other stuff to them too, if you look at the memoir
manual.
if you're thinking of using \markleft, \markright, \markboth and all
of that stuff, i highly recommend that you look at the manual.
cheers,
jon.