Document ClassesHow to Change the name Bibliography to References

Information and discussion about specific document classes and how to create your own document classes.
Post Reply
chandangiri
Posts: 20
Joined: Thu Sep 06, 2007 7:31 pm

How to Change the name Bibliography to References

Post by chandangiri »

I have basically two questions......
1. Hi if add \bibliographystyle{unsrt} and \bibliography{bibfile} then at the listingthe bibliographies are coming under the heading of "Bibliography". If I need to change into "References" then I need to do.
2. If I want to add the Publication list before the begining of tableofcontents just the same style as bibliography then what I need to do. Now I am doing by adding \input{publication.tex} after \documentclass and within publication.tex I am writing the references as general text. But it is not the same style as in bibliography. Please suggest what I need to do

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

How to Change the name Bibliography to References

Post by localghost »

chandangiri wrote: 1. Hi if add \bibliographystyle{unsrt} and \bibliography{bibfile} then at the listingthe bibliographies are coming under the heading of "Bibliography". If I need to change into "References" then I need to do.

Just add a command in the preamble that redefines the bilbiography's name.

Code: Select all

\renewcommand{\bibname}{References}
That way only works without using babel. With babel redefining works a little bit different. In the case you are using babel please post how you do this.
chandangiri wrote: 2. If I want to add the Publication list before the begining of tableofcontents just the same style as bibliography then what I need to do. Now I am doing by adding \input{publication.tex} after \documentclass and within publication.tex I am writing the references as general text. But it is not the same style as in bibliography. Please suggest what I need to do

Set the commands for the bilbliography wherever you want its output.

Code: Select all

\bibliographystyle{unsrt}
\bibliography{bibfile}
\tableofcontents

Best regards
Thorsten
Post Reply