\documentclass[twoside, a4paper, 11pt]{article}
\usepackage{natbib}
\begin{document}
\bibliographystyle{apa-good}
\bibliography{bibliography}
\end{document}
How can I make the section header for my references list bolded, underlined, all capitalized, 11 pt and with C6. in front of it? I.e., currently, the section header is: References however I would like it to be:

EDIT:
\documentclass[twoside, a4paper, 9pt]{article}
\usepackage{natbib}
\renewcommand{\refname}{C6.~REFERENCES}
\makeatletter
\renewcommand\bibsection{%
\section*{\underline{\refname}\@mkboth{\MakeUppercase{\refname}}{\MakeUppercase{\refname}}}%
}%
\makeatother
\begin{document}
\underline{\textbf{C1. PROJECT TITLE}}
blkah blah
\underline{\textbf{C2. AIMS AND BACKGROUND}}
blah blah blah
\bibliographystyle{apa-good}
\bibliography{bibliography}
\end{document}
The output is:

The size of references doesn't change when I change the font size to 9pt. I know I should use \section for section titles but there is a reason why I am manually creating section titles. So how can I get the references heading size to be the same as my manually made ones?


Cand6supposed to represent? Are they part of some numbering system, or shouldC6simply be hardcoded in the heading? – jub0bs Dec 08 '13 at 14:57