Document ClassesReport class: adding footnotes to chapter titles

Information and discussion about specific document classes and how to create your own document classes.
Post Reply
powersn
Posts: 2
Joined: Wed Apr 21, 2010 8:52 pm

Report class: adding footnotes to chapter titles

Post by powersn »

Hello forum. I am formatting my dissertation and need some help. My dissertation is comprised of three papers, and I am using report class to put them all into a single document (where each paper is a chapter). However, one of the papers is co-authored, and I'd like to have a footnote to the chapter heading saying ``The material in this chapter represents joint work with ...''

When working in article class, this is straightforward, using \thanks{}, but I am having trouble with this, or with footnotes. Does anybody have any experience with this? Thank you.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

Report class: adding footnotes to chapter titles

Post by gmedina »

HI,

use the optional argument of the commands for sectional units; an example:

Code: Select all

\documentclass{report}

\begin{document}
\tableofcontents

\chapter[Test chapter]{Test chapter\footnote{a test footnote.}}

\end{document}
1,1,2,3,5,8,13,21,34,55,89,144,233,...
powersn
Posts: 2
Joined: Wed Apr 21, 2010 8:52 pm

Re: Report class: adding footnotes to chapter titles

Post by powersn »

Thank you. That was amazingly quick response time and an embarrassingly simple solution.
Post Reply