Chapter 1
INTRODUCTION
but I need the "Chapter" part in all caps too and cannot figure it out, keeps giving errors anytime I add \uppercase...though I am fairly new to this
here is the style file that concerns the chapter headings:
Code: Select all
% \@makechapterhead {TEXT} : Makes the heading for the \chapter command.
%
\def\@makechapterhead#1{% % Heading for \chapter command
\vspace*{\z@}% % Space at top of text page.
{\parindent \z@ \raggedright
\ifnum \c@secnumdepth >\m@ne % IF secnumdepth > -1 THEN
% Print '\chaptername' and number.
\normalsize\bf\centering \@chapapp{} \thechapter
\par
\vskip 20\p@ \fi % Space between number and title.
\normalsize \bf % Title.
\uppercase\expandafter{#1}\par
\nobreak % TeX penalty to prevent page break.
\vskip 40\p@ % Space between title and text.
}}
% \@makechapterhead {TEXT} : Makes the heading for the \chapterfoot command.
%
\newcommand{\@makechapterfoothead}[2]{% % Heading for \chapterfoot command
\vspace*{\z@}% % Space at top of text page.
{\parindent \z@ \raggedright
\ifnum \c@secnumdepth >\m@ne % IF secnumdepth > -1 THEN
% Print '\chaptername' and number.
\normalsize\bf\centering \@chapapp{} \thechapter
\par
\vskip 20\p@ \fi % Space between number and title.
\normalsize \bf % Title.
\uppercase\expandafter{#1}\footnote{\textmd{#2}} \par
\nobreak % TeX penalty to prevent page break.
\vskip 40\p@ % Space between title and text.
}}
% \@makeschapterhead {TEXT} : Makes the heading for the \chapter* command.
%
\def\@makeschapterhead#1{% % Heading for \chapter* command
\vspace*{\z@}% % Space at top of page.
{\parindent \z@ \raggedright
\normalsize \bf \centering % Title.
\uppercase\expandafter{#1}\par
\nobreak % TeX penalty to prevent page break.
\vskip 40\p@ % Space between title and text.
}}