Tell me more ×
Academia Stack Exchange is a question and answer site for academics and those enrolled in higher education. It's 100% free, no registration required.

Is there some automatic way to single out the books in bibliography of a paper in IEEE format?

For example, write some program or use some functionality of some editors to find out the books mentioned in this paper with 303 references in its bibliography?

share|improve this question
4  
Try brute force. Sit down by hand and examine each one. The last 100 seemed to be journal papers. I gave up then. – Dave Clarke Jun 28 '12 at 18:35
Write some code that starts with that paper on the ISI website and then crawls each reference link to determine the type. Probably ~ 20 to 50 lines of code in Python, would be a good exercise... – mankoff Jun 29 '12 at 2:46
@mankoff: Thanks! (1) What is "ISI website"? (2) I am not familiar with Python and how to parse the text yet. – Tim Jun 29 '12 at 2:52
4  
I agree with Dave Clarke; just do it. It should take you about half a second per reference to identify the books, which is less than three minutes total. – JeffE Jun 29 '12 at 3:08
ISI is the old name for Web Of Science. – mankoff Jun 29 '12 at 10:22
show 1 more comment

1 Answer

It's a partial answer, since it's not really automatic, but since this paper seems to have been done with Latex, you could probably ask the authors for their bibtex file, and then using a reference manager such as Bibdesk, Mendeley, Zotero, Papers, etc, you should be able to sort them by category, and therefore isolate all the books.

share|improve this answer
Thanks! I noticed that you mentioned it was a partial answer. Still (1) Are authors always willing to give their bibtex files? I guess it may also not be realistic to me to contact everyone If I have such need for not just a paper. (2) What if there is just the pdf file available? – Tim Jun 28 '12 at 15:59
(1) I don't see why not, at least, I wouldn't mind sending it. You would also need the bbl or the aux of the paper, in order to know which paper are cited from their bib file. But yes, if you have to do it for many papers you want the references from, it might be a tedious to contact all the authors. (2) In that case, I don't know, but that doesn't mean there is no solution :) – Charles Morisset Jun 28 '12 at 16:16
3  
Or "grep @book". – JeffE Jun 29 '12 at 3:09

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.