I am writing a report that requires the References to be listed in the table of contents as a numbered section. I'm looking for a way to either suppress the heading in the second example so that I don't have 2 Reference References or a way to number and include thebibliography in the table of contents.
I have tried searching the forum to no avail. I hope this post is in the right section and not something really obvious. I have tried a few things such as creating an empty section \section{} which sort of worked but the section number was above reference and nesting \section{\begin{thebibliography}} which just created an error.
Any Help would be greatly appreciated
Thanks
Code: Select all
\documentclass[a4paper,12pt]{article}
\begin{document}
\tableofcontents
\section{Introduction}
Intro
\begin{thebibliography}{9}
\bibitem{test}
Mr Blah,
\emph{The Blah of Bladdy Blah}.
Blah Publications,
3000
\end{thebibliography}
\end{document}
Code: Select all
\documentclass[a4paper,12pt]{article}
\begin{document}
\tableofcontents
\section{Introduction}
Intro
\section{References}
\begin{thebibliography}{9}
\bibitem{test}
Mr Blah,
\emph{The Blah of Bladdy Blah}.
Blah Publications,
3000
\end{thebibliography}
\end{document}