I'm reasonably new to latex and have just about finished my honours thesis using it. Just one thing holding me back, I want the bibliography to be called references and to be a chapter. Therefore I used \renewcommand{\bibname}{\chapter{References}}. However for some reason this causes a blank page to be inserted before the references. This does not occur before other chapters. I would prefer it if there were no blank page. A minimal working example is given. I have tried \nopagebreak to no avail. I'm not sure if it has any effect, but I'm using pdflatex in MikTex 2.8. Any help would be great.
Thanks.
Code: Select all
\documentclass{report}
\begin{document}
\renewcommand{\bibname}{\chapter{References}}
\chapter{a chapter}
\chapter{another chapter}
there is no blank page between this chapter and the previous.
\begin{thebibliography}{9}
\bibitem{lamport94}
Leslie Lamport,
\emph{\LaTeX: A Document Preparation System}.
Addison Wesley, Massachusetts,
2nd Edition,
1994.
\end{thebibliography}
\end{document}