[Tex/LaTex] Using BibTeX for bibliography

bibtex

I created a BibTex database for the references for my document. The abc.bib which resides in the same directory as .tex file resides.

     @conference{ref1,
     author  = {Chris H. Q. Ding and Xiaofeng He and Hangyuan Zha},
     title   = {A spectral method to separate disconnected and nearly-disconnected web graph componenets},
     booktitle = {KDD},
     year    = 2001
     }

and i have embedded following code in the .tex file.

    \bibliographystyle{plane}
    \bibliography{abc}
    \end{document}

I am using kile to compile and run the command Build->quickBuild and i get the following error. Moreover i don't get any citation in my report. Instead i see inverted ?.What can be the reason for it?

[EDIT]

One thing i forget to mentioned here is , i am getting following error message:

 [BibTex]thesis.aur => thesis.bbl(bibtex)
 [BibTex] finished with exit code 2

and the package inclusion is :

\documentclass{report}
\usepackage[english]{babel}
\usepackage{amsmath}
\usepackage{algorithmic}
\usepackage{algorithm}
\usepackage[all]{xy}

Best Answer

I think you have a typo. It should be \bibliographystyle{plain} not plane.

Related Question