Possible Duplicate:
Renaming the bibliography page using BibTeX
I am writing an M.Sc thesis. I have problem trying to rename the bibliography as 'References'. I have tried quite a few tricks but they did not work. Some of the trick are
\renewcommand{\bibname}{References}
and also
\makeatletter
\def\thebibliography#1{\chapter*{REFERENCES\@mkboth
{REFERENCES}{REFERENCES}}\list
{[\arabic{enumi}]}{\settowidth\labelwidth{[#1]}\leftmargin\labelwidth
\advance\leftmargin\labelsep
\usecounter{enumi}}
\def\newblock{\hskip .11em plus .33em minus .07em}
\sloppy\clubpenalty4000\widowpenalty4000
\sfcode`\.=1000\relax}
\makeatother
The first code has no effect on the output while the second one changed my bibliography style. The bibliography was to be indent but it now appeared blocked after including the second code.
I also was a code to write 'chapter one' instead of 'chapter 1' meaning I want to write the chapter number in word instead of figures .
natbib,biblatex? – Alan Munn Oct 27 '11 at 13:57