How can I tell LaTeX that it should use an existing bbl file foo.bbl, say, without running bibtex?
Asked
Active
Viewed 3.8k times
22
Marco Daniel
- 95,681
lpdbw
- 8,330
2 Answers
30
OK, I see, just use \input{foo.bbl}. The bbl file just contains the bibitems and thus can be included like any other content.
lpdbw
- 8,330
11
LaTeX attempts to read a .bbl file when you use the \bibliography command. If the file does not exist, you get an empty bibliography. LaTeX doesn't 'know' if you run BibTeX, it only knows if a .bbl file exists. (You can make a .bbl file by hand, and it will work.)
Joseph Wright
- 259,911
- 34
- 706
- 1,036
-
Yes that's exactly what I meant. I have a
.bblfile (created "somehow", let's say) and I want LaTeX to use it without biblatex coming into play. – lpdbw Feb 24 '13 at 17:16 -
Some systems (e.g. LaTeXtools for Sublime Text) automatically run
pdflatex,bibtexandpdflatexagain during a 'Build', so note that in this answer the idea is to NOT runbibtexas this creates a new .bbl file. This means any\bibliography{foo}will be ignored. If nothing else, you can use the CLI to just runpdflatexonce, if your editor of choice runsbiblatexby default. The good thing about this approach is that the source .tex file does not need to be modified. – BrechtDeMan Jul 14 '16 at 13:18
\InputIfFileExists{foo.bbl}? – yo' Feb 25 '13 at 22:21