[Tex/LaTex] way to change the font style of the “References” section

bibliographiescapitalizationfontssectioningsectsty

Is there a way to change the font style of the "References" section of a document?

I'm using the sectsty package to modify section fonts and my code does not seem to affect the "References" section of my document.

Are there any other packages, tips, or tricks I can use to change this?

Below is the code I'm using. Thanks!

% I want to produce "REFERENCES", not "References"
\usepackage{sectsty}
\allsectionsfont{\normalsize\uppercase}

Best Answer

I would try

\renewcommand{\refname}{\MakeUppercase{References}}

Replace \refname by \bibname if your class is book.

If you are using biblatex, the relevant commands are described in section 3.5.7 of the manual (see texdoc biblatex).

Related Question