I have a thesis written in LaTeX. I've just switched over to natbib as it offered some nice commands but I'm starting to run into some trouble. This one is minor I guess, but I have headers, with the chapter name and page number on. They are implemented in the .cls file like so:
\def \@oddhead{\normalfont \rmfamily \slshape \hfill \leftmark \hfill \thepage}% writes chapter (not sec) at top.
for a normal page, and
\def \ps@chapHeadings{\def \@oddhead{\hfill \textit{\thepage}}}
for a new chapter page.
Now the reference pages have the headings written all capitals. I don't like this as it's inconsistent with the way the rest of the thesis is done.
Does any one know how to sort it?
\leftmark, which is probably made\MakeUppercase{...}(or\uppercase) somewhere. You do not show this code, but I would suspect removing it would remove the capatilization. – Werner Sep 08 '11 at 15:41natbibdefines\@mkbothwith\MakeUppercase– Marco Daniel Sep 08 '11 at 16:04