[Tex/LaTex] beamer + bibTeX: error, ‘no aux’ found!

beamerbibliographiesbibtex

I'm trying to compile a chs_2015.bib file with BibTeX (editor's button corresponding to command bibtex %) before including it in the actual Beamer *.tex presentation but I keep getting this error msg: I couldn't open file name 'chs_2015.aux' Process exited with error(s). I've also tried to compile it with pdfLaTeX but then it says No Log file found!

Can anyone explain why this is happening? I'm supposed to work the *.bib file with bibtex then pdfLaTeX×2, right?

The *.bib file has only one entry (there were others, I slimmed it down to figure out what the problem was):

@article{akyildiz:2011,
author = {Akyildiz, Ian F. and Jornet, Josep Miquel and Pierobon, Massimiliano},
title = {Nanonetworks: A New Frontier in Communications},
journal = {Communications of the ACM},
year = {2011},
doi = {10.1145/2018396.2018417}
}

Here's a MWE of the *.tex file:

\documentclass[12pt]{beamer}

\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[italian]{babel}
\usepackage{biblatex}

\usetheme{Madrid}
\useoutertheme[right]{sidebar}

\title{Le Maree}
%\subtitle{ }
\author{Jane Doe}
\institute[UniR5]{Università di Rimini}
\date{1 aprile 2034}


\begin{document}

%quadro1
\begin{frame}
\maketitle
\end{frame}

%quadro2
\section{Introduzione}
\begin{frame}
\frametitle{Cos'è}
Interazione tra 
\begin{itemize}[<+->]
\item Terra come illustrato in \cite{akyildiz:2011}
\item Luna
\item Sole
\end{itemize}
\end{frame}

\begin{frame}[allowframebreaks]
\frametitle{References}
 \bibliographystyle{plain}
 \bibliography{chs_2015}
\end{frame}

\end{document}

EDIT:
enter image description here

EDIT2:
enter image description here

Best Answer

You should first compile the .tex with pdfLaTeX once, to produce a .aux file. Then compile the created .aux file with bibtex to create a .bbl from the .bib and finaly compile the .tex twice. This should work

Related Question