如果在同一框架中引用了一篇参考文献超过 1 次,是否有可能为其提供相同的脚注编号?在我的 MWE 中,您会看到有两个脚注。但 bib 条目是相同的。因此,我希望它出现一次,并在文本中给出相同的编号。因此,在 MWE 中只应出现一个脚注。
\documentclass{beamer}
\usepackage{lmodern}
\usepackage[style=authortitle,backend=bibtex]{biblatex}
\addbibresource{biblatex-examples.bib}
\begin{document}
\begin{frame}
Here is text\footfullcite{westfahl:space}.
Here is text\footfullcite{westfahl:space}.
\end{frame}
\end{document}
答案1
不要第二次引用,而只需重新插入第一次的脚注标记:
\documentclass{beamer}
\usepackage{lmodern}
\usepackage[style=authortitle,backend=bibtex]{biblatex}
\addbibresource{lit.bib}
\begin{document}
\begin{frame}
Here is text\footfullcite{Hillas}.
Here is text\footnotemark[1].
\end{frame}
\end{document}