biblatex - Footcite no funciona dentro de \begin{center}

biblatex - Footcite no funciona dentro de \begin{center}

Me cuesta biblatextener una nota al pie cuando el \footcitecomando se emite dentro de un \begin{center} \end{center}bloque.

La bibliografía funciona bien, tengo el número de referencia en el texto pero no puedo obtener la nota al pie al mismo tiempo.

Probé el comando:

\footcite{ref1}
\footfullcite{ref1}
\footfullcitetext{ref1}

Pero no funciona.

Esto es lo que tengo:

\usepackage[
    backend=bibtex,
    style=numeric,
    citestyle=verbose,
    maxcitenames=50,
    maxbibnames=50,
    firstinits=false,
    sorting=none]{biblatex}
\bibliography{biblio} 


\begin{center}
\includegraphics[scale=0.30]{01_Content_Certif_X509}
\captionof{figure}{\emph{Génération et contenu d’un certificat X.509.}\footcite{dumas2013theorie}}
\end{center}

Si usé el \footcitecomando fuera del \begin{center} \end{center}bloque, funciona bien.

¿Puede alguien ayudarme por favor?

Respuesta1

@moewe, según tu enlace, esta fue la solución

\begin{center}
\includegraphics[scale=0.30]{01_Content_Certif_X509}\label{fig:1}
\captionof{figure}{\emph{Génération et contenu d’un certificat X.509.}{\protect\footnotemark}}
\end{center}
\footnotetext{\footcite{dumas2013theorie}

información relacionada