Well
that you could have just posted in a code box. Here is the entire file:
Code: Select all
This is BibTeX, Version 0.99d
The top-level auxiliary file: Initial search report.aux
The style file: plain.bst
Database file #1: Articles.bib
I was expecting a `,' or a `}'---line 16 of file Articles.bib
:
: author = {T.J.Craft, A.V.Gerasimov, B.E.Launder, C.M.E.Robinson},
(Error may have been on previous line)
I'm skipping whatever remains of this entry
Warning--to sort, need author or key in craft06
Warning--empty author in craft06
Warning--empty title in craft06
Warning--empty journal in craft06
Warning--empty year in craft06
(There was 1 error message)
There's an error in craft06 entry of your bib file. The error is probably in the line right above the author line, e.g., a missing comma at the end. I guess the first thing to do would be to fix that and see if it helps.
It might not. But just to be clear, do you
always get this problem, even with a truly minimal document, such as:
Code: Select all
\documentclass{article}
\begin{document}
Let us cite \cite{frohlich08}.
\bibliographystyle{plain}
\bibliography{sample}
\end{document}
With sample.bib consisting only of a single entry, e.g.:
Code: Select all
@Article{frohlich08,
author = {Jochen Frohlich, Dominic von Terzi},
title = {Hybrid LES/RANS methods for the simulation of turbulent flows},
journal = {Progress in Aerospace Sciences},
year = {2008}
}