Here's the code I'm working with:
Code: Select all
\documentclass[12pt,notitlepage]{report}
\usepackage[english]{babel}
\usepackage{tocloft} %change table of contents
\renewcommand{\cftbeforesecskip}{0em}
\renewcommand{\contentsname}{TABLE OF CONTENTS}
\renewcommand{\cfttoctitlefont}{\hfill\normalsize\textbf}
\renewcommand{\cftaftertoctitle}{\hfill}
\renewcommand{\listfigurename}{\normalsize\textbf{LIST OF FIGURES}}
\renewcommand{\cftloftitlefont}{\hfill\normalsize\textbf}
\renewcommand{\cftafterloftitle}{\hfill}
\renewcommand{\listtablename}{\normalsize\textbf{LIST OF TABLES}}
\renewcommand{\cftlottitlefont}{\hfill\normalsize\textbf}
\renewcommand{\cftafterlottitle}{\hfill}
\renewcommand{\cftchapfont}{\normalfont} %chapters are not bolded
\renewcommand{\cftchapdotsep}{\cftdotsep} %chapters with dots to pg. number
\cftpagenumbersoff{part}
\begin{document}
\tableofcontents
\cleardoublepage
\addcontentsline{toc}{chapter}{\normalfont{LIST OF FIGURES}}
\cleardoublepage
\addcontentsline{toc}{chapter}{\normalfont{LIST OF TABLES}}
\addcontentsline{toc}{part}{\normalsize\normalfont{Chapter}}
\clearpage \newpage
\listoffigures
\clearpage \newpage
\listoftables
\clearpage \newpage
Any advice would be greatly appreciated!