i am new to Latex (and to this forum). I still hope that the post is adequate since i searched the web for the whole day and couldnt find a solution to my problem (as simple as it might be in the end).
i use miktex 2.9 and write on texniccenter.
for my thesis, i use the package natbib for the bibliography (with bibtex) and fancyhydr for headers and footers. my problem is that i cannot change the style of the headers for the bibliography. more concrete, its uppercase and i want lowercase (i know, sounds trivial. i do it with
Code: Select all
\markboth{chapter}{}
i already tried
Code: Select all
%\renewcommand\bibsection{\subsection{\refname}}
i tried to write a minimal example, however its probably not as minimalistic as it could be (i included so many references since the headers are only on the second page):
Code: Select all
\documentclass[a4paper, 12pt]{book}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc} %utf8?? versus latin1 wie abgespeichert wird. oder so.
\usepackage[ngerman, english]{babel} % hyphenation also trennung
\usepackage{fancyhdr} % headings and footers.
\usepackage[square]{natbib} %citations
\usepackage[pdftex,colorlinks,linkcolor=blue,citecolor=blue,backref]{hyperref} % cite hyperlinks w/o pdfx
\begin{document}
\pagestyle{fancy}
\renewcommand{\chaptermark}[1]{\markboth{#1}{}} %only chaptername, fancyhydr page 10. 1
\renewcommand{\chaptername}{} %no "chapter"
\renewcommand{\sectionmark}[1]{\markright{#1}{}}
\fancyfoot{} %clear foot
\fancyfoot[LE,RO]{\thepage}
\fancypagestyle{plain}{ %
\fancyhf{} %clear all header and footer fields on pagestyle plain for chapter titles
\fancyfoot[LE,RO]{\thepage} %s
\renewcommand{\headrulewidth}{0pt} %no ruler first chapter page
}
\pagestyle{fancy}
\tableofcontents \markboth{Contents}{} %fuer no uppercase
\chapter{iwantniceheaders}
text \citep{bannister_kouzarides_2011, avery_1944}
\cleardoublepage
more citations \citep{bernstein_2007, bernstein_2005, bonasio_2010, brink_1958, cairns_2009, carlson_2004, dekker_2008, feinberg_2004, fuks_buergers_2000, goldberg_2007, goll_bestor_2005, helge_witek_2008}
\renewcommand\bibname{References} %change bibliography into References
\renewcommand{\bibfont}{\small}
\bibliographystyle{plainnat}
\bibliography{lit}
\addcontentsline{toc}{chapter}{References}
\end{document}
thanks for any help...