0

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}
user35571
  • 2,127
  • 5
  • 21
  • 21

1 Answers1

1

Thanks this worked for me

\centering
\renewcommand{\refname}{REFERENCES}
\nocite{*}
\bibliography{Bibliography2}

\end{document}
user35571
  • 2,127
  • 5
  • 21
  • 21