I'm using the wrapfig package for a figure that wraps itself around the text and biblatex for all my citing with these parameters:
\usepackage[backend=biber,
style=numeric,
sorting=none,
sortlocale=de_DE,
]{biblatex}
Now when I want to place the picture I use this code:
\begin{wrapfigure}{r}{0.55\textwidth}
\centering
\includegraphics[width=0.55\textwidth]{picture}
\footfullcite{somedude}
\end{wrapfigure}
Using this code, the picture places where I want and the little 1 indicating that I want to cite this is at the bottom right corner. The problem is that in the footnotes the 1 doesn't appear. It just shows the over foot citations.
I get no error or anything to debug this.
(citation key and picture path is also right)
