General ⇒ bibliography --> references
bibliography --> references
I'm writing my thesis in the book-documentclass, but I would like to change the word 'bibliography' to 'references'. Is this possible?
Thanks
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
bibliography --> references
put this in Your preamble (right before \begin{document}):
\renewcommand{\bibname}{References}
like
Code: Select all
\documentclass{book}
\renewcommand{\bibname}{References}
\begin{document}
\begin{thebibliography}{99}
\bibitem{JSmith} Smith, J. and Jones, C.,
{\bf Science Journal},
May 12, 1956.
\end{thebibliography}
\end{document}
Kris
bibliography --> references
Anyway, it works, so I'm very happy! (actually, my professor will be very happy..)
Regards,
Marie-Line