I want to type References in uppercase, I am using this code but still I am getting lower case References. I am using apacite formating with Bibtex file
\centering
\label{REFERENCES}
\nocite{*}
\bibliography{Bibliography2}
\end{document}
I want to type References in uppercase, I am using this code but still I am getting lower case References. I am using apacite formating with Bibtex file
\centering
\label{REFERENCES}
\nocite{*}
\bibliography{Bibliography2}
\end{document}
Thanks this worked for me
\centering
\renewcommand{\refname}{REFERENCES}
\nocite{*}
\bibliography{Bibliography2}
\end{document}
\labelhas nothing to do with this. Use rather\renewcommand{\refname}{REFERENCES}– egreg Mar 30 '14 at 22:26