jabref2obsidian.cite.gen_citation_full#
- jabref2obsidian.cite.gen_citation_full(entry: dict)[source]#
Generates a full form citation string from a dictionary of bibtex entry.
Attention
The citation text presented here is only for adding brief literature citations referenced to this note in another Obsidian note, not for formal academic papers.
- Parameters:
entry (dict) –
A a bibtex entry from which the parameters will be extracted. For example:
import bibtexparser bib_path = '/Users/kirov/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/Knowledge.bib' with open(bib_path) as bibtex_file: bib_database = bibtexparser.load(bibtex_file) entry = bib_database.entries[1] gen_citation_full(entry)
- Returns:
A full form citation string generated from the bibtex entry.
- Return type:
str