There are many related questions but I couldn't solve it from them.
Here is a MWE:
\documentclass[11pt]{article}
\usepackage[utf8]{inputenc}
\usepackage[british]{babel}
\usepackage{filecontents}
\begin{filecontents}{test.bib}
@article{Moran05,
author = {T. Moran},
journal = {Sociological Forum},
number = {2},
pages = {209-244},
publisher = {Wiley, Springer},
title = {Text},
volume = {20},
year = {2005}
}
\end{filecontents}
\usepackage[backend=biber]{biblatex}
\bibliography{test}
\begin{document}
\textcite{Moran05}
\printbibliography
\end{document}
I get:
Process started: bibtex.exe "test"
This is BibTeX, Version 0.99d (TeX Live 2016/W32TeX)
The top-level auxiliary file: test.aux
I found no \citation commands---while reading file test.aux
I found no \bibdata command---while reading file test.aux
I found no \bibstyle command---while reading file test.aux
(There were 3 error messages)
Process exited with error(s)
bibtexfor other documents this morning, without any problem. It is just this one that fails. Not clear why. – luchonacho Oct 07 '16 at 12:11bibershould be used.\usepackage[backend=biber]{biblatex}biberis the alternative toBibTeX. – Johannes_B Oct 07 '16 at 12:13