biblatex - \begin{center} 내부에서 footcite가 작동하지 않습니다.

biblatex - \begin{center} 내부에서 footcite가 작동하지 않습니다.

블록 내에서 명령을 실행할 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}

관련 정보