Theses, Books, Title pagesChanging title of bibliography page

Classicthesis, Bachelor and Master thesis, PhD, Doctoral degree
Post Reply
templateuser
Posts: 679
Joined: Tue Mar 03, 2015 4:01 pm

Changing title of bibliography page

Post by templateuser »

Hi Vel,

I'm curious as how to change the title of the bibliography page from "Bibliography" to "References". I've changed the bib section of the main.tex to

Code: Select all

\label{References}
\lhead{\emph{References}} 
\renewcommand{\refname}{References}
\bibliographystyle{apalike}
\bibliography{Thesis.bib} 
\end{document}  
but the PDF is still reading Bibliography.

Thanks,

Tanya

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
User avatar
Vel
Site Moderator
Posts: 463
Joined: Fri Jun 29, 2012 1:20 am

Changing title of bibliography page

Post by Vel »

Hi Tanya,

You need to include \renewcommand{\bibname}{References} in the preamble rather than in the bibliography section.

Cheers,
Vel
Founder and administrator of LaTeXTemplates.com and LaTeXTypesetting.com
templateuser
Posts: 679
Joined: Tue Mar 03, 2015 4:01 pm

Re: Changing title of bibliography page

Post by templateuser »

Excellent. Thanks!

Tanya
templateuser
Posts: 679
Joined: Tue Mar 03, 2015 4:01 pm

Changing title of bibliography page

Post by templateuser »

hey vel,

how can i change the title of the preamble from "table of contest" to german "Tabellenverzeichnis" or "list of figures" to "Abbildungsverzeichnis"?
I have include \usepackage[ngerman]{babel} before \begin{document} in main.tex, but it doesn't work.

thanks,
maike
User avatar
Vel
Site Moderator
Posts: 463
Joined: Fri Jun 29, 2012 1:20 am

Changing title of bibliography page

Post by Vel »

Hey Maike,

Your solution worked for me! I added \usepackage[ngerman]{babel} just before \begin{document} and Table of Contents became Inhaltsverzeichnis, List of Figures became Abbildungsverzeichnis and List of Tables became Tabellenverzeichnis.

Perhaps you have added something else into the document which is conflicting? Try it on a fresh copy of the template and see if it works. Also, make sure to compile twice as the Table of Contents can take 2 compiles to update. Good luck!

Cheers,
Vel
Founder and administrator of LaTeXTemplates.com and LaTeXTypesetting.com
DrtMF
Posts: 2
Joined: Tue Oct 09, 2018 2:32 pm

Changing title of bibliography page

Post by DrtMF »

Hello Vel. Sorry to bring up an old issue, but your suggestion for changing Bibliography title into References might have worked out for Tanya yet I can't seem to tackle it... i was trying as you say to put the command in the preamble, like so:
\addbibresource{library.bib} % The filename of the bibliography
\renewcommand{\bibname}{References}
just under the bibresource. i compile again and it still turn up as Bibliography.

Thanks in advance :D
User avatar
Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

Changing title of bibliography page

Post by Johannes_B »

\printbibliography[title=wombat]
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
DrtMF
Posts: 2
Joined: Tue Oct 09, 2018 2:32 pm

Changing title of bibliography page

Post by DrtMF »

Thanks a lot. It did the job
ChrisKukay
Posts: 1
Joined: Fri Jun 10, 2022 8:26 am

Changing title of bibliography page

Post by ChrisKukay »

It works. Thanks.
Post Reply