\footfullcite 没有提供完整的引用(biblatex,beamer)

\footfullcite 没有提供完整的引用(biblatex,beamer)

正如标题所述,该命令\footfullcite{test}不提供完整引用,而仅分别提供标签“test”、“test1”和“test2”。我使用的是 biblatex 和 beamer 类(昨天下载的,所以希望是最新版本)。

有任何想法吗? :(

代码:

\documentclass{beamer}

\usepackage{pgf}
\usepackage{xcolor}
\usepackage[utf8]{inputenc}
\usepackage[style=authortitle]{biblatex}

\usepackage{filecontents}

\begin{filecontents}{vorlage.bib}

 @article{test1,
    author  = {Shen Lin and Brian W. Kernighan},
    title   = {An Effective Heuristic Algorithm for the Travelling-Salesman Problem},
    journal = {Operations Research},
    volume  = {21},
    year    = {1973},
    pages   = {498--516},
 }

@BOOK{test,
  title = {The Infamous Test},
  publisher = {Testington Test},
  year = {2007},
  author = {John Doe},
  address = {Testville},
}

@ARTICLE{test2,
  author = {Testi, T.},
  year = {2003},
  title = {Testartikel},
  journal = {Testjournal}
}
\end{filecontents}
\addbibresource{vorlage.bib}

\begin{document}

\begin{frame}
\frametitle{Introduction and motivation - the title}
\section[Motivation]{Introduction and motivation}
test text \footfullcite{test}\\test text 1 \footfullcite{test1}\\test text 2 \footfullcite{test2}
\end{frame}

\end{document}

结果如下:

投影幻灯片

相关内容