Code: Select all
makeatletter
\def\tableofcontents{%
\newpage
\centerline{\bf TABLE OF CONTENTS}
\vspace*{0.3in}
\@mkboth{CONTENTS}{CONTENTS}
\@starttoc{toc}
}
\makeatother
\makeatletter
\def\listoffigures{
\newpage
\vspace*{1.0in}
\centerline{\bf LIST OF FIGURES}
\vspace*{0.3in}
\@mkboth{LIST OF FIGURES}{LIST OF FIGURES}
\@starttoc{lof}
}
\makeatother
\makeatletter
\def\listoftables{%
\newpage
\vspace*{1.0in}
\centerline{\bf LIST OF TABLES}
\vspace*{0.3in}
\@mkboth{LIST OF TABLES}{LIST OF TABLES}
\@starttoc{lot}
}
\makeatother
Thanks!