You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
75 lines
2.3 KiB
75 lines
2.3 KiB
8 months ago
|
[console_scripts]
|
||
|
pybtex = pybtex.__main__:main
|
||
|
pybtex-convert = pybtex.database.convert.__main__:main
|
||
|
pybtex-format = pybtex.database.format.__main__:main
|
||
|
|
||
|
[pybtex.backends]
|
||
|
html = pybtex.backends.html:Backend
|
||
|
latex = pybtex.backends.latex:Backend
|
||
|
markdown = pybtex.backends.markdown:Backend
|
||
|
plaintext = pybtex.backends.plaintext:Backend
|
||
|
|
||
|
[pybtex.backends.aliases]
|
||
|
md = pybtex.backends.markdown:Backend
|
||
|
text = pybtex.backends.plaintext:Backend
|
||
|
|
||
|
[pybtex.backends.suffixes]
|
||
|
.bbl = pybtex.backends.latex:Backend
|
||
|
.html = pybtex.backends.html:Backend
|
||
|
.latex = pybtex.backends.latex:Backend
|
||
|
.md = pybtex.backends.markdown:Backend
|
||
|
.tex = pybtex.backends.latex:Backend
|
||
|
.txt = pybtex.backends.plaintext:Backend
|
||
|
|
||
|
[pybtex.database.input]
|
||
|
bibtex = pybtex.database.input.bibtex:Parser
|
||
|
bibtexml = pybtex.database.input.bibtexml:Parser
|
||
|
yaml = pybtex.database.input.bibyaml:Parser
|
||
|
|
||
|
[pybtex.database.input.aliases]
|
||
|
bibyaml = pybtex.database.input.bibyaml:Parser
|
||
|
|
||
|
[pybtex.database.input.suffixes]
|
||
|
.bib = pybtex.database.input.bibtex:Parser
|
||
|
.bibtexml = pybtex.database.input.bibtexml:Parser
|
||
|
.bibyaml = pybtex.database.input.bibyaml:Parser
|
||
|
.xml = pybtex.database.input.bibtexml:Parser
|
||
|
.yaml = pybtex.database.input.bibyaml:Parser
|
||
|
|
||
|
[pybtex.database.output]
|
||
|
bibtex = pybtex.database.output.bibtex:Writer
|
||
|
bibtexml = pybtex.database.output.bibtexml:Writer
|
||
|
yaml = pybtex.database.output.bibyaml:Writer
|
||
|
|
||
|
[pybtex.database.output.aliases]
|
||
|
bibyaml = pybtex.database.output.bibyaml:Writer
|
||
|
|
||
|
[pybtex.database.output.suffixes]
|
||
|
.bib = pybtex.database.output.bibtex:Writer
|
||
|
.bibtexml = pybtex.database.output.bibtexml:Writer
|
||
|
.bibyaml = pybtex.database.output.bibyaml:Writer
|
||
|
.xml = pybtex.database.output.bibtexml:Writer
|
||
|
.yaml = pybtex.database.output.bibyaml:Writer
|
||
|
|
||
|
[pybtex.style.formatting]
|
||
|
alpha = pybtex.style.formatting.alpha:Style
|
||
|
plain = pybtex.style.formatting.plain:Style
|
||
|
unsrt = pybtex.style.formatting.unsrt:Style
|
||
|
unsrtalpha = pybtex.style.formatting.unsrtalpha:Style
|
||
|
|
||
|
[pybtex.style.labels]
|
||
|
alpha = pybtex.style.labels.alpha:LabelStyle
|
||
|
number = pybtex.style.labels.number:LabelStyle
|
||
|
|
||
|
[pybtex.style.names]
|
||
|
lastfirst = pybtex.style.names.lastfirst:NameStyle
|
||
|
plain = pybtex.style.names.plain:NameStyle
|
||
|
|
||
|
[pybtex.style.names.aliases]
|
||
|
last_first = pybtex.style.names.lastfirst:NameStyle
|
||
|
|
||
|
[pybtex.style.sorting]
|
||
|
author_year_title = pybtex.style.sorting.author_year_title:SortingStyle
|
||
|
none = pybtex.style.sorting.none:SortingStyle
|
||
|
|