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}

相關內容