I have trouble getting any kind of citation working with latex beamer and the biblatex package. I considered at least 30 different approaches proposed here and in other forums.
Because I used \cite in my thesis, I would like to stick with biblatex and \cite. This is the minimal example:
\documentclass[presentation, notes = show]{beamer}
\usetheme{Berlin}
\usecolortheme{seagull}
\usepackage{biblatex}
% nothing of the following seems to work
\bibliography{bib.bib}
%\bibliography{bib}
%\addbibresource{bib.bib}
%\addbibresource{bib}
\begin{document}
\begin{frame}
\frametitle{Test}
\cite{test}
\footfullcite{test}
\end{frame}
\end{document}
The output I get is [test ]^1 and a footnote 1: test.
biberafterpdflatex? Have you tried put thebibfile in the same folder/directory as the main file? – Guido Nov 16 '14 at 22:14INFO - Found BibTeX data source 'bib.bib', but after runningpdflatex,biber,pdflatex, I still see only the citation keys. – rlldd Nov 16 '14 at 22:55bibtexinstead ofbiber. For this use\usepackage[backend=bibtex]{biblatex}. Also I would suggest to remove all auxiliary files first. – Guido Nov 18 '14 at 01:00biblatexsyntax is\addbibresourec{bib.bib}and then callbiber. Doesbiberreport any undefined keys? – Andrew Swann Oct 31 '17 at 15:39