Code: Select all
\documentclass[11 pt]{thesis}
\usepackage{lipsum}
\begin{document}
\chapter[My first chapter]{My first chapter\footnote{This is joint work with Immanuel Kant}}
\lipsum[1-2]
\end{document}
Code: Select all
\def\@makechapterhead#1{%
\vspace*{\beforechaptervspace}{%
\ifx\@chapapp\@empty
\if@center\centering
\ifnum \c@secnumdepth >\m@ne
{\c@font\thechapter.\ }
\fi
{\c@font
\if@upper
\uppercase{#1}
\else
#1
\fi
\par \nobreak}
\else\raggedright
\ifnum \c@secnumdepth >\m@ne
\setbox\@tempboxa\hbox{\c@font\thechapter.\ %
\c@font
\if@upper
\uppercase{#1}
\else
#1%
\fi}
\ifdim \wd\@tempboxa >\hsize
\@hangfrom{%
\c@font\thechapter.\ }{\c@font
\if@upper
\uppercase{#1}
\else
#1%
\fi
\par\nobreak}
\else
\hbox to\hsize{\box\@tempboxa\hfil}
\fi
\fi
\fi
\else
\if@center
\centering
\else
\raggedright
\fi
\ifnum \c@secnumdepth >\m@ne
\if@mainmatter
{\s@font \@chapapp{} \thechapter}
\par \vskip 15\p@
\fi
\fi
{\c@font
\if@upper
\uppercase{#1}
\else
#1%
\fi
\par \nobreak}
\fi
\vspace{\afterchaptervspace}
\if@thema
\ifx\@shortauthor\@empty
\else
\@mkboth{\@shortauthor}{#1}
\fi
\ifx\@chapterauthor\@empty
\else
\@makechapterauthor
\fi
\fi}
}
Or, even better, is there a way to solve this without intervening in the class file?