I have found answers to similar questions but none solved my problem. I am not able to get references in a document produced by elsarticle.
For example I fail getting the references when doing as in the following question. elsarticle and natbib problem
But when running BibTeX I get the error message: ERROR - Cannot find control file 'documentname.bcf'! - did you pass the "backend=biber" option to BibLaTeX? INFO - ERRORS: 1
I have the same problem when running the template provided by Elsevier.
biblatexbut that is not listed elsewhere in your question. And if you are usingbiblatexyou should not also be usingnatbib. Additionally, if this is going to be sent to Elsevier, I'd double check ifbiblatexis something they support. – daleif Aug 20 '20 at 12:56elsarticledocument class loads thenatbibpackage automatically.natbibis not compatible withbiblatex, though. By implication, theelsarticledocument class is not compatible withbiblatex. Does your document preamble maybe contain an instruction such as\usepackage{biblatex}? – Mico Aug 20 '20 at 13:24natbibyou need to run BibTeX instead of Biber. The error message you quote is from Biber and not from BibTeX. Presumably you need to tell your editor to run BibTeX instead of Biber, sort of https://tex.stackexchange.com/q/154751/35864 in reverse. – moewe Aug 20 '20 at 15:25nonatbiboption(\documentclass[nonatbib]{elsarticle})should help to skip loadingnatbibpackage. – Sunilkumar KS Aug 21 '20 at 07:59