I start using the Texmaker on my home PC, when I try to run my files I get an error message from this type:
INFO - This is biber 0.9.2
INFO - Logfile is 'bibertest.blg'
FATAL - Cannot find control file 'bibertest.bcf'! - did you pass the "backend=biber" option to BibLaTeX?
Process exited with error(s)
I used this MWE (from a previous post)
%%% Tex File
\documentclass{article}
\usepackage[american]{babel}
\usepackage{csquotes}
\usepackage[backend=biber]{biblatex}
\DeclareLanguageMapping{american}{american-apa}
\addbibresource{NumFactorsTest.bib}
\begin{document}
Some text is here.
\textcite{Akaike1973}
\textcite{Akaike1987}
\printbibliography
\end{document}
%%% BIB file
@InProceedings{Akaike1973,
author = {H. Akaike},
title = {Information theory and an extension of the maximum likelihood principle},
editor = {B. N. Petrov and F. Csaki},
booktitle = {2nd International Symposium on Information Theory},
pages = {267-281},
year = {1973},
location = {Budapest: Akademiai Kiado}
}
@article{Akaike1987,
author = {Akaike},
title = {Factor analysis and AIC},
journal = {Psychometrika},
volume = {52},
number = {3},
pages = {317-332},
year = {1987}
}
.blg file:
[2] Config.pm:324> INFO - This is Biber 2.1
[2] Config.pm:327> INFO - Logfile is 'bibertest.blg'
[232] biber-MSWIN:273> INFO - === %a %b %e, %Y, %H:%M:%S
[597] Utils.pm:162> ERROR - Cannot find control file 'bibertest.bcf'! - did you pass the "backend=biber" option to BibLaTeX?
[598] Biber.pm:110> INFO - ERRORS: 1
.log file (relevant parts):
("C:\Program Files\Miktex 2.9\tex\latex\biblatex\biblatex.sty"
Package: biblatex 2015/04/19 v3.0 programmable bibliographies (PK/JW/AB)
("C:\Program Files\Miktex 2.9\tex\latex\biblatex\biblatex2.sty"
Package: biblatex2 2015/04/19 v3.0 programmable bibliographies (biber) (PK/JW/A
B)
Package biblatex Info: No input encoding detected.
(biblatex) Assuming 'ascii'.
Package biblatex Info: Automatic encoding selection.
(biblatex) Assuming data encoding 'ascii'.
Package biblatex Info: Trying to load bibliographic data...
Package biblatex Info: ... file 'bibertest.bbl' not found.
No file bibertest.bbl.
I check into some potential solutions:
- Update
MikTeXand configuredTexmaker- Biblatex + Biber + Texmaker + MiKTeX
I updated MikTeX and configured Texmaker to use biber as follow
I check for cache folders in temporary files
C:\Users\<username>\AppData\Local\Temp (Windows 7)
but I did not found any cache folder of the type par-<hex_encoded_username>\cache-*.
- Mismatch in files - (Bibliography aux file mismatch (.aux.bcf versus .bcf))
I checked for mismatch between files.
- Control file (.bcf) - Error message when using biber
I also checked other solution to address the issue of not finding the control file, but was not useful.
Are there any additional causes to this bug and which are the alternative solutions I can try? List of most common causes of bugs and solutions could be also a good way to systematize this issue, if this is considered relevant (but I don't know how many more posts I should look to get a solution). Some state-of-art about biber updates and efforts to correct these bugs, if found relevant.
The way I see it there is lot of really good information on tex.stackexchange, but is not gathered, which difficult the task to solve issues with biber and bibliographies in general, which is a important topic for all kind of research.
Note: When I first run the PdfLaTeX before running biber I get a warning message of a busy synctex file. I solve this issue using this answer, but the initial bug remains.

biblatex3.0 now. Other than that it is quite impossible to say what problem you are facing right now: We would need to know relevant parts of the.log(but please not all of it) and the.blgfiles. – moewe Aug 12 '15 at 19:24biblatex. 3) Biber's infamous cache bug – moewe Aug 12 '15 at 19:29synctexissue, your editor/installation might not be correctly set up in the first place. – moewe Aug 12 '15 at 19:32--output-directoryoption to Biber as described in §3.3.1. Control file, p. 30, of the Biber docs:biber --output-directory=build %should do it. – moewe Aug 12 '15 at 19:45synctexproblem was related to spaces between words in the File name directory, so don't seem to be the problem I think. I will check your last comment. – Emanuel Aug 12 '15 at 21:52.log(the parts I considered relevants, but if is needed additional information let me know) and.blgfiles. – Emanuel Aug 14 '15 at 16:14.logfile does not really help, the problem lies with Biber not finding the `.bcf. With your set up, my best guess is Finding LaTex output file, here and the duplicate etc., etc. – moewe Aug 15 '15 at 05:04biblatexpackages (because I already tried reinstall Biber). Afterwards the cache folderpar-<hex_encoded_username>\cache-*was finally created at temporary files (I didn't have it at the beginning) and deleted it. I found that was also using Intermediate Files in Another Folder, so I recommend that at beginning probably is better to use the original output files. It worked in my particular case. Thank you for you help @moewe. – Emanuel Aug 15 '15 at 17:36