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!
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
- Stefan Kottwitz
- Site Admin
- Posts: 10335
- 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: 10335
- 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
