I am facing a strange situation using Beamer
- Bibliography is not printing in the last slide(s)
- Only the reference key words are printed in the slide footer. But I need the full citation to be printed
- If possible i would like to have the bibliography style ieeetr in the footers and last slide(s)
I am using TeX Studio compiling chain used : pdflatex - bibliography - pdflatex - pdflatex
What seems to be the problem?
Thanks in advance for the help.
Please find the MWE and bib file below
Thank you
JIM
============
%MWE % !TEX TS–program = pdflatexmk % !TEX root = IoT Technologies.tex % !TeX program used: pdftex
\documentclass[12pt]{beamer}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usetheme{Frankfurt}
\useoutertheme{split}
\setbeamertemplate{navigation symbols}{}
\usepackage[orientation=landscape,size=custom,width=16,height=9,scale=0.5,debug]{beamerposter}
%\usepackage{biblatex}
\usepackage{ragged2e}
\let\olditem\item
\renewcommand\item{\olditem\justifying}
\usepackage[backend=biber]{biblatex}
%\bibliographystyle{acm}
\addbibresource{references.bib}
%\bibliography{references}
\begin{document}
\author{JIM}
\title{\emph{IoT Technologies}}
\begin{frame}[plain]
\maketitle
\end{frame}
\begin{frame}
\frametitle{Internet of Things}
How do we define Internet of Things?
\pause
\begin{itemize}
\item A network of items — each embedded with sensors — which are connected to the Internet - \footfullcite{minerva2015towards}
\pause
\item The interconnection via the internet of computing devices embedded in everyday objects, enabling them to send and receive data. - \text{Oxford Dictionary}
\end{itemize}
\end{frame}
\begin{frame}
\printbibliography
\end{frame}
\end{document}
===================================
%references.bib
@article{minerva2015towards,
title={Towards a definition of the Internet of Things (IoT)},
author={Minerva, Roberto and Biru, Abyi and Rotondi, Domenico},
journal={IEEE Internet Initiative},
volume={1},
number={1},
pages={1--86},
year={2015},
publisher={IEEE}
}
=====================================
%TeX Studio messages Error: One command expansion invalid. Parent Command: bibliography Primary Command: bibliography
Process started: pdflatex -synctex=1 -interaction=nonstopmode "texstudio_EfgnBh".tex
Process exited normally
% TeX Studio issues LaTeX Warning: There were undefined references.
Package biblatex Warning: Please (re)run Biber on the file:


\addbibresourceneeds the file name of your.bibfile with file extension. So\addbibresource{references}should presumably be\addbibresource{references.bib}. You also need to run Biber on your document so that a whole compile cycle is pdfLaTeX, Biber, pdfLaTeX, pdfLaTeX. Have a look at https://tex.stackexchange.com/q/154751/35864 to configure your editor for Biber. (If you usepdflatexmkthat should run Biber for you automatically, but it is not clear to me whether you actually ensure thatpdflatexmkis used as suggested by the file header). – moewe Mar 06 '21 at 15:02reference.bibas shown does not contain a reference calledieeeand that you probably want to use\footfullciteand not just\footciteeverywhere. – moewe Mar 06 '21 at 15:06\addbibresource{references}, which is incorrect, and now uses\footcitewhere you said you had used\footfullcitein your last comment). Please also add the exact message of the error to the question. The error message you mention does not sound like a LaTeX or Biber error, so maybe you did not configure your editor correctly. Please show a screenshot of your editor config and compare it again against https://tex.stackexchange.com/q/154751/35864. – moewe Mar 06 '21 at 15:32<unknown>. It should saybiber %instead. – moewe Mar 06 '21 at 16:34sudo)apt install biber. – moewe Mar 06 '21 at 17:03