如果我在同一页面上对同一参考文献有多个脚注引用,我会得到具有完全相同内容的多个脚注条目。
\begin{filecontents*}{\jobname.bib}
@article{test,
title = {Synthesis of Enantiopure Alcohols},
volume = {71},
number = {17},
journal = {J. Org. Chem.},
author = {Test T.},
month = aug,
year = {2006},
pages = {6333--6445}
}
\end{filecontents*}
\documentclass{report}
\usepackage[backend=biber]{biblatex}
\addbibresource{\jobname.bib}
\begin{document}
First\footfullcite{test}, second\footfullcite{test} and third time.\footfullcite{test}
\end{document}
我发现这看起来很奇怪并想知道是否有可能发生这样的事情:
1,2,3 Test T. “对映纯醇的合成”。收录于:J. Org. Chem. 71.17(2006 年 8 月),第 6333-6445 页。
如果我的最小示例中的输出完全正常,我很乐意保持这种状态 - 我只是想听听一些对此的意见。
更新: 我对此做了进一步的研究,我认为最简单的方法是,如果一个脚注引用在一页上出现两次,它就会得到相同的脚注。
First\footfullcite{test}, second\footfullcite{test} and third time.\footfullcite{test}
会给
第一 [1],第二 [1],第三.[1]
结论: 我的第一个建议很难实现,而且不必要地复杂。使用“ibid”的解决方案以不同但有效的方式解决了这个问题。如果不想使用“ibid”,Audreys邮政也很好地解决了这个问题。
答案1
可能使用这种authoryear-ibid
风格并首先使用\footfullcite
然后才\footcite
更好一些。
修改您的 MWE 以:
\begin{filecontents*}{\jobname.bib}
@article{test,
title = {Synthesis of Enantiopure Alcohols},
volume = {71},
number = {17},
journal = {J. Org. Chem.},
author = {Test T.},
month = aug,
year = {2006},
pages = {6333--6445}
}
\end{filecontents*}
\documentclass{report}
\usepackage[style=authoryear-ibid,backend=biber]{biblatex}
\addbibresource{\jobname.bib}
\begin{document}
First\footfullcite{test}, second\footcite{test} and third time.\footcite{test}
\end{document}
你会得到这个结果:
无论如何,正如奥黛丽所建议的,最好的方法是使用这种verbose-ibid
风格,并简单地用于\footcite
所有引用。
\documentclass{report}
\usepackage[style=verbose-ibid,backend=biber]{biblatex}
\addbibresource{\jobname.bib}
\begin{document}
First\footcite{test}, second\footcite{test} and third time.\footcite{test}
\end{document}