I'm using the gatech-thesis documentclass with the natbib package.
When I use natbib, the title of the references section title changes from REFERENCES to Bibliography. I want to change it back to REFERENCES.
I've seen some posts that talk about using the babel package and \renewcommand appropriately for report or article document class, but I couldn't get it to work.
Here's my MWE, thanks in advance for any help!
\documentclass{gatech-thesis}
%\usepackage[numbers]{natbib}
% would like to uncomment this package without renaming the references section
\begin{document}
\bibliographystyle{plainnat}
\references
\end{document}
Worst cast scenario, I'd could abandon natbib in order to get the formatting right; but I'd rather not have to.
EDIT: I compile it with: pdflatex foo.tex; bibtex foo.tex; pdflatex foo.tex and the output is a single page with either REFERENCES or Bibliography at the top, depending on whether natbib is enabled.
