I am using the Bibtex file to generate my references in my thesis. my thesis class is {report} and using the command \bibliographystyle{refsort} and \bibliography{thesisreferences} to generate my references but the title of the page comes out to be "bibliography". I want to change it to "References". How can I do this?
Asked
Active
Viewed 34 times
2
chsk
- 3,667
reportdocument class, the macro\bibnamedetermines what gets output as the header of the bibliography. In thereportdocument class, the default value of this macro is, as you've discovered,Bibliography. To getReferencesinstead, simply insert the instruction\renewcommand{\bibname}{References}in the preamble. – Mico Jul 03 '21 at 07:25