Bibtex : How to add nocite entriess
You may want to add in your bibliography with cited and no cited entries in your thesis. It is really easy. When you want to include , use \cite{EntryName} and when you want don’t want to include , use \nocite{EntryName} somewhere. I add \nocite{EntryName} just before at the end of document. In this style \bibliographystyle{plain} , the BibTex entries will arrange with Author Name in descending order.
For more information , please see these links.
http://www.astro.psu.edu/users/stark/research/psuthesis/bibs.html
http://www.dcs.gla.ac.uk/~drg/courses/RMT/materials/bibsample.pdf
\nocite{STAWBERRY}
\nocite{ORANGE}
\bibliographystyle{plain}
\bibliography{REF}
\end{document}
Leave a Comment