I'm trying to alter the style file that my university provided so that chapter headings are bold, similar to the section and subsection labels. Unfortunately, the attempted changes I have made succeeded in making all the text in the document bold. Any help or hints would be appreciated.
Ryan
Code: Select all
\def\chapter{\clearpage \thispagestyle{plain} \global\@topnum\z@
\@afterindenttrue \secdef\@chapter\@schapter}
\def\@chapter[#1]#2{\ifnum \c@secnumdepth >\m@ne
\refstepcounter{chapter}
\typeout{\@chapapp\space\thechapter.}
{\def\\{}
\addcontentsline{toc}{chapter}{\protect
\numberline{\thechapter}#1}}\else {\def\\{}
\addcontentsline{toc}{chapter}{#1}}\fi
\chaptermark{#1}
\addtocontents{lof}{\protect\addvspace{10pt}}
\addtocontents{lot}{\protect\addvspace{10pt}} \if@twocolumn
\@topnewpage[\@makechapterhead{#2}]
\else \@makechapterhead{#2}
\@afterheading \fi}
\def\@schapter#1{\if@twocolumn \@topnewpage[\@makeschapterhead{#1}]
\else \@makeschapterhead{#1}
\@afterheading\fi}