I am using TeXnicCenter on Win 7. I have downloaded llncs2e.zip from http://www.springer.com/computer/lncs/l ... 0209-0-0-0
I created a new project and checked the option uses BibTeX. After unzipping the contents of llncs2e folder, I copied all files under my project folder, and followed these steps:
1. in my main file, I have:
Code: Select all
\documentclass{llncs}
\title{MyTitle}
\author{MyName}
\institute{MyUniversity}
\maketitle
\begin{document}
First Ref \cite{S:2009}
\bibliographystyle{splncs}
\bibliography{MyBibFile}
\end{document}
Code: Select all
@ARTICLE{S:2009,
author = "Author",
title = "{Title}",
journal = "IEEE",
month = "May",
year = "2009",
volume = "21",
number = "3",
pages = "96--101"
}
missing \begin{document}
and couldn't find input index file "my project path" nor "myprojectName".idx
Could you please help me? I am so confused.
Thanks you