1. Making chapter numbers bold. I made the chapter names bold in the TOC by adding \bf{} around the names themselves, but the numbers are still plain.
2. Line spacing - I would like to add an extra line between chapter entries (but not sections or subsections).
I tried using the tocloft package but it generated errors just by being included. So instead I have been just directly tweaking the class file which was provided by my university. The relevent section of the class file is below (the comments mentioning bold text were in the file when I got it):
Code: Select all
% TABLEOFCONTENTS
\def\tableofcontents{\@restonecolfalse\if@twocolumn\@restonecoltrue\onecolumn
\fi\chapter*{\bf Table of Contents\@mkboth{}{}\addcontentsline{toc}{chapter}{\bf{Table of Contents}}}
\@starttoc{toc}\if@restonecol\twocolumn\fi} %added \bf to print Table of Contents in bold on pg 2006nm
\def\l@part#1#2{\addpenalty{-\@highpenalty}
\addvspace{2.25em plus 1pt} % space above part line
\begingroup
\@tempdima 3em % width of box holding part number, used by
\parindent \z@ \rightskip \@pnumwidth %% \numberline
\parfillskip -\@pnumwidth
{%\large \bfseries % set line in \large boldface 2006nm
\leavevmode % TeX command to enter horizontal mode.
#1\hfil \hbox to\@pnumwidth{\hss #2}}\par
\nobreak % Never break after part entry
\endgroup}
\def\l@chapter#1#2{\pagebreak[3]
\vskip 1.0em plus 1pt % space above chapter line
\@tempdima 1.5em % width of box holding chapter number
\begingroup
\parindent \z@ \rightskip \@pnumwidth
\parfillskip -\@pnumwidth
%\bfseries % Boldface removed. 2006nm
\leavevmode % TeX command to enter horizontal mode.
#1\hfil \hbox to\@pnumwidth{\hss #2}\par
\endgroup}
\def\l@chapter{\@dottedtocline{0}{0em}{2.3em}}
\def\l@section{\@dottedtocline{1}{1.5em}{2.3em}}
\def\l@subsection{\@dottedtocline{2}{3.8em}{3.2em}}
\def\l@subsubsection{\@dottedtocline{3}{7.0em}{4.1em}}
\def\l@paragraph{\@dottedtocline{4}{10em}{5em}}
\def\l@subparagraph{\@dottedtocline{5}{12em}{6em}}
% LIST OF FIGURES AND ILLUSTRATIONS
%
\def\listoffigures{\@restonecolfalse\if@twocolumn\@restonecoltrue\onecolumn
\fi\chapter*{\bf{List of Figures and Illustrations}\markboth
{}{}\addcontentsline{toc}{chapter}{\bf{List of Figures}}}%(NM 2005 added List of Figures to TOC)
\@starttoc{lof}\if@restonecol\twocolumn
\fi}
\def\l@figure{\@dottedtocline{1}{1.5em}{2.3em}}