footcite,多次引用同一参考文献时出现奇怪的行为

footcite,多次引用同一参考文献时出现奇怪的行为
\documentclass{article}

\usepackage[style=verbose]{biblatex}

\usepackage{filecontents}% to embed the file `myreferences.bib` in your `.tex` file

\begin{filecontents}{myreferences.bib}
@online{foo12,
  year = {2012},
  title = {footnote-reference-using-european-system},
  url = {http://tex.stackexchange.com/questions/69716/footnote-reference-using-european-system},
}
\end{filecontents}

% File is created and written to disk by the above package
\addbibresource{myreferences.bib}

\begin{document}

\null\vfill% to make the text height smaller for the example

\section{First section}

Some text.\footnote{Some text in a footnote.} Some more text.\footcite{foo12}
\newpage
Once more\footcite{foo12}


\end{document}

当我运行此代码时,第一个引用正确显示,但在第二个实例中,仅显示引用键。

知道这可能是什么原因造成的吗?

答案1

biblatex摘自第 69 页的文献:

冗长 详细的引用样式,第一次引用某个条目时会打印类似于参考书目条目的完整引用,之后再打印简短的引用。

相关内容