Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Automatically extract a bibitem in LaTex

Tags:

latex

I am writing a conference paper in which I am required to use the format \bibitem entries rather than a BibTeX file for the references. Google Scholar support BibTeX. Is there an automatic method or a tool to extract \bibitem?

Example: I have the references in BibTeX format as follow:

 @article{rieck2011similarity,
  title={Similarity measures for sequential data},
  author={Rieck, Konrad},
  journal={Wiley Interdisciplinary Reviews: Data Mining and Knowledge Discovery},
  volume={1},
  number={4},
  pages={296--304},
  year={2011},
  publisher={Wiley Online Library}
}

and I want to convert BibTeX format into the following format (\bibitem):

\bibitem{rieck2011similarity} K.~Rieck, \emph{Similarity measures for sequential data},\hskip 1em plus 0.5em minus 0.4em\relax Wiley Interdisciplinary Reviews: Data Mining and Knowledge Discovery, 2011.
like image 261
Omar14 Avatar asked Apr 20 '16 14:04

Omar14


People also ask

How do you refer to bibitem in LaTeX?

Citing an entry from your references works similar to the label and ref mechanism. The label is the key given to the bibitem , referencing is done by \cite . cite returns the number of our list entry in the list in brackets. An optional argument can be given to add some text within the brackets.

How do I export a citation from BibTeX?

Select the title of the citation that you want. Select the tools hyperlink, then select Export Citation. Next, select the radio button for BibTeX from the Format section.

What is a .BIB file LaTeX?

BibTeX stands for a file format - with file extension of . bib - that contains a bibliography or a list of references. As an external, flat-file database, this BibTex file can be initially created and stored within the Zotero or EndNote software program; Then in order to be used in conjunction with a LaTeX .


1 Answers

Since there is no other answer, this (not exactly automatic) way could be helpful :

  • Create a *.tex file with your bibliography in BibTeX
  • Compile as usual (latex/bibtex/latex)
  • In the directory of the *.tex file, open the *.bbl : all citations are converted in bibitem.
  • Copy/paste in your document

Source : http://newsgroups.derkeiler.com/Archive/Comp/comp.text.tex/2005-10/msg00552.html

like image 79
JReynaud Avatar answered Sep 19 '22 15:09

JReynaud