why doesn't this work?
I run this on two different computers!
I saved the file "Ref.bib" in the same ".tx" file directory
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage{biblatex}
\addbibresource{Ref.bib}
\begin{document}
Let's cite! The Einstein's journal paper \cite{faul2009statistical}
\printbibliography
\end{document}
Error messages:
I found no \citation commands---while reading file texstudio_So6416.auxI found no \bibdata command---while reading file texstudio_So6416.aux
I found no \bibstyle command---while reading file texstudio_So6416.aux
biberinstead ofBibTeX. Please see https://en.wikibooks.org/wiki/LaTeX/Bibliographies_with_biblatex_and_biber and https://tex.stackexchange.com/questions/154751/biblatex-with-biber-configuring-my-editor-to-avoid-undefined-citations – Johannes_B Nov 17 '17 at 16:12backend=biberis the default -- it's not mandatory. To use BibTeX as the sorting tool, it's necessary to specifybackend=bibtex. – Mico Nov 19 '17 at 07:05