biblatex - footcite が \begin{center} 内で機能しない

biblatex - footcite が \begin{center} 内で機能しない

コマンドがブロック内で発行されるbiblatexときに脚注を付けるのに苦労しています。\footcite\begin{center} \end{center}

参考文献は正常に機能し、テキスト内に参照番号がありますが、同時に脚注を取得できません。

次のコマンドを試しました:

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

しかし、それは機能していません。

私が持っているのは次のものです:

\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}

\footciteブロックの外でコマンドを使用した場合は\begin{center} \end{center}正常に動作します。

誰か助けてくれませんか?

答え1

@moewe、あなたのリンクによると、これが解決策でした

\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}

関連情報