I am switching an existing file on Overleaf from BibTeX to BibLaTeX. I have .bib files in the folder with the file (imported from JabRef) which worked just fine with BibTeX. For some reason, BibLaTeX is not loading them; in other words, it does not recognize any of the bibtex keys cited in the text. My format is:
\addbibresource{filename1.bib,filename2.bib}
Anyone know why this isn't working? I have found people talking about stuff like biber, which I don't really understand. And I can't see how to do that kind of thing in Overleaf. I tried adding [backend=biber] to the package line but that didn't change anything.
Thank you!
P.S. I am switching because I would like to have abbreviated reference lists as described here: Abbreviating number ranges in BibLaTeX
UPDATE:
Following @DavidCarlisle's point, I now have the format:
\addbibresource{filename1.bib}
\addbibresource{filename2.bib}
Surprisingly, the bibtex keys in the text are still not recognized. The error message reads, "Package biblatex Warning: Please (re)run Biber on the file: output and rerun LaTeX afterwards."
I thought I would provide this update, but moewe has kindly helped me solve my end goal (mentioned as P.S. above) in a different way: Abbreviating number ranges in BibTeX
\addbibresource. – Bernard May 25 '21 at 20:54\addbibresource, the command accepts only one.bibfile name. You can use multiple.bibfiles if you call\addbibresourcemultiple times, though:\addbibresource{filename1.bib}\addbibresource{filename2.bib}should work just fine. You mention additional errors that you get, but those can't be diagnosed without more detail. ... – moewe May 26 '21 at 06:11BibTeX: output.bcf is malformederrors usually happen if there is a bad error during the LaTeX run that stops compilation before the end of the document. In that case LaTeX should report errors that you should fix. For more helpful hints we'd need to see an example document that reproduces the issue with as little code as possible: https://tex.meta.stackexchange.com/q/228/35864 – moewe May 26 '21 at 06:12\addbibresourcefor multiple files as that is the part of the question that is answerable and appeared to be the main focus of the initial question. The follow-up problems are not easy to diagnose without more details and since the OP found a different solution it is unlikely that it would be investigated further. – moewe May 31 '21 at 06:41