Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | 03-May-2022 | - | ||||
docs/ | H | 17-Jan-2021 | - | 5,715 | 4,584 | |
examples/ | H | 17-Jan-2021 | - | 48,248 | 45,397 | |
pybtex/ | H | 17-Jan-2021 | - | 12,057 | 9,046 | |
tests/ | H | 17-Jan-2021 | - | 25,640 | 23,266 | |
CHANGES | H A D | 17-Jan-2021 | 17.1 KiB | 602 | 352 | |
COPYING | H A D | 17-Jan-2021 | 1 KiB | 21 | 17 | |
MANIFEST.in | H A D | 17-Jan-2021 | 820 | 18 | 17 | |
PKG-INFO | H A D | 17-Jan-2021 | 2.2 KiB | 76 | 54 | |
README | H A D | 17-Jan-2021 | 850 | 50 | 29 | |
setup.cfg | H A D | 17-Jan-2021 | 165 | 13 | 9 | |
setup.py | H A D | 17-Jan-2021 | 6.8 KiB | 176 | 140 | |
tox.ini | H A D | 17-Jan-2021 | 45 | 4 | 3 |
README
1BibTeX-compatible bibliography processor in Python 2================================================== 3 4Synopsis 5-------- 6 7:: 8 9 latex foo.tex 10 pybtex foo.aux 11 latex foo.tex 12 latex foo.tex 13 14 15Description 16----------- 17 18Pybtex reads citation information from a file and 19produces a formatted bibliography. BibTeX style files are supported. 20Alternatively it is possible to write styles in Python. 21 22Pybtex currently understands the following bibliography formats: 23 24- BibTeX 25 26- BibTeXML 27 28- YAML-based format 29 30The resulting bibliography may be output in one of the following formats 31(not supported by legacy BibTeX styles): 32 33- LaTeX 34 35- HTML 36 37- markdown 38 39- plain text 40 41 42See also 43-------- 44 45- `Home page <https://pybtex.org/>`_ 46 47- `Pybtex at Bitbucket <https://bitbucket.org/pybtex-devs/pybtex>`_ 48 49- `Pybtex at PyPI <https://pypi.org/project/pybtex>`_ 50