diff options
author | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2022-04-10 20:04:54 +0200 |
---|---|---|
committer | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2022-04-10 20:04:54 +0200 |
commit | a2675f91e2724a3018ec3a7ab2fb525e292a9430 (patch) | |
tree | ff59b57d0a4853a1da8bee35efddd1166b749838 /source/conf.py | |
parent | ac340afa81b973c2aa583079570079ff86a6ca53 (diff) |
Use sphinxcontrib-bibtex to manage the bibliography
Diffstat (limited to 'source/conf.py')
-rw-r--r-- | source/conf.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/source/conf.py b/source/conf.py index b023889..09c46d8 100644 --- a/source/conf.py +++ b/source/conf.py @@ -31,6 +31,7 @@ master_doc = 'index' # ones. extensions = [ 'sphinxcontrib.inkscapeconverter', + 'sphinxcontrib.bibtex', ] # Add any paths that contain templates here, relative to this directory. @@ -76,3 +77,10 @@ latex_elements = { ''', 'fncychap': r'\usepackage[Rejne]{fncychap}', } + +# Options for extensions + +bibtex_bibfiles = [ + "bibliography/drafting.bib", + "bibliography/misc.bib", +] |