I need help with header in bibliography page. I use fancyhdr to set different headers for even and odd pages. When my bibliography runs long to a second page, the header appears as like what I set earlier by fancy. I would like the header to be Bibliography instead of COMEDY.
I write in book class.
\documentclass[a4,11pt,twoside]{book}
\usepackage{csquotes}
\usepackage[utf8]{inputenc}
\usepackage{emptypage}
\usepackage[nottoc,notlot,notlof]{tocbibind}
\usepackage{url}
\usepackage{nth}
\usepackage{titlesec}
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhead[LE]{\slshape COMEDY}
\fancyhead[RE]{}
\fancyhead[LO]{\hfill \slshape \leftmark}
\renewcommand{\headrulewidth}{0pt}
\title{My title}
\author{My name}
\date{}
\begin{document}
\pagenumbering{roman}
\maketitle
\tableofcontents
\renewcommand{\headrulewidth}{.4pt}
\chapter*{Notes}
\addcontentsline{toc}{chapter}{\numberline{}Notes}
This book is made possible by the contributions of:
\chapter{example}
\begin{thebibliography}{99}
\bibitem{example}
\bibitem{example}
\bibitem{example}
\end{thebibliography}
\end{document}
Thank you!

\fancyhead[LE]{\slshape Bibliography}before\begin{bibliography}? – cfr Mar 10 '14 at 03:19