Automatically extract a bibitem (not BibTeX!) from MathSciNet? - MathOverflow most recent 30 from http://mathoverflow.net2013-05-24T05:44:45Zhttp://mathoverflow.net/feeds/question/28435http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://mathoverflow.net/questions/28435/automatically-extract-a-bibitem-not-bibtex-from-mathscinetAutomatically extract a bibitem (not BibTeX!) from MathSciNet?Andreas Holmstrom2010-06-16T21:38:20Z2010-06-16T22:34:33Z
<p>I am writing a small thing in which I am required to use manually formatted \bibitem entries rather than a BibTeX file. This takes a lot of time, and I probably get some of the formatting wrong. Is there a way of producing such entries automatically, for example from MathSciNet or from the BibTeX items created by MathSciNet? For arXiv preprints, there is a great tool from the Courant Research Centre (<a href="http://www.crcg.de/arXivToBibTeX/" rel="nofollow">here</a>) which can produce BibTeX as well as bibitem entries, and there should be something similar for MathSciNet.</p>
http://mathoverflow.net/questions/28435/automatically-extract-a-bibitem-not-bibtex-from-mathscinet/28439#28439Answer by Matthew Morrow for Automatically extract a bibitem (not BibTeX!) from MathSciNet?Matthew Morrow2010-06-16T22:19:39Z2010-06-16T22:19:39Z<p>Hi Andreas. When you run BibTeX on a .bib file then it produces a .bbl file which more-or-less contains your bibliography in \bibitem format. So I recommend exporting everything BibTex style from MathSciNet, creating a .bib file, running BibTeX, and then making any remaining changes to the resulting .bbl file (which you can then just copy and paste into your .tex file).</p>
<p>I suppose some people even know how to write BibTeX style files, so that the resulting .bbl file contains <em>exactly</em> the formatting you want.</p>
<p>Despite my advice, when I need \bibitem bibliographies, I usually just copy citations from the MathSciNet clipboard (in Ascii format) and manually insert the additional formatting. I'm not sure if this is more, or less, lazy than the .bbl business...</p>
http://mathoverflow.net/questions/28435/automatically-extract-a-bibitem-not-bibtex-from-mathscinet/28441#28441Answer by Willie Wong for Automatically extract a bibitem (not BibTeX!) from MathSciNet?Willie Wong2010-06-16T22:34:33Z2010-06-16T22:34:33Z<p>You have several choices:</p>
<ul>
<li>Let BibTex do the formatting (as already described by Jose and Matthew).</li>
<li>Roll your own filter using something like Perl's Text::BibTeX class. </li>
<li>Count on MathSciNet's rather standardized BibTex entries and just roll a quick and dirty awk/sed script to extract the info.</li>
<li>...</li>
</ul>
<p>I would just go with the first. (I am assuming you don't use any bibliography management software like Zotero or JabRef; most often they have output filters for precisely this kind of stuff.) If you are good with programming, the second can be a handy tool to write and have around. The third is for if you are in a hurry and are at a computer where no TeX distribution is installed. </p>