Document Classes'Bibliography' instead of 'References' in documentclass

Information and discussion about specific document classes and how to create your own document classes.
Post Reply
cunyr
Posts: 2
Joined: Sun Nov 02, 2008 9:18 am

'Bibliography' instead of 'References' in documentclass

Post by cunyr »

Hi everybody,

as you know, in the document class 'report' the title of the bibliography will actually be 'Bibliography' while in document class article, it will be 'References' Does anybody know, how i can get the title of the Bibliography to be 'Reference' while using the report document class? How can i change settings in a document class.

Thanx in advance for your help.

bob

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX books
User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

'Bibliography' instead of 'References' in documentclass

Post by localghost »

Renaming the bibliography depends on whether you are using babel or not. Wihtout babela simple

Code: Select all

\renewcommand{\bibname}{References}
will do the trick. With babel it depends again on the language option. Assumed that you set english as language option, it will look like

Code: Select all

\usepackage[english]{babel}
\addto{\captionsenglish}{%
  \renewcommand{\bibname}{References}
}
to change that. Have a look at the documentation of babel to learn more about its language options.


Best regards and welcome to the board
Thorsten¹
cunyr
Posts: 2
Joined: Sun Nov 02, 2008 9:18 am

Re: 'Bibliography' instead of 'References' in documentclass

Post by cunyr »

Hey Thorsten,

\renewcommand{} .. did the trick. Thanx very much for your help.

bob
Post Reply