BibTeX, biblatex and biber ⇒ Convert Bibliography Item to BibTeX Format
Convert Bibliography Item to BibTeX Format
I'd like to know if there is some tool (script/program/package/whatever) to convert a raw bibliography in LaTeX (with \bibitem entries) to a more usable BibTeX format?
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
-
- Posts: 707
- Joined: Tue Mar 25, 2008 5:02 pm
Convert Bibliography Item to BibTeX Format
2. Smith, H. Francis. The Worst Ever. J. Stupid Sayings 36 (1-2): 1-8 (2013).
This could, to a computer, be interpreted in the following two ways:
Code: Select all
author = "Smith, H. Francis",
title = "The Worst Ever",
journal = "J. Stupid Sayings",
volume = 36,
number = "1--2",
pages = "1--8",
year = 2013
Code: Select all
author = "Smith, H.",
title = "Francis",
journal = "The Worst Ever. J. Stupid Sayings",
volume = 36,
number = "1--2",
pages = "1--8",
year = 2013
You are well-advised to edit them manually. I know it takes a long time, but you're going to have to edit them anyway to make sure the computer didn't do something like the above, so you won't lose that much time. For a very simple bibliography (e.g., a properly formatted bibliography with consistent information presented about every entry and all entries of the same type, such as article), you might be able to write a script to do most of the work for you. However, even the "automatic" export programs such as those found on Web of Science do a pretty mediocre job of exporting BibTeX entries---the journal names are often in all caps, for example, forcing you to edit them and change the case.