I'm having trouble getting the bibliography to show up in the following example:
main.tex:
\documentclass[12pt]{report}
\usepackage[utf8]{inputenc}
\usepackage{biblatex}
\addbibresource{references.bib}
\begin{document}
Hi \cite{bib:markramEqns}.
\printbibliography
\end{document}
references.bib:
@article{bib:markramEqns,
author = {M Tsodyks, K Pawelzik, and H Markram},
title = {Neural networks with dynamic synapses},
journaltitle = {Neural computation},
year = {1998},
volume = {10},
number = {4},
pages = {821-835}
}
Compiler complaints:
No file main.bbl.
LaTeX Warning: Citation 'bib:markramEqns' on page 1 undefined on input line 8.
LaTeX Warning: Empty bibliography on input line 10.
[1{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map}] (./main.aux)
LaTeX Warning: There were undefined references.
Package biblatex Warning: Please (re)run Biber on the file:
(biblatex) main
(biblatex) and rerun LaTeX afterwards.
What is going on?
pdflatex main, biber main, pdflatex main– Pizzagne Jun 26 '19 at 21:38