I have ref.bib and want to cite some papers at the end of the slides. So far I know I should use \footfullcite{key} with \usepackage{biblatex} and the references would be shown at the end of the slide. However, doing pdflatex bibtex pdflatex in my texMaker. Specifically, when running bibtex will give the following :
This is BibTeX, Version 0.99d (TeX Live 2016) The top-level auxiliary file: mwe.aux I found no \citation commands---while reading file mwe.aux I found no \bibdata command---while reading file mwe.aux I found no \bibstyle command---while reading file mwe.aux (There were 3 error messages)
adding [backend=bibtex8] will work although it gives warning 'functionality may be reduced'
My question is how to place citations bottom of the slide with biblatex without resorting to biber in texmaker
\documentclass{beamer}
\usepackage[backend=bibtex8]{biblatex}
\nocite{*}
\bibliography{ref}
\begin{document}
\begin{frame}
Hello. \footfullcite{key}.
\end{frame}
\end{document}
biblatexuses the Biber back-end as standard: if you don't give an option, it will write no data for BibTeX to the.auxfile. – Joseph Wright Jun 30 '16 at 05:57backend=bibtex(orbibtex8) option in which case you will have to live with reduced functionality. Or you use Biber (in that case you can add the optionbackend=biberor leave the option out altogether, Biber is the default) and get the full set of features. See Biblatex with Biber: Configuring my editor to avoid undefined citations for help with Biber in your editor. – moewe Jun 30 '16 at 06:01