Text Formattingciting within footnote and using hyperref

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
Post Reply
benti
Posts: 42
Joined: Fri Mar 06, 2009 4:51 pm

citing within footnote and using hyperref

Post by benti »

Hej,

I face the following problem: I need to attach a note to a section title. Part of the note is a reference to an item in the bibliography. Like this:

Code: Select all

\section{Introduction\protect\footnote{This chapter has been published as \citet{CITEDWORK}}}}
The document also uses hyperref, which causes a predictable problem because hyperref doesn't allow links to be 'nested'.

I figured a possible solution would be to make sure that hyperref somehow skips the \citet command in the \footnote. Is that possible; if so, how?

thanks,
Niels

Recommended reading 2024:

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

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

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

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

citing within footnote and using hyperref

Post by gmedina »

Hi,

you could use something like this:

Code: Select all

\section[Introduction]{Introduction\protect\footnotemark[3]}
\footnotetext[3]{This chapter has been published as \citet{CITEDWORK}}
Notice the use of the optional argument of the \section command to prevent the footnote to be displayed in the table of contents.

Of course, in the optional argument of the \footnotemark and \footnotetext commands use the appropriate value.
1,1,2,3,5,8,13,21,34,55,89,144,233,...
Post Reply