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}
Code: Select all
@BOOK{test01,
AUTHOR="John Doe",
TITLE="Testbook",
PUBLISHER="Testpublisher",
YEAR=2001,
ADDRESS="Fakecity",
EDITION="4."
}