0

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}
}
alpastor
  • 101
  • Please clarify your specific problem or provide additional details to highlight exactly what you need. As it's currently written, it's hard to tell exactly what you're asking. – Community Jun 13 '22 at 20:42
  • Please provide a Minimal Working Example so that people can test your code. Thank you. – Miyase Jun 13 '22 at 20:42
  • 2
    perhaps the cache is broken. Run biber --cache to find its location, delete it and then try again. – Ulrike Fischer Jun 13 '22 at 20:52
  • There are no citation commands in that document. I assume the real one has them? Are you able to create a minimal working example including a minimal bib file that by itself shows the problem? – frabjous Jun 13 '22 at 21:14
  • @frabjous added a citation and a bib file. – alpastor Jun 13 '22 at 22:37
  • \printbibliography[title={References} needs to be \printbibliography[title={References}]. That fixed, it works for me. – frabjous Jun 13 '22 at 22:49
  • @frabjous Sorry... that was a typo on my part. That was already included in the actual file on my computer and is not the cause for my error. – alpastor Jun 13 '22 at 22:51
  • If you get the error even with the minimal sample file posted, then follow Ulrike's advice and clean the cache and delete any other auxiliary files.

    Anything in the .blg file beyond what you posted above?

    – frabjous Jun 13 '22 at 22:58
  • @frabjous deleting the cache did the trick! – alpastor Jun 14 '22 at 00:47
  • @UlrikeFischer that was the fix! If you want, you can write your comment as an answer and I will accept it. – alpastor Jun 14 '22 at 00:47

0 Answers0