0

As a test, I've got this most simple .tex file:

\documentclass{article}
\usepackage[backend=biber]{biblatex}
\addbibresource{src.bib}
\begin{document}
Test test test \cite{abc}
\printbibliography
\end{document}

with src.bib:

@article{abc,  
    title={abc},  
    author={def}
} 

yet the result is :

result

The text between square brackets is simple the argument I call in \cite and the output logs a warning:

warning empty bibliography

I assume it doesn't work because of the empty bibliography but I've no idea what I'm doing wrong. The .tex file and the .bib file are in the same directory. My editor is TeXstudio.

This question does also not help and omitting the backend part gives the same result

epR8GaYuh
  • 2,432
  • 1
    Bib you run the normal cycle pdflatex +biber+pdflatex (twice)? – Bernard Apr 04 '20 at 11:48
  • I simply click on the Build & View button in TexStudio – Wouter Vandenputte Apr 04 '20 at 11:53
  • 4
    You need to run Biber on your document, so that the complete sequence is LaTeX, Biber, LaTeX, LaTeX (where LaTeX is your favourite flavour of LaTeX: pdfLaTeX, LuaLaTeX, XeLaTeX). See https://tex.stackexchange.com/q/63852/35864 for background and https://tex.stackexchange.com/q/154751/35864 for help with getting your editor to run Biber for you. – moewe Apr 04 '20 at 11:54
  • Any news here? Did you manage to configure your editor run Biber and produce the desired bibliography and citations? If not, what did you try (how did you configure your editor? how did you try to run Biber?) and how did this not work for you (do you get Biber errors?)? – moewe Apr 07 '20 at 19:17
  • @moewe I had to go to do three clicks after adding a book, paper, .... The first was to build, the second was going to tools, bibliography (f8) and then the third compile again – Wouter Vandenputte Apr 08 '20 at 10:23
  • OK. In that case I think your question is a duplicate of the canonical "you need to run BibTeX/Biber again" question. – moewe Apr 08 '20 at 14:48

0 Answers0