I am trying to create my own BibTeX file and use it in my TeX file. I am using Texmaker as the editor.
This is the content of my BibTeX file as of for now:
@ARTICLE{introtobiorec,
author = {Anil K. Jain and Arun Ross and Salil Prabhakar},
title = {An introduction to biometric recognition},
journal = {IEEE Trans. on Circuits and Systems for Video Technology},
year = {2004},
volume = {14},
pages = {4--20}
}
I have included
\usepackage{cite}
I also tried using
\usepackage{natbib}
I include the BibTeX file (MyBibFile.bib) as follows:
\bibliographystyle{style}
\bibliography{MyBibFile}
It does not really throw any error but it does not work.
Any help would be appreciated.