Page Layoutfootnote to chapter title

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
lauraf
Posts: 29
Joined: Tue Jan 13, 2009 12:44 pm

footnote to chapter title

Post by lauraf »

Hi all,

I need to add a footnote to the title page of a chapter in my thesis. I have tried:

Code: Select all

\chapter[Title]{Title\footnote{text}}
The problem with this is that it creates a number, following the chapter title, that uses the same font size as the title itself (i.e. huge), and this looks very ugly.

Is there a way round this? In fact, if possible, I would prefer to not have the number at all -- I only need the footnote text in this instance. I guess there may be a way to achieve this with fancyhdr but I am not sure how.

Any help much appreciated!
Laura
Last edited by lauraf on Sat Jun 20, 2009 10:42 am, edited 1 time in total.

Recommended reading 2024:

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

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

User avatar
Stefan Kottwitz
Site Admin
Posts: 10324
Joined: Mon Mar 10, 2008 9:44 pm

footnote to chapter title

Post by Stefan Kottwitz »

Hi Laura,

you could try \footnotetext.

Stefan
LaTeX.org admin
lauraf
Posts: 29
Joined: Tue Jan 13, 2009 12:44 pm

Re: footnote to chapter title

Post by lauraf »

Thanks Stefan, right what I needed!

I didn't realize that \footnotetext could be used without \footnotemark :D

Laura
schremmer
Posts: 7
Joined: Mon Oct 25, 2010 8:16 pm

Re: footnote to chapter title

Post by schremmer »

The following works but the footnote mark is lost about an inch below the Chapter Title:

\chapter{ChapterTitle}\footnotemark{}\footnotetext{Some footnote text}

The following

\chapter{ChapterTitle\footnotemark{}\footnotetext{Some footnote text}}

causes an error

! Use of \@chapter doesn't match its definition.
\@ifnextchar ... \reserved@d =#1\def \reserved@a {
#2}\def \reserved@b {#3}\f...
l.5 ...et another set of ``conversion factors''.}}

Regards
--schremmer
schremmer
Posts: 7
Joined: Mon Oct 25, 2010 8:16 pm

Re: footnote to chapter title

Post by schremmer »

But

\chapter[Title of chapter]{Title of chapter\footnote{Text of footnote}}

does work!!!

Go figure.

--schremmer
User avatar
frabjous
Posts: 2064
Joined: Fri Mar 06, 2009 12:20 am

footnote to chapter title

Post by frabjous »

That solution is better, unless you want the footnote duplicated in the table of contents! But if for whatever reason you did want it, you could use \protect:

Code: Select all

\chapter{ChapterTitle\protect\footnotemark{}\protect\footnotetext{Some footnote text}}
Or just:

Code: Select all

\chapter{ChapterTitle\protect\footnote{Some footnote text}}
schremmer
Posts: 7
Joined: Mon Oct 25, 2010 8:16 pm

Re: footnote to chapter title

Post by schremmer »

You are quite right: \protect is all over the LaTeX companion 2ed and I really ought to get to understand it. But \dots

Regards
--schremmer
Post Reply