我正在使用类投影仪来准备科学演示。myrefernces.bib 使用 \addbibresource{} 包含在内。在一张幻灯片中,一个引文使用 \footcite{} 使用两次。相同的引文在幻灯片底部出现两次,也带有不同的数字。如何避免这种情况并使引文在幻灯片中以及整个演示文稿中以相同的编号出现以避免混淆。
提前谢谢。
手动解决方法:
documentclass{beamer}
usepackage[style=authoryear]{biblatex}
usepackage{filecontents}
begin{filecontents*}{jobname.bib}
@book{knuth,
author = {Knuth, Donald E.},
title = {The {TeX} book},
date = 1984,
maintitle = {Computers & Typesetting},
volume = {A},
publisher = {Addison-Wesley},
location = {Reading, Mass.},
langid = {english},
langidopts = {variant=american},
sortyear = {1984-1},
sorttitle = {Computers & Typesetting A},
indexsorttitle= {The TeXbook},
indextitle = {protectTeX book, The},
shorttitle = {TeX book}
}
end{filecontents*}
addbibresource{jobname.bib}
begin{document}
begin{frame}
testfootcite{knuth}
testfootnotemark[1]
end{frame}
end{document}