I have the problem that when I want to make a \footcite in the caption of a figure, that the footnote is missing and the hyperlink broken. The hyperlink links to the first page of the document. The \footcite command works fine in a normal sentence. I am using latexmk to compile my document.
Here is a minimal working example
\documentclass[hidelinks]{scrartcl}
\usepackage[english]{babel}
\usepackage[style=verbose, backend=biber]{biblatex}
\usepackage[pdftex, hidelinks]{hyperref}
\usepackage[pdftex]{graphicx}
\usepackage{bookmark}
\addbibresource{test.bib}
\begin{document}
This is a test sentence which references an artwork. \footcite{artwork-test}
\begin{figure}[h]
\includegraphics{test.jpg}
\caption{This is a test image which references an artwork. \footcite{artwork-test}}
\end{figure}
\printbibliography
\end{document}
The .bib file looks like this
@artwork{artwork-test,
title = {Hello this is a {test title}},
author = {{John Doe}},
date = {2018},
url = {http://www.example.com},
urldate = {2021-08-06}
}
\footnotes in floats disappear. See https://tex.stackexchange.com/q/10181/35864. This is not specific to\footcite. I generally try to avoid footnotes in captions and instead go for parentheses. If you must have a footnote, you can try to go for the old\footnotemark-\footnotetexttrick:\caption[This is a test image which references an artwork]{This is a test image which references an artwork.\footnotemark}and the after the figure\footcitetext{sigfridsson}. – moewe Aug 18 '21 at 19:25