Biblatex:请参阅 citestyle verbose-ibid 中第一个引用的脚注

Biblatex:请参阅 citestyle verbose-ibid 中第一个引用的脚注

我想让 Biblatex 执行以下操作:我想要脚注中的引用。当它们第一次出现时,应显示完整信息(作者、标题、年份等)。当它们在论文中第二次出现时,应使用作者姓名和简称引用,并给出对第一次完整引用的脚注的引用。例如:

A favourite work of Thedor W. Adorno is "Dialektik der Aufklärung"¹ which he wrote together with Max Horkheimer. 
Some people say "Negative Dialektik"² is the main oeuvre of Theodor W. Adorno.
But let's discuss "Dialektik der Aufklärung"³ first.  
___________

¹ Max Horkheimer and Theodor W. Adorno: Dialektik der Aufklärung. Philosophische Fragmente. 17.th Edition, Frankfurt am Main: Fischer, 2009
² Theodor W. Adorno. *Negative Dialektik* Frankfurt am Main: Suhrkamp, 2003
³ Max Horkheimer and Theodor W. Adorno: Dialektik der Aufklärung. (see footnote 1), p. 12

我已经找到了 citestyle verbose-ibid,它几乎完美地满足了我的需求。我唯一还在寻找的是如何让第一次引用时自动引用脚注。有人能告诉我怎么做吗?非常感谢!

答案1

有一种biblatex标准风格可以做到这一点:verbose-inote(或者verbose-note,如果您不想要 ibid-capabilities)。

如果您总是想看到(简短)标题,我们最好添加选项singletitle=false;如果我们保留默认设置singletitle=true,则只有一部作品的作者将不会在进一步的引用中打印标题。

平均能量损失

\documentclass{article}
\usepackage[british]{babel}
\usepackage{csquotes}
\usepackage[style=verbose-inote,singletitle=false]{biblatex}

\addbibresource{biblatex-examples.bib}

\begin{document}
  O Fortuna\footcite{cicero} velut luna statu variabilis,\footcite{wilde}
  semper crescis aut decrescis;\footcite{cicero} 
  vita detestabilis nunc obdurat et tunc curat ludo mentis
  aciem, egestatem, potestatem dissolvit ut glaciem.\footcite{cicero}

  \printbibliography
\end{document}

在此处输入图片描述

答案2

我在发布几个月后才看到这个问题,因为我当时正在尝试寻找同一问题的答案。出版商需要这个系统,因为他们不想要最终的参考书目,而且读者应该知道在哪里找到完整的引文(确实是奇怪的系统)。

目前我正在手动执行此操作:

% EXAMPLE-BEGIN
Kant noticed that so and so%
\footnote{See \cite[\label{}23]{Kant:KRV}}. 
more text here ...
\newpage
As already noticed%
\footnote{Again by Kant: \cite[(see footnote~\ref{Kant:KRV}), 127]{Kant:KRV}}%
, more text here.
% EXAMPLE-END

但如果没有更好的办法,设计一个新的宏应该不难。这个问题从未被处理过吗?

多谢!

相关内容