As the title says, the command \footfullcite{test} does not give the full citation, but only the label "test", "test1" and "test2", respectively. I'm using biblatex and the beamer class (downloaded yesterday, so hopefully the newest versions).
Any ideas? :(
Code:
\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}
here the result:

pdflatex, thenbibtex, thenpdflatextwice? – jub0bs May 30 '13 at 09:16biberor addbackend=bibtexto the options when loading biblatex. – Paul Stanley May 30 '13 at 19:23