8

As title suggests. I have the following in my referencing section :

\documentclass[12pt,a4paper]{report}
 .
 .
 .
\bibliographystyle{abbrv}  
\bibliography{library}

And it prints :

enter image description here

I would like to change Bibliography to References -- And also add it to my table of contents.

lockstep
  • 250,273
Razor
  • 2,691

1 Answers1

16

Since babel is not being used, it's enough to redefine \bibname. For the inclusion of the bibliography in the ToC, one can use the tocbibind package. So, add these lines to the preamble:

\usepackage[nottoc,notlof,notlot]{tocbibind} 
\renewcommand\bibname{References}

The options for tocbibind prevent the ToC, the LoF, and the LoT to be listed in the table of contents.

Gonzalo Medina
  • 505,128