I experience weird bibtex behaviour, I think it does not run properly.
Symptoms:
No file main.aux.
No file main.bbl.
LaTeX Warning: Citation 'key' on page 1 undefined on input line 17.
Consider this minimal working example from an accepted answer.
\documentclass{article}
\usepackage[style=authoryear-comp]{biblatex}
\addbibresource{\jobname.bib}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@book{key,
author = {Author, A.},
year = {2001},
title = {Title},
publisher = {Publisher},
}
\end{filecontents}
\begin{document}
\cite{key}
\printbibliography
\end{document}
How to reproduce:
- install MikTex Docker environment;
- run the environment against the above file;
- above error appears.
UPD "installing biber" means, manual installation of the package! Neither MPM nor apt-get help here.
biber file? – Ulrike Fischer Feb 23 '18 at 11:56