I have a LaTeX file in lncs format named say paper.latex.
\documentclass[runningheads]{llncs}
...
\begin{document}
....
\bibliography{paper}
\end{document}
I have a separate paper.bib file.
But references not working.
But if I change it to
\begin{thebibliography}{}
...
\end{thebibliography}
in place of \bibliography{paper} giving references in .tex file itself, there is no problem.
Why this happens and how can I move forward with .bib file?
bibtexto generate the references and then run latex again to include them? – David Carlisle Jan 20 '15 at 11:58\citecommands in your document? the bbl will be empty if you do not (if ypu provided an example, wouldn't need to ask...) – David Carlisle Jan 20 '15 at 13:16