I am writing my PhD thesis and I am dealing with some problems with the bibliography title style. I have redefined the heading title of ToC, LoF and LoT as:
Code: Select all
\makeatletter
\def\tableofcontents{%
\newpage
\thispagestyle{plain}
\vspace*{24.5pt}
\rule{\textwidth}{0.4pt}
\begin{flushright}
\vspace*{15.6pt}
\bfseries\Huge Contents
\end{flushright}
\vspace*{-21.1pt}
\rule{\textwidth}{0.5mm}
%\vspace*{0.3in}
\@mkboth{Contents}{Contents}
\fancyhf{}
\fancyhead[LO]{\textbf{\leftmark}}
\fancyhead[RE]{\textbf{\rightmark}}
\fancyfoot{} % clear all footer fields
\fancyfoot[C]{\thepage}
\renewcommand{\headrulewidth}{0.4pt}
\renewcommand{\footrulewidth}{0pt}
\@starttoc{toc}
}
\makeatother
Thank you very much in advance!
Xabi