You don't explicitly need a new heading. Use the
tocbibind package to get the references into the ToC (see below code).
Code: Select all
\begin{filecontents*}{\jobname.bib}
@book{knuth84,
author = {Knuth, Donald Ervin},
publisher = {Addison-Wesley},
title = {{The \TeX book}},
year = {1984}
}
@book{lamport94,
author = {Lamport, Leslie},
edition = {Second},
note = {User's Guide and Reference Manual},
publisher = {Addison-Wesley},
title = {{\LaTeX\ -- A Document Preparation System}},
year = {1994}
}
@book{mitgoo04,
author = {Mittelbach, Frank and Goossens, Michel},
edition = {Second},
publisher = {Addison-Wesley},
title = {{The \LaTeX\ Companion}},
year = {2004}
}
@book{goomit07,
author = {Goossens, Michel and Mittelbach, Frank and Rahtz, Sebastian and Roegel, Denis and Voss, Herbert},
edition = {Second},
publisher = {Addison-Wesley},
title = {{The \LaTeX\ Graphics Companion}},
year = {2007}
}
\end{filecontents*}
\documentclass[11pt]{article}
\usepackage[T1]{fontenc}
\usepackage[nottoc]{tocbibind}
\bibliographystyle{unsrt}
\begin{document}
\tableofcontents
\newpage
\nocite{*}
\bibliography{\jobname}
\end{document}
Best regards and welcome to the board
Thorsten