块中的 footfullcite 没有按我的要求显示引用

块中的 footfullcite 没有按我的要求显示引用

我正在做一个学术演讲。我想把参考文献放在区块中。

在此处输入图片描述

但我想把参考编号直接放在“定理”这个词后面。所以我尝试了

在此处输入图片描述

引用直接出现在区块中,这真是太糟糕了。看来区块会影响脚注。我该如何解决?

答案1

您可以像这样解决该问题:

\documentclass{beamer}
\usepackage[style=authoryear]{biblatex}
\usetheme{Warsaw}

\addbibresource{biblatex-examples.bib}

\begin{document}
\begin{frame}
  \begin{block}{This is a citation\footnote[frame]{\fullcite{knuth:ct}}.}
  content...
  \end{block}
\end{frame}

\begin{frame}
  \frametitle{References}
  \printbibliography
\end{frame}

\end{document}

在此处输入图片描述

相关内容