Graphics, Figures & TablesCitation Footnote in Figure Caption

Information and discussion about graphics, figures & tables in LaTeX documents.
Post Reply
Hijacker
Posts: 3
Joined: Fri Apr 01, 2011 10:51 am

Citation Footnote in Figure Caption

Post by Hijacker »

Hi there,

I already searched Google and the forums, but to no avail. I am using \usepackage[style=footnote-dw]{biblatex} in my document and I want to use a citation in the caption of a figure. It correctly puts the citation number at the position, but it doesn't put the footnote with the citation information in the footer. I do deliver both the optional and the regular parameters to caption. I also tried using \protect, but all of it won't put the citation footnote on the page. How can I fix this?

MWE:
Test1.tex

Code: Select all

\documentclass[a4paper,oneside,11pt]{scrartcl}
\usepackage{graphicx}
\usepackage[style=footnote-dw]{biblatex}
\bibliography{test1}

\begin{document}
This is a testsentence with a working citation in the footnote\cite[p.~1]{test01}.

\newpage

\begin{figure}
		\includegraphics{test.png}
	\caption[Testpic]{Testpic\protect\cite[p.~3]{test01}}
	\label{fig:testpic}
\end{figure}

\end{document}
test1.bib

Code: Select all

@BOOK{test01,
   AUTHOR="John Doe",
   TITLE="Testbook",
   PUBLISHER="Testpublisher",
   YEAR=2001,
   ADDRESS="Fakecity",
   EDITION="4."
} 

Recommended reading 2024:

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

Learn LaTeX easily with newest books:

The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis

The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more

LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis

Hijacker
Posts: 3
Joined: Fri Apr 01, 2011 10:51 am

Re: Citation Footnote in Figure Caption

Post by Hijacker »

So apparently I'm lost on my own with this, hm? :/
User avatar
Juanjo
Posts: 657
Joined: Sat Jan 27, 2007 12:46 am

Citation Footnote in Figure Caption

Post by Juanjo »

Hijacker wrote:So apparently I'm lost on my own with this, hm? :/
Yes, you are. The problem concerns, in general, footnotes in captions, which are very difficult to get. If the matter would deal with ordinary footnotes, perhaps a solution could be devised. But it involves the internals of biblatex. So, if I were you,... I would choose a different citation scheme or avoid citations in captions. :cry:
The CTAN lion is an artwork by Duane Bibby. Courtesy of www.ctan.org.
Hijacker
Posts: 3
Joined: Fri Apr 01, 2011 10:51 am

Re: Citation Footnote in Figure Caption

Post by Hijacker »

*sigh* OK, thanks for the heads up.

Is there anything known about the package authors working on this problem? I'd say this is a rather critical issue and I'm probably not the only one facing it.
Post Reply