I am working on a Latex template and I keep getting the following error:
BibTeX: I didn't find a database entry for ""
At first I though something in my bib had an unexpected empty citation, but there is none. I've also tried to rename the bib file, no luck... any ideas? I've look everywhere and I can't find a solution yet. Any help is appreciated.
This may be caused by duplication of database files in the command
\bibliography{}
.The
bibtex
command will produce the following outputif you write in your
tex
file asSuch an error won't cause any trouble if the duplication appears as the last database file. Unfortunately, if you append another database file after that duplicated one, as suggested by the error message, the new file is ignored so
bibtex
can't find that database entry.So review the error message from
bibtex
and exclude the duplicated database files.I have prepared some
tex
andbib
files for you to reproduce such an error.tex
filefoo.bib
foo2.bib
To compile, use the following commands
To correct the above-mentioned error, change
to