Im currently trying to implement footcites into my document
\documentclass[11pt]{report}
\usepackage[utf8]{inputenc}
\usepackage{graphicx}
\usepackage[backend=biber, style=numeric, citestyle=reading ]{biblatex}
\usepackage{footnote}
\makesavenoteenv{figure}
\addbibresource{Bibliografia.bib}
\begin{document}
\begin{figure}[H]
\includegraphics[width = 1\textwidth]{Tesis/Imagenes/AC1.jpg}
\captionof{figure}{ Gráfica de tensión \footcite{AC} }
\label{Resistiva}
\end{figure}
\end{document}
Where the content of my bib file is
@article{Linear,
author = {{Bob T. Smith}},
date = "2008",
title = " Linear circuit design handbook Newnes ISBN 0750687037 Instruments",
url = "http://es.wikipedia.org/wiki/Circuito_lineal"
}
@article{AC,
author ={{AllAboutCircuits}},
date = "2015",
title = "Introducción a Teoría de C.A.",
url = "http://www.allaboutcircuits.com/textbook/alternating-current/chpt-11/power-resistive-reactive-ac-circuits/"
}
However Im getting this

As you can see theres 2 footcites one from my text and another from my label, this shouldnt look like this but only one at the bottom
\documentclass{...}and ending with\end{document}. At the moment, I cannot reproduce your issue here – Jun 19 '15 at 05:35\footciteneedsbiblatexpackage -- there is no such package loaded in your document – Jun 19 '15 at 05:47\addbibresourceand\usepackage{graphicx}missing ;-) And if you use\footcite{}in\caption, you should use it\caption[caption for toc]{.... \footcite{AC}}, otherwise there would be a footnote in your list of figures. But still, after all of this, I don't get what you report. I still have only one citation, at the foot of the page. Do you have a minipage around yourfigureenvironment? – Jun 19 '15 at 06:01\usepackage[utf8]{inputenc}and\usepackage{caption}would help ;-) But since you are using a figure environment already, there is no need to use\captionof.\captionis sufficient here – Jun 19 '15 at 06:09biblatextag. I cannot reproduce the issue. Might be a candidate for closing as unclear. – Johannes_B Feb 26 '17 at 11:17biblatexit's a simple fact that you can't use\footnotein floating environments without special handling. – Marco Daniel Feb 26 '17 at 11:30