Caspar wrote:
If I run pdflatex manually I get same problem. here is the log file. Does this mean anything to anyone? Help much appreciated.

Caspar

+++++++
+++++++

This is pdfeTeX, Version 3.141592-1.20a-2.2 (Web2C 7.5.3) (format=pdflatex 2004.11.25) 16 DEC 2004 23:55
entering extended mode
**ModelingInfantVision.tex
(./ModelingInfantVision.tex
[snip]
No file ModelingInfantVision.aux.
\openout1 = `ModelingInfantVision.aux'.
[snip]

No file ModelingInfantVision.bbl.

Package natbib Warning: There were undefined citations.

[2] (./ModelingInfantVision.aux) )

The file you are compiling is apparently named ModelingInfantVision.tex. On the first pass, LaTeX should create a file named ModelingInfantVision.aux, which is then input to BiBTeX. BiBTeX should create an output file named ModelingInfantVision.bbl, which is read by LaTeX on its second invocation. According to the log, LaTeX apparently did not create the .aux file, and then (unsurprisingly) failed to find the .bbl file.


However, the output you have is normal for the *first* run of pdflatex. It's not clear whether the log file you gave was for the first or final run of pdflatex.

The correct sequence (manually) would be as follows:

pdflatex ./ModelingInfantVision.tex
bibtex ./ModelingInfantVision
pdflatex ./ModelingInfantVision.tex
pdflatex ./ModelingInfantVision.tex

(I'm not positive that the third invocation of pdflatex is required, but I think it is, and it can't hurt in any case.) Before running BiBTeX, the .aux file should exist. After running BiBTeX, the .bbl file should also exist. Do they? Or was that the log of the third call to pdflatex?

-- Paul



Reply via email to