|
Limbo 3.5.4
|
convert bibtex format of references to jemdoc and latex formats More...
Functions | |
| read (filenames, commentPrefix) | |
| read bibtex files with bibtexparser | |
| getDatetime (entry) | |
| extract date time from entry | |
| getAddressAndDate (entry) | |
| extract address and date time from entry | |
| switchToFirstLastNameStyle (author) | |
| switch from [last name, first name] to [first name last name] | |
| printBibDB (bibDB, highlightAuthors, suffix) | |
| print bibtex database with target format | |
| printWeb (bibDB, stringMap, highlightAuthors, entries, publishType, booktitleKey) | |
| print in Jemdoc format | |
| printCV (bibDB, stringMap, highlightAuthors, entries, publishType, booktitleKey) | |
| print in Latex format | |
| printHelp () | |
| print help message | |
Variables | |
| suffix = None | |
| target format | |
| list | highlightAuthors = [] |
| list of authors for highlight | |
| list | filenames = [] |
| list of bibtex files | |
| bibDB = read(filenames, "%") | |
| bibtex database | |
convert bibtex format of references to jemdoc and latex formats
!/bin/python
| getAddressAndDate | ( | entry | ) |
extract address and date time from entry
| entry | bibentry |
Definition at line 51 of file bibconvert.py.
| getDatetime | ( | entry | ) |
extract date time from entry
| entry | bibentry |
Definition at line 37 of file bibconvert.py.
| printBibDB | ( | bibDB, | |
| highlightAuthors, | |||
| suffix ) |
print bibtex database with target format
| bibDB | bibtex database |
| highlightAuthors | authors need to be highlighted |
| suffix | target format |
Definition at line 89 of file bibconvert.py.
| printCV | ( | bibDB, | |
| stringMap, | |||
| highlightAuthors, | |||
| entries, | |||
| publishType, | |||
| booktitleKey ) |
print in Latex format
| bibDB | bibtex database |
| stringMap | strings defined in bibtex database, which will be used to replace some references |
| highlightAuthors | authors to be highlighed |
| entries | list of bibentry to be printed |
| publishType | type of publications |
| booktitleKey | the keyword of entries need to search in the stringMap |
Definition at line 180 of file bibconvert.py.
| printHelp | ( | ) |
print help message
Definition at line 231 of file bibconvert.py.
| printWeb | ( | bibDB, | |
| stringMap, | |||
| highlightAuthors, | |||
| entries, | |||
| publishType, | |||
| booktitleKey ) |
print in Jemdoc format
| bibDB | bibtex database |
| stringMap | strings defined in bibtex database, which will be used to replace some references |
| highlightAuthors | authors to be highlighed |
| entries | list of bibentry to be printed |
| publishType | type of publications |
| booktitleKey | the keyword of entries need to search in the stringMap |
Definition at line 137 of file bibconvert.py.
| read | ( | filenames, | |
| commentPrefix ) |
read bibtex files with bibtexparser
| filenames | array of bibtex files |
| commentPrefix | take lines starting with specific charactors as comment |
Definition at line 19 of file bibconvert.py.
| switchToFirstLastNameStyle | ( | author | ) |
switch from [last name, first name] to [first name last name]
| author | author list |
Definition at line 70 of file bibconvert.py.
bibtex database
Definition at line 263 of file bibconvert.py.
| list bibconvert.filenames = [] |
list of bibtex files
Definition at line 245 of file bibconvert.py.
| list bibconvert.highlightAuthors = [] |
list of authors for highlight
Definition at line 243 of file bibconvert.py.
| bibconvert.suffix = None |
target format
Definition at line 241 of file bibconvert.py.