At my class I am supposed to write a report where the chapter headings are always in uppercase, but have to printed in sentence case in the table of contents. For regular chapters I have achieved this by using
\chapter*{EXAMPLE}
\addcontentsline{toc}{chapter}{Example}
but I cannot figure out how to achieve the same result for the bibliography. I have used
\renewcommand\bibname{REFERENCES}
\addcontentsline{toc}{chapter}{References}
but then the bibliography heading is printed twice in the table of contents. Is there any way to force the table of contents to print the references heading once?
Here is the preamble for the document
\documentclass[a4paper, 12pt]{report}
\usepackage{apacite}
\usepackage{graphicx}
\usepackage{anysize}
\usepackage{setspace}
\usepackage{lscape}
\usepackage{parskip}
\usepackage{float}
\usepackage[utf8]{inputenc}
\usepackage{url}
\usepackage{times}
\documentclass[a4paper, 12pt]{report}
% Packages \usepackage{apacite} \usepackage{graphicx} \usepackage{anysize} \usepackage{setspace} \usepackage{lscape} \usepackage{parskip} \usepackage{float} \usepackage[utf8]{inputenc} \usepackage{url} \usepackage{times}
– Ilya Shmorgun Feb 06 '12 at 18:04