I do not understand what happened. I am on TexStudio and usually I would compile, then run Biber, and then recompile and there would be no issue.
Now, it does not work. After I compile and then run Biber I receive these messages
INFO - This is Biber 2.17
INFO - Logfile is '2thesisdraft.blg'
INFO - Reading '2thesisdraft.bcf'
INFO - Found 65 citekeys in bib section 0
INFO - Processing section 0
INFO - Looking for bibtex file 'All.bib' for section 0
INFO - LaTeX decoding ...
INFO - Found BibTeX data source 'All.bib'
Process exited with error(s)
and the log shows says this,
Please (re)run Biber on the file:(biblatex) 2thesisdraft(biblatex) and rerun LaTeX afterwards.
When I rerun Biber, I just get the same messages as above. Anyone know what could be wrong? Here is my code:
\documentclass[12pt]{report}
\renewcommand\bibname{References}
\usepackage[backend=biber,
style=alphabetic,
hyperref=true,
backref=true,
natbib=true,
sorting=nyt,
abbreviate=true]{biblatex}
\AtEveryBibitem{% Clean up the bibtex rather than editing it
\clearfield{doi}
\clearfield{url}
\clearfield{issn}
\clearlist{location}
\clearfield{month}
\clearfield{series}
\ifentrytype{book}{}{% Remove publisher and editor except for books
\clearlist{publisher}
\clearname{editor}
}
}
\addbibresource{All.bib}
\begin{document}
\cite{bonder.groisman:09:global}
\addcontentsline{toc}{chapter}{References}
\printbibliography[title={References}]
\end{document}
Here is a minimal All.bib file:
@Article{bonder.groisman:09:global,
author = {Bonder, F. and Groisman, P.},
title = {Space time white noise eliminates and global solutions in reaction diffusion equations},
journal = {Physica D},
year = {2009},
number = {238},
pages = {209--215}
}
biber --cacheto find its location, delete it and then try again. – Ulrike Fischer Jun 13 '22 at 20:52\printbibliography[title={References}needs to be\printbibliography[title={References}]. That fixed, it works for me. – frabjous Jun 13 '22 at 22:49Anything in the .blg file beyond what you posted above?
– frabjous Jun 13 '22 at 22:58