General ⇒ Bibliography or Reference
Bibliography or Reference
I am using "{Report}" class and \begin{thebibliography}{1} .... \end{thebibliography} environment for listing, at the end of my document, the References. But After compilation I got Bibliography word at the end of my document. But the expected result is supposed to be References list. I mean, I want to get " References " word as list of my references not " Bibliography" word. Is there something I should insert in the preamble ? or could someone can tell how can I solve this problem ?
Thanks in advance !
Nenu28
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: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
Bibliography or Reference
you could redefine the macro \bibname, which originally contains Bibliography, using \renewcommand.
Stefan
Bibliography or Reference
Thank a lot for the answer. It's work.
I used
Code: Select all
\renewcommand\bibname{References}
The names that are defined in the standard LaTeX classes (and the makeidx package) are listed below. Some of the names are only defined in a subset of the classes (and the letter class has a set of names all of its own); the list shows the specialisation of each name, where appropriate.
Code: Select all
\abstractname Abstract
\alsoname see also (makeidx package)
\appendixname Appendix
\bibname Bibliography (report,book)
\ccname cc (letter)
\chaptername Chapter (report,book)
\contentsname Contents
\enclname encl (letter)
\figurename Figure (for captions)
\headtoname To (letter)
\indexname Index
\listfigurename List of Figures
\listtablename List of Tables
\pagename Page (letter)
\partname Part
\refname References (article)
\seename see (makeidx package)
\tablename Table (for caption)