2-cent tip: BibTex to bibitem format
by Amit
I learnt this tip from:
- http://fundamentalthinking.blogspot.com/2009/12/convert-bibtex-entries-to-bibitem-in.html, who learnt it from:
- http://newsgroups.derkeiler.com/Archive/Comp/comp.text.tex/2005-10/msg00552.html
Just putting it up here on my space, so as to replicate this awesomely useful tip so that I can quickly refer here when I need it and also for Google-fu to find it so that it may save some time for you, reader:
Steps:
Create a refs.bib file with all the BibTex entries, which are easily available from Google Scholar or similar
Create a “dummy” .tex file with the following entries:
\documentclass{article} \begin{document} \nocite{*} \bibliography{refs} \bibliographystyle{plain} \end{document}
Now, do the following:
$ latex dummy $ bibtex dummy $ bibtex dummy $ latex dummy
You will see a dummy.bbl file containing all your BibTex entries in \bibitem format.
Peace.
Thanks, it really saved my time :)