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
Document Classes ⇒ 'Bibliography' instead of 'References' in documentclass
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
'Bibliography' instead of 'References' in documentclass
Renaming the bibliography depends on whether you are using babel or not. Wihtout babela simple
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
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¹
Code: Select all
\renewcommand{\bibname}{References}
Code: Select all
\usepackage[english]{babel}
\addto{\captionsenglish}{%
\renewcommand{\bibname}{References}
}
Best regards and welcome to the board
Thorsten¹
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Re: 'Bibliography' instead of 'References' in documentclass
Hey Thorsten,
\renewcommand{} .. did the trick. Thanx very much for your help.
bob
\renewcommand{} .. did the trick. Thanx very much for your help.
bob