I define my bibliography with the
{thebibliography}
environment. In the heading of the bibliography "chapter" I have the name and the number of the last chapter. I would like "Bibliography" only in the two side (I set the twoside
option).In the same way, in the introduction define as
\chapter{Introduction}
, I have "chapter one. Introduction" in the heading. I would like only "Introduction" without "Chapter" and the number.The page style is
headings
but I think that fancy is better suited for this. Can i use the style fancy for these chapters and keep \pagestyle{headings}
for chapter 1, 2, 3, 4?This is my code.
Code: Select all
\documentclass[11pt,a4paper,twoside,openright]{report}
\input{preamble}
\begin{document}
\pagenumbering{roman}
\tableofcontents
\addcontentsline{toc}{chapter}{Table of Contents}
\clearpage
\addcontentsline{toc}{chapter}{\listfigurename}
\listoffigures
\clearpage
\addcontentsline{toc}{chapter}{\listtablename}
\listoftables
\clearpage
\pagenumbering{arabic}
\include{Intro} \pagebreak
\include{Chapitre1_policy} \pagebreak
\include{Chapitre2_BC} \pagebreak
\include{Chapitre3_RER} \pagebreak
\include{Chapitre4_volatility} \pagebreak
\input{biblio}
\end{document}
Code: Select all
\begin{thebibliography}{300}
\addcontentsline{toc}{chapter}{Bibliography}
\end{thebibliography}{300}