Hi!
I want to change the title and headings of the bibliography for "References". I tried with the command
\renewcommand{\bibname}{References}
and
\renewcommand{\refname}{References}
but nothing happens. Any idea?
Thanks
General ⇒ References instead of Bibliography
- Stefan Kottwitz
- Site Admin
- Posts: 10308
- Joined: Mon Mar 10, 2008 9:44 pm
References instead of Bibliography
Hi,
what document class do you use?
Do you use babel? If yes, then use instead of the commands above
if you use the book or the report class or
if you use article.
Stefan
what document class do you use?
Do you use babel? If yes, then use instead of the commands above
Code: Select all
\addto\captionsenglish{\renewcommand{\bibname}{References}}
Code: Select all
\addto\captionsenglish{\renewcommand{\refname}{References}}
Stefan
LaTeX.org admin
Re: References instead of Bibliography
Thank you Stefan! it worked as I wanted
References instead of Bibliography
Hi all,
Not sure if I should open a new post but I have exactly the same problem, except that for me adding
or
still didn't change anything.
I'm using natbib.
Thanks!
Not sure if I should open a new post but I have exactly the same problem, except that for me adding
Code: Select all
\addto\captionsenglish{\renewcommand{\bibname}{References}}
or
Code: Select all
\addto\captionsenglish{\renewcommand{\refname}{References}}
I'm using natbib.
Thanks!
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
References instead of Bibliography
The provided solution only works when the babel package with the english option is used. Without this package the redefinition is as simple as shown in the first post.
In case this doesn't work for you, provide a minimal working example (MWE) that shows the problem.
Best regards
Thorsten
Code: Select all
\renewcommand{\refname}{References} % for the article class\renewcommand{\bibname}{References} % for the report or book class
Best regards
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: References instead of Bibliography
Thanks, advising me to do a MWE helped me find my own (rather stupid) mistake!
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
References instead of Bibliography
And we are all interested in the cause so that others can avoid your mistake.snowfrog wrote:Thanks, advising me to do a MWE helped me find my own (rather stupid) mistake!
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
References instead of Bibliography
I tried both options, but they did not work!
NO error generated!
Document Class: Book(Standard Class with Extra Font Sizes)
Bibliography:
Style format: Biblatex (natbib mode)
Variant: Author-year
Processor: bibtex
================================================
I found the solution myself!
I had to add a TEX Code right before the "Biblatex Generated Bibliography" and inserted those commands
Having the commands in the preamble did not work for some reason
NO error generated!
Document Class: Book(Standard Class with Extra Font Sizes)
Bibliography:
Style format: Biblatex (natbib mode)
Variant: Author-year
Processor: bibtex
================================================
I found the solution myself!
I had to add a TEX Code right before the "Biblatex Generated Bibliography" and inserted those commands
Having the commands in the preamble did not work for some reason