I am writing my thesis, using a document class unique to my university - based on the article class. I have to remove ALL bold formatting in the Table of Contents, and for some reason I get an error that I can't figure out when I use the tocloft package.
To remove the bold in the title of the ToC, and rename it to Table of Contents, I used \renewcommand... but as you can see below, to get the title page formatted correctly, I just used \bigskip alot, and that seems to be what tocloft doesn't like:
\documentclass{csun}[12pt]
\renewcommand{\contentsname}{\textnormal{Table of Contents}}
\begin{document}
\pagenumbering{roman}
\thispagestyle{empty}
\begin{large}
\begin{center}
CALIFORNIA STATE UNIVERSITY, NORTHRIDGE
\bigskip
\bigskip
\bigskip
\bigskip
\bigskip
\bigskip
\bigskip
\bigskip
\bigskip
\bigskip
\bigskip
\bigskip
\bigskip
\bigskip
Fermi Coordinates and Relative Motion in Inflationary Power Law Cosmologies
\bigskip
\bigskip
A thesis submitted in partial fulfilment of the requirements
for the degree of Master of Science Mathematics
\bigskip
by
\bigskip
The Author
\bigskip
\bigskip
\bigskip
\bigskip
\bigskip
\bigskip
\bigskip
\bigskip
\bigskip
\bigskip
\bigskip
\bigskip
\bigskip
\bigskip
\bigskip
\bigskip
\bigskip
\bigskip
\bigskip
\bigskip
\bigskip
\bigskip
\vspace*{8 em}
December 2012
\pagebreak
\end{center}
\pagebreak
\chapter*{\textnormal{Dedications}}
\addcontentsline{toc}{chapter}{Dedications}
Dedication goes here.
\tableofcontents %makes a ToC with chapter names and page numbers bolded.
My thesis goes here.
\end{large}
\end{document}
Sorry that is a monster block of code, I realize that's not minimal, but I think it's relevant. When I try to use tocloft, and hit go to error, it sends me to one of the \bigskips. The error message says:
Error: Command \c@lofdepth already defined.
Or name \end... illegal
Any suggestions for how to make tocloft work, or how to remove the bold formatting without tocloft would be appreciated.


csun? The reason is that document elements like the ToC is highly dependent on the\documentclass, and could provide insight into why it doesn't work withtocloft, or why you are using a bizillion\bigskips. – Werner Nov 30 '12 at 5:27