I am trying to compile correctly a text that relies on an external .bib file using bibtex-chicago on a Windows machine through TeXstudio. I get bold bibliography labels instead of the references. I get, for example banfield1967moral as a output.
MWE:
\documentclass[12pt]{article}\usepackage[]{graphicx}
\usepackage[american]{babel}
\usepackage[autostyle]{csquotes}
\usepackage[authordate, backend=biber, bibencoding=utf8, natbib, isbn=false,safeinputenc]{biblatex-chicago}
\bibliography{BIBLIO}
\begin{document}
\cite{banfield1967moral}
\printbibliography
\newpage
\end{document}
BIBLIO.bib:
@article{banfield1967moral,
title={The moral basis of a backward society},
author={Banfield, Edward C.},
year={1967},
publisher={Free Press}
}
and TEX_FILE.tex are in the same folder. The default bibliography tool is Biber and
To compile I call txs:///latex | txs:///biber | txs:///latex | txs:///latex.
The .blg file is not created.
The .log file suggest no .bbl file can be created and finds this additional error:
("C:\Users\...\MiKTeX 2.9\tex\latex\biblatex\blx-dm.def" File: blx-dm.def 2018/03/04 v3.11 biblatex localization (PK/MW))
Package biblatex Info: Trying to load biblatex style data model...
Package biblatex Info: ... file 'chicago-authordate.dbx' not found.
Package biblatex Info: Trying to load biblatex custom data model...
Package biblatex Info: ... file 'biblatex-dm.cfg' not found.
Whilst compiling i get in the 'Messages' section:
Process started: biber.exe "document"
Error unlinking file C:\Windows\TEMP\bkLU5r9bip using unlink0 at C:\Windows\TEMP\par-4361737469676c696f6e69\cache-9d6b46fefde4bd584f892f8159e8daefd64788a3\inc\lib/IPC/Run3.pm line 128.
Process exited with error(s)
On TeXstudio I compile with "Bild and View" (double green arrow); it calls LaTeX, Bieber, and LaTex in the order.

\documentclass{...}and ending with\end{document}. – DG' Sep 28 '18 at 13:13\addbibresource{BIB_FILE.bib}instead of\bibliography{BIB_FILE}. You could follow the instructions here to check, if your editor is configured properly: https://tex.stackexchange.com/questions/154751/biblatex-with-biber-configuring-my-editor-to-avoid-undefined-citations/154754#154754 – DG' Sep 28 '18 at 13:18.logfile (produced by LaTeX) and a.blgfile (produced by Biber, on Windows machines that file may be classified as a 'performance monitor file' that is misleading, it is a normal text file you can open with your favourite text editor). Those files should tell you about warnings or errors. What do they say? Double check your configuration with https://tex.stackexchange.com/q/154751/35864, post a complete MWE and an excerpt of the.logand.blgfile. – moewe Sep 28 '18 at 13:19titlefield, since titles are not usually styled with a sentence end marker in papers or on book covers and letbiblatex-chicagodecide whether or not to place a full stop or a comma; on the other hand I would suggest to add a.to theauthorfield to mark theC.as an initial). Since the code is OK we need to know what LaTeX and Biber complain about: Please show us the relevant parts of the.logand the full.blgfile. See also https://tex.stackexchange.com/q/286706/35864 – moewe Sep 29 '18 at 11:01.blgfile. It should tell us why no.bblcould be produced. edit: The quoted messages are entirely non-critical and do not even show that a.bblwas not found. – moewe Sep 29 '18 at 11:58.bblnor a.blgthere are two possibilities: (1) Biber was not actually run. (2) Biber was started but aborted with an unexpected error so early that it even failed to write a.blgerror log. I'm not saying (2) is impossible, but I have reasons to believe that it would be incredibly rare. Can you run Biber from the command line? What doesbiber --versionreport? – moewe Sep 29 '18 at 12:06biblatexversion. All this strongly suggests that your editor does not call Biber correctly. Double check your settings with https://tex.stackexchange.com/q/154751/35864. Can you post a screenshot of your configurations? How exactly do you compile your document? (I.e. what buttons do you press? And what actions are set up for those buttons?) – moewe Sep 29 '18 at 12:13pdflatex mydoc,biber mydoc,pdflatex mydoc,pdflatex mydoc(assuming your test document is calledmydoc.tex)? – moewe Sep 29 '18 at 12:30bibermydoci get the following error:Error unlinking file C:\Windows\TEMP\7uBwmyXN2b using unlink0 at C:\Windows\TEMP\par-4361737469676c696f6e69\cache-9d6b46fefde4bd584f892f8159e8daefd64788a3\inc\lib/IPC/Run3.pm line 128.
Running all the sequence I arrive at the same result as if compiling through TeXstudio.
– MCS Sep 29 '18 at 12:38C:\Windows\TEMP. This seems to suggest that your Biber cache is located inC:\Windows\TEMP, on my machine that would be inC:\Users\<User>\AppData\Local\Temp. I suspect that you have no write permission inC:\Windows\TEMPwhen you run Biber as a normal user and not as an administrator. I suggest you remove the directoryC:\Windows\TEMP\par-4361737469676c696f6e69(probably as administrator) and then runbiber --versionagain (make sure you run Biber not as administrator, you must be a user) – moewe Sep 29 '18 at 12:46setin your command line what are the values ofTMPandTEMP. (You can also typeset TMPandset TEMPdirectly to only query those variables.) – moewe Sep 29 '18 at 12:54TMPvariable settings are odd. They should point to a directory that is actually writable by a normal non-admin process. Have a look at https://github.com/plk/biber/issues/70. Is the Windows machine your PC or is it a work machine where you only have restricted access? I'm sorry I have to go now, but I will be back later and see what I can do. – moewe Sep 29 '18 at 13:03