Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

LaTeX and Bibtex: command to print a single full reference from a bib file?

I'd like to be able to print a single reference from a Bibtex .bib file anywhere in my LaTeX document—not cite it, but print the reference, exactly as it would appear in the normal bibliography listing.

So if this is a regular citation, that prints a bracketed reference:

% Normal citation, appears as bracketed reference, e.g. [2] \cite{Kawahara:2007p1116} 

I want something like the following:

\print_citation{Kawahara:2007p1116} 

which should print the full citation as it appears in the bibliography, something like:

[2] S Kawahara. Half rhymes in japanese rap lyrics and knowledge of similarity. Journal of East Asian Linguistics, Jan 2007.

Is it possible?

like image 701
mrjf Avatar asked Oct 22 '10 06:10

mrjf


People also ask

How do I get BibTeX references?

To download BibTeX citation go to Google Scholar and search for a publication. Through the cite button below a search result Google provides formatted citations for MLA, APA, and Chicago styles. Now click the link “Import into BibTeX” at the bottom of the window to copy and paste the BibTeX citation.

How do you reference BibTeX in LaTeX?

BibTeX references are stored in a plain text database with a simple format. When you want to cite an item in the database in a LaTeX document, you write \cite{<label>} (or something similar), where <label> is the label attached to the item in the database.

How do you convert BibTeX to bibliography?

Follow these easy steps to convert a BibTeX file into MLA citations with the BibTeX format converter: Click the Choose BibTeX file button above, drag and drop a file into the drop zone or copy and paste the content of your BibTeX file into the area above. Select the desired output format (MLA). Click Convert.


2 Answers

Use \fullcite with the biblatex package as mentioned in this answer on tex.stackexchange.

like image 86
Gareth Avatar answered Sep 28 '22 09:09

Gareth


bibentry package would provide inline bibliography. Ref: http://stefaanlippens.net/bibentry.

I've not tried it out myself though.

like image 25
kuriouskat Avatar answered Sep 28 '22 09:09

kuriouskat