[Tex/LaTex] LLNCS bibliography problem

lncs

I am using llncs format to write a paper. But I am not getting the references as mentioned in the sample pdf file. All my references as stored in one bib file. Can some one tell me what are exact commands I should use to get llncs reference style.
Thank you.

Best Answer

You need to specify the bibliography style that is to be applied -- the document class llncs doesn't do that for you.

Springer distributes the style file splncs03.bst along with the document class file llncs.cls. Your preamble should therefore contain the following instructions

\documentclass{llncs} 
...
\bibliographystyle{splncs03}
...

Whenever the argument of \bibliographystyle is modified, be sure to run LaTeX, BibTeX, and LaTeX twice more to fully propagate all changes.

Related Question