BibTeX, biblatex and biberMissing References in the Bibliography

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
azizever83
Posts: 41
Joined: Sun Apr 08, 2012 4:31 pm

Missing References in the Bibliography

Post by azizever83 »

Hello,

I got a problem with the output of my file's references. Some of them don't appear in the list this is what I have done. For the bib file I have this.

Code: Select all

@article{bhardwaj2010approach,
  title={An Approach for Investigating Perspective of Cloud Software-as-a-Service (SaaS)},
  author={Bhardwaj, S. and Jain, L. and Jain, S.},
  journal={International Journal of Computer Applications IJCA},
  volume={10},
  number={2},
  pages={24--28},
  year={2010},
  publisher={Foundation of Computer Science FCS}
}
@inproceedings{wu2010recent,
  title={Recent Advances in Cloud Storage},
  author={Wu, J. and Zhang, J. and Lin, Z. and Ju, J.},
  booktitle={Proceedings of the Third International Symposium on Computer Science and Computational Technology (ISCSCT’10)},
  pages={14--15},
  year={2010}
}
@article{liu2012research,
  title={Research on Cloud Data Storage Technology and Its Architecture Implementation},
  author={Liu, K. and Dong, L.},
  journal={Procedia Engineering},
  volume={29},
  pages={133--137},
  year={2012},
  publisher={Elsevier}
}

@article{peng2011building,
  title={Building a Cloud Storage Service System},
  author={Peng, C. and Jiang, Z.},
  journal={Procedia Environmental Sciences},
  volume={10},
  pages={691--696},
  year={2011},
  publisher={Elsevier}
}

For the reference list I have

Code: Select all

\documentstyle{amsart}
\begin{document}
\nocite{*}
\bibliographystyle{plain-annote} 
\bibliography{CloudStorage}
\end{document}
The output is :

Code: Select all

[1] S. Bhardwaj, L. Jain, and S. Jain. An approach for investigating perspective of cloud software-as-a-service (saas). International Journal of Computer Applications IJCA, 10(2):24{28, 2010.
[2] K. Liu and L. Dong. Research on cloud data storage technology and its architecture imple-mentation. Procedia Engineering, 29:133{137, 2012.
[3] J. Wu, J. Zhang, Z. Lin, and J. Ju. Recent advances in cloud storage. In Proceedings of the
Third International Symposium on Computer Science and Computational Technology (ISC-SCT10), pages 14{15, 2010.
There should be four references, not only three. Also one more question is how can I cite a website and white paper?

Thanks

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Re: Missing References in the Bibliography

Post by localghost »

Any hints in the BibTeX log file (*.blg)?


Thorsten
azizever83
Posts: 41
Joined: Sun Apr 08, 2012 4:31 pm

Missing References in the Bibliography

Post by azizever83 »

Hi Localhost,
here is the code oh the .aux file

Code: Select all

This is BibTeX, Version 0.99dThe top-level auxiliary file: storagebiblist.aux
I couldn't open style file plain-annote.bst
---line 3 of file storagebiblist.aux
 : \bibstyle{plain-annote
 :                       }
I'm skipping whatever remains of this command
I found no style file---while reading file storagebiblist.aux
(There were 2 error messages)
User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Missing References in the Bibliography

Post by localghost »

Some remarks about your example.
Besides that I have no problem with getting a complete list of references.
Post Reply