Theses, Books, Title pagesHow to change the name of the bibliography

Classicthesis, Bachelor and Master thesis, PhD, Doctoral degree
Post Reply
crashpole
Posts: 14
Joined: Tue Jun 02, 2015 3:10 am

How to change the name of the bibliography

Post by crashpole »

Hello,

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!

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

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

Post by Stefan Kottwitz »

That's very easy! However, it depends on which document class or template you are using.

Which is it?

Stefan
LaTeX.org admin
crashpole
Posts: 14
Joined: Tue Jun 02, 2015 3:10 am

How to change the name of the bibliography

Post by crashpole »

Oh sorry I forgot to mention that. I"m using the template called "Masters/Doctoral Thesis". The class I'm using is "MastersDoctoralThesis".
User avatar
Stefan Kottwitz
Site Admin
Posts: 10335
Joined: Mon Mar 10, 2008 9:44 pm

How to change the name of the bibliography

Post by Stefan Kottwitz »

If babel is not used, then write in your preamble:

\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
LaTeX.org admin
User avatar
Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

How to change the name of the bibliography

Post by Johannes_B »

\printbibliography[title="Whatever you want"]
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
crashpole
Posts: 14
Joined: Tue Jun 02, 2015 3:10 am

How to change the name of the bibliography

Post by crashpole »

Thank you, Stefan and Johannes_B.

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!
crashpole
Posts: 14
Joined: Tue Jun 02, 2015 3:10 am

How to change the name of the bibliography

Post by crashpole »

I also wanted to ask how to make the space between bullet points smaller. Because I will have a space problem and even though it is tiny bit, it will help me!

Thank you!
User avatar
Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

How to change the name of the bibliography

Post by Johannes_B »

Yoou can use both at the same time. \printbibliography[title={title for bib}, heading=bibintoc]

For the other issue, please open a new thread.
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
crashpole
Posts: 14
Joined: Tue Jun 02, 2015 3:10 am

How to change the name of the bibliography

Post by crashpole »

Thank you very much! Fixed it! :)
Post Reply