Tell me more ×
TeX - LaTeX Stack Exchange is a question and answer site for users of TeX, LaTeX, ConTeXt, and related typesetting systems. It's 100% free, no registration required.

I have a problem where citations are correctly displayed on one machine (OSX 10.5) but fail on another machine (Ubuntu 10.04).

citation generated

citation failed

Basically I have a set of .tex files and a .bib file and run the following commands to produce a PDF file:

pdflatex main  # there's main.tex
biber main
pdflatex main
pdflatex main

Comparing logs from the two machines, it seems .bbl file is not created on the machine that failed to produce proper citation.

Package biblatex Info: ... file 'main.bbl' not found.
No file main.bbl.

Should biber produce the bbl file? How should I go about troubleshooting why this process doesn't work on Ubuntu?

share|improve this question
1  
Are you telling biblatex to use Biber (with \usepackage[backend=biber]{biblatex}? If so, you should get a .blg file containing any errors/warnings, once you've run Biber. By the way, with biblatex you only normally need to run pdflatex once after running Biber. – Joseph Wright Apr 18 '12 at 6:34
1  
Try running manually biber. Its installation can get corrupted, but in this case the shell message should be clear about it. – egreg Apr 18 '12 at 6:44
Yes, biber creates the .bbl so see what biber says when you run it – PLK Apr 18 '12 at 18:02
Good to know about running pdflatex just once after biber. @JosephWright – Grnbeagle Apr 18 '12 at 18:45
Yes, @egreg and PLK running biber alone helped troubleshoot the issue. Thanks for the suggestion! – Grnbeagle Apr 18 '12 at 18:48

closed as too localized by Werner, Stefan Kottwitz Apr 18 '12 at 20:00

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

This was due to a data issue in .bib file-- as @egreg suggested, running biber by itself helped track down the problem. (not quite sure why the problem didn't appear in OSX) Thanks for your suggestions!

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.