Theses, Books, Title pages ⇒ How to change the name of the bibliography
How to change the name of the bibliography
I wanted to ask you how to change the heading from "bibliography" to "references". I have searched the forum but the solution I found seems to be for the old version of the document. I'm using the most recent one so I thought it might not apply.
Looking forward to your answer,
Thank you!
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- Stefan Kottwitz
- Site Admin
- Posts: 10373
- Joined: Mon Mar 10, 2008 9:44 pm
How to change the name of the bibliography
Which is it?
Stefan
How to change the name of the bibliography
- Stefan Kottwitz
- Site Admin
- Posts: 10373
- Joined: Mon Mar 10, 2008 9:44 pm
How to change the name of the bibliography
\renewcommand{\bibname}{References}
If babel is used:
\addto{\captionsenglish}{\renewcommand{\bibname}{References}}
(Depending on the language)
With an article based class, it would be \refname instead of \bibname.
Stefan
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
How to change the name of the bibliography
\printbibliography[title="Whatever you want"]
How to change the name of the bibliography
Firstly, @Stefan I have tried your solution but I cant seem to make it work. I know that babel is used but I have tried to copy the following code
\addto{\captionsenglish}{\renewcommand{\bibname}{References}}
after or before
\printbibliography[heading=bibintoc]
but it doesn't work.
Secondly, @Johannes your solution worked but then I have the problem that in TOC, it still says bibliography.
Thirdly, for the people who will use Johannes's solution, be careful to copy this:
\printbibliography[title="Whatever you want"]
before this
\printbibliography[heading=bibintoc]
if put after, it also doesnt work.
Thank you!
How to change the name of the bibliography
Thank you!
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
How to change the name of the bibliography
\printbibliography[title={title for bib}, heading=bibintoc]
For the other issue, please open a new thread.
How to change the name of the bibliography
