├── .coveragerc ├── .flake8 ├── .github └── workflows │ ├── build.yml │ └── release.yml ├── .gitignore ├── .isort.cfg ├── .readthedocs.yaml ├── CHANGELOG.rst ├── LICENSE.rst ├── MANIFEST.in ├── README.rst ├── doc ├── Makefile ├── api.rst ├── api │ ├── bibfile.rst │ ├── directives.rst │ ├── domains.rst │ ├── interface.rst │ ├── nodes.rst │ ├── plugin.rst │ ├── pybtex.rst │ ├── referencing.rst │ ├── roles.rst │ └── transforms.rst ├── changes.rst ├── conf.py ├── index.rst ├── license.rst ├── make.bat ├── quickstart.rst ├── related.rst └── usage.rst ├── mypy.ini ├── pyproject.toml ├── pytest.ini ├── release_checklist.txt ├── src └── sphinxcontrib │ └── bibtex │ ├── __init__.py │ ├── bibfile.py │ ├── citation_target.py │ ├── directives.py │ ├── domain.py │ ├── foot_directives.py │ ├── foot_domain.py │ ├── foot_roles.py │ ├── nodes.py │ ├── plugin.py │ ├── py.typed │ ├── richtext.py │ ├── roles.py │ ├── style │ ├── __init__.py │ ├── names │ │ ├── __init__.py │ │ └── last.py │ ├── referencing │ │ ├── __init__.py │ │ ├── author_year.py │ │ ├── basic_author_year.py │ │ ├── basic_foot.py │ │ ├── basic_label.py │ │ ├── basic_super.py │ │ ├── extra_author.py │ │ ├── extra_empty.py │ │ ├── extra_label.py │ │ ├── extra_year.py │ │ ├── foot.py │ │ ├── label.py │ │ └── super_.py │ └── template.py │ └── transforms.py └── test ├── __init__.py ├── common.py ├── conftest.py ├── natbib.py ├── roots ├── .gitignore ├── test-autoapi │ ├── conf.py │ ├── index.rst │ ├── some_module │ │ ├── __init__.py │ │ ├── cite.py │ │ └── footcite.py │ └── test.bib ├── test-autodoc │ ├── conf.py │ ├── doc_cite.rst │ ├── doc_footcite.rst │ ├── index.rst │ └── test.bib ├── test-autodoc_cython │ ├── conf.py │ ├── doc_cite.rst │ ├── doc_footcite.rst │ ├── index.rst │ └── test.bib ├── test-autodoc_viewcode │ ├── conf.py │ ├── index.rst │ └── somemodule.py ├── test-backrefs │ ├── conf.py │ ├── index.rst │ └── test.bib ├── test-bibfiles_absolute_path │ ├── conf.py │ └── index.rst ├── test-bibfiles_crossref │ ├── conf.py │ ├── index.rst │ └── test.bib ├── test-bibfiles_encoding │ ├── conf.py │ ├── index.rst │ └── test.bib ├── test-bibfiles_missing_conf │ ├── conf.py │ └── index.rst ├── test-bibfiles_multiple_keys │ ├── conf.py │ ├── index.rst │ ├── test1.bib │ └── test2.bib ├── test-bibfiles_multiple_macros │ ├── conf.py │ ├── index.rst │ ├── macros.bib │ └── test.bib ├── test-bibfiles_not_found │ ├── conf.py │ └── index.rst ├── test-bibfiles_out_of_date │ ├── conf.py │ ├── index.rst │ ├── index_new.xxx │ ├── test.bib │ └── test_new.xxx ├── test-bibfiles_subfolder │ ├── bibfiles │ │ └── test.bib │ ├── conf.py │ ├── index.rst │ ├── subfolder │ │ └── doc.rst │ └── subfolder2 │ │ └── doc.rst ├── test-bibliography_bad_key │ ├── conf.py │ ├── index.rst │ └── test.bib ├── test-bibliography_bad_option │ ├── conf.py │ ├── index.rst │ └── test.bib ├── test-bibliography_content │ ├── conf.py │ ├── doc1.rst │ ├── doc2.rst │ ├── doc3.rst │ ├── index.rst │ └── test.bib ├── test-bibliography_custom_ids │ ├── conf.py │ ├── index.rst │ └── test.bib ├── test-bibliography_empty │ ├── conf.py │ └── index.rst ├── test-bibliography_header │ ├── conf.py │ ├── index.rst │ └── test.bib ├── test-bibliography_key_prefix │ ├── conf.py │ ├── doc0.rst │ ├── doc1.rst │ ├── index.rst │ └── test.bib ├── test-bibliography_label_prefix_1 │ ├── conf.py │ ├── doc1.rst │ ├── doc2.rst │ ├── index.rst │ ├── test1.bib │ └── test2.bib ├── test-bibliography_label_prefix_2 │ ├── conf.py │ ├── doc1.rst │ ├── doc2.rst │ ├── index.rst │ ├── refs.bib │ └── summary.rst ├── test-bibliography_missing_field │ ├── conf.py │ ├── index.rst │ └── test.bib ├── test-bibliography_multi_foot │ ├── conf.py │ ├── index.rst │ └── test.bib ├── test-bibliography_order_unsorted │ ├── conf.py │ ├── index.rst │ └── test.bib ├── test-bibliography_style_default │ ├── conf.py │ ├── index.rst │ └── test.bib ├── test-bibliography_style_label_1 │ ├── conf.py │ ├── index.rst │ └── test.bib ├── test-bibliography_style_label_2 │ ├── conf.py │ ├── index.rst │ └── test.bib ├── test-bibliography_style_nowebref │ ├── conf.py │ ├── index.rst │ └── test.bib ├── test-bibliography_url │ ├── conf.py │ ├── index.rst │ └── test.bib ├── test-citation_any_role │ ├── conf.py │ ├── index.rst │ └── refs.bib ├── test-citation_from_orphan │ ├── conf.py │ ├── index.rst │ ├── orphan.rst │ └── test.bib ├── test-citation_label_special_chars │ ├── conf.py │ ├── index.rst │ └── refs.bib ├── test-citation_mixed │ ├── adoc1.rst │ ├── adoc2.rst │ ├── conf.py │ ├── index.rst │ └── test.bib ├── test-citation_multiple_keys │ ├── conf.py │ ├── index.rst │ └── refs.bib ├── test-citation_no_author_no_key │ ├── conf.py │ ├── index.rst │ └── test.bib ├── test-citation_not_found │ ├── conf.py │ ├── index.rst │ └── test.bib ├── test-citation_rinoh │ ├── conf.py │ ├── index.rst │ ├── ssheet.rts │ ├── template.rtt │ └── test.bib ├── test-citation_rinoh_multidoc │ ├── conf.py │ ├── doc.rst │ ├── index.rst │ ├── ssheet.rts │ ├── template.rtt │ └── test.bib ├── test-citation_roles │ ├── conf.py │ ├── index.rst │ └── refs.bib ├── test-citation_roles_pre_post │ ├── conf.py │ ├── index.rst │ └── refs.bib ├── test-citation_style_round_brackets │ ├── conf.py │ ├── index.rst │ └── refs.bib ├── test-citation_toctree │ ├── adoc1.rst │ ├── adoc2.rst │ ├── conf.py │ ├── index.rst │ └── test.bib ├── test-citation_whitespace │ ├── conf.py │ ├── index.rst │ └── test.bib ├── test-debug_bibtex_citation │ ├── conf.py │ ├── index.rst │ └── test.bib ├── test-debug_docutils_citation │ ├── conf.py │ └── index.rst ├── test-debug_minimal_example │ ├── conf.py │ ├── index.rst │ └── refs.bib ├── test-duplicate_citation │ ├── conf.py │ ├── index.rst │ └── test.bib ├── test-duplicate_citation_id │ ├── conf.py │ ├── index.rst │ └── test.bib ├── test-duplicate_label │ ├── conf.py │ ├── doc1.rst │ ├── doc2.rst │ ├── index.rst │ ├── test1.bib │ └── test2.bib ├── test-duplicate_label_2 │ ├── conf.py │ ├── doc1.rst │ ├── doc2.rst │ ├── index.rst │ └── test.bib ├── test-duplicate_nearly_identical_entries │ ├── conf.py │ ├── index.rst │ └── test.bib ├── test-duplicate_nearly_identical_keys │ ├── conf.py │ ├── index.rst │ └── test.bib ├── test-filter │ ├── bitand.rst │ ├── bitor.rst │ ├── conf.py │ ├── false.rst │ ├── gt.rst │ ├── gte.rst │ ├── in.rst │ ├── index.rst │ ├── key.rst │ ├── lt.rst │ ├── lte.rst │ ├── noteq.rst │ ├── notin.rst │ ├── or.rst │ ├── set.rst │ ├── test.bib │ ├── title.rst │ └── true.rst ├── test-filter_fix_author_keyerror │ ├── conf.py │ ├── index.rst │ └── test.bib ├── test-filter_option_clash │ ├── conf.py │ ├── index.rst │ └── test.bib ├── test-filter_syntax_error │ ├── conf.py │ ├── index.rst │ └── test.bib ├── test-footcite_roles │ ├── conf.py │ ├── index.rst │ └── refs.bib ├── test-footcite_roles_pre_post │ ├── conf.py │ ├── index.rst │ └── refs.bib ├── test-latex_multidoc │ ├── conf.py │ ├── index.rst │ ├── sources.bib │ └── sources.rst ├── test-latex_multidoc_2 │ ├── conf.py │ ├── index.rst │ ├── sources.bib │ └── sources.rst ├── test-latex_refs │ ├── conf.py │ ├── index.rst │ └── test.bib ├── test-list_bullet │ ├── conf.py │ ├── index.rst │ └── test.bib ├── test-list_citation │ ├── conf.py │ ├── index.rst │ └── test.bib ├── test-list_enumerated │ ├── conf.py │ ├── index.rst │ ├── test.bib │ ├── test2.bib │ └── test3.bib ├── test-list_invalid │ ├── conf.py │ ├── index.rst │ └── test.bib ├── test-natbib │ ├── conf.py │ ├── doc0.rst │ ├── doc1.rst │ ├── index.rst │ ├── test.bib │ └── zdoc.rst ├── test-natbib_conf │ ├── conf.py │ ├── index.rst │ └── test.bib ├── test-natbib_keynotfound │ ├── conf.py │ ├── index.rst │ └── test.bib ├── test-natbib_norefs │ ├── conf.py │ ├── index.rst │ └── test.bib ├── test-parallel │ ├── conf.py │ ├── foot │ │ ├── doc01.rst │ │ ├── doc02.rst │ │ ├── doc03.rst │ │ ├── doc04.rst │ │ ├── doc05.rst │ │ ├── doc06.rst │ │ ├── doc07.rst │ │ ├── doc08.rst │ │ ├── doc09.rst │ │ ├── doc10.rst │ │ ├── doc11.rst │ │ ├── doc12.rst │ │ ├── doc13.rst │ │ ├── doc14.rst │ │ ├── doc15.rst │ │ ├── doc16.rst │ │ ├── doc17.rst │ │ ├── doc18.rst │ │ ├── doc19.rst │ │ ├── doc20.rst │ │ ├── doc21.rst │ │ ├── doc22.rst │ │ ├── doc23.rst │ │ ├── doc24.rst │ │ ├── doc25.rst │ │ ├── doc26.rst │ │ ├── doc27.rst │ │ ├── doc28.rst │ │ ├── doc29.rst │ │ ├── doc30.rst │ │ └── index.rst │ ├── index.rst │ ├── listb.bib │ └── regular │ │ ├── allrefs.rst │ │ ├── doc01.rst │ │ ├── doc02.rst │ │ ├── doc03.rst │ │ ├── doc04.rst │ │ ├── doc05.rst │ │ ├── doc06.rst │ │ ├── doc07.rst │ │ ├── doc08.rst │ │ ├── doc09.rst │ │ ├── doc10.rst │ │ ├── doc11.rst │ │ ├── doc12.rst │ │ ├── doc13.rst │ │ ├── doc14.rst │ │ ├── doc15.rst │ │ ├── doc16.rst │ │ ├── doc17.rst │ │ ├── doc18.rst │ │ ├── doc19.rst │ │ ├── doc20.rst │ │ ├── doc21.rst │ │ ├── doc22.rst │ │ ├── doc23.rst │ │ ├── doc24.rst │ │ ├── doc25.rst │ │ ├── doc26.rst │ │ ├── doc27.rst │ │ ├── doc28.rst │ │ ├── doc29.rst │ │ ├── doc30.rst │ │ └── index.rst ├── test-root_doc │ ├── conf.py │ ├── root.rst │ └── test.bib ├── test-sphinx │ ├── Makefile │ ├── bibliography.rst │ ├── conf.py │ ├── fnbibliography.rst │ ├── index.rst │ ├── make.bat │ ├── subfolder │ │ └── test.bib │ ├── test.bib │ └── test2.bib ├── test-spurious_div │ ├── conf.py │ ├── index.rst │ └── references.bib └── test-spurious_div_2 │ ├── conf.py │ └── index.rst ├── some_cython_module ├── .gitignore ├── pyproject.toml ├── setup.py └── src │ └── some_cython_module │ ├── __init__.py │ ├── cite.pyx │ └── footcite.pyx ├── some_module ├── __init__.py ├── cite.py └── footcite.py ├── test_autoapi.py ├── test_autodoc.py ├── test_backrefs.py ├── test_bibfiles.py ├── test_bibliography.py ├── test_citation.py ├── test_citation_rinoh.py ├── test_citation_target.py ├── test_debug.py ├── test_debug.txt ├── test_duplicate.py ├── test_filter.py ├── test_footcite.py ├── test_latex.py ├── test_list.py ├── test_natbib.py ├── test_numpydoc.py ├── test_parallel.py ├── test_plugin.py ├── test_root_doc.py ├── test_sphinx.py ├── test_spurious_div.py ├── test_style.py └── test_template.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/.coveragerc -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/.gitignore -------------------------------------------------------------------------------- /.isort.cfg: -------------------------------------------------------------------------------- 1 | [settings] 2 | skip_gitignore=true 3 | profile=black -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /LICENSE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/LICENSE.rst -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/README.rst -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/doc/api.rst -------------------------------------------------------------------------------- /doc/api/bibfile.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/doc/api/bibfile.rst -------------------------------------------------------------------------------- /doc/api/directives.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/doc/api/directives.rst -------------------------------------------------------------------------------- /doc/api/domains.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/doc/api/domains.rst -------------------------------------------------------------------------------- /doc/api/interface.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/doc/api/interface.rst -------------------------------------------------------------------------------- /doc/api/nodes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/doc/api/nodes.rst -------------------------------------------------------------------------------- /doc/api/plugin.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/doc/api/plugin.rst -------------------------------------------------------------------------------- /doc/api/pybtex.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/doc/api/pybtex.rst -------------------------------------------------------------------------------- /doc/api/referencing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/doc/api/referencing.rst -------------------------------------------------------------------------------- /doc/api/roles.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/doc/api/roles.rst -------------------------------------------------------------------------------- /doc/api/transforms.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/doc/api/transforms.rst -------------------------------------------------------------------------------- /doc/changes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/doc/changes.rst -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/doc/license.rst -------------------------------------------------------------------------------- /doc/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/doc/make.bat -------------------------------------------------------------------------------- /doc/quickstart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/doc/quickstart.rst -------------------------------------------------------------------------------- /doc/related.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/doc/related.rst -------------------------------------------------------------------------------- /doc/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/doc/usage.rst -------------------------------------------------------------------------------- /mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/mypy.ini -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/pytest.ini -------------------------------------------------------------------------------- /release_checklist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/release_checklist.txt -------------------------------------------------------------------------------- /src/sphinxcontrib/bibtex/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/src/sphinxcontrib/bibtex/__init__.py -------------------------------------------------------------------------------- /src/sphinxcontrib/bibtex/bibfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/src/sphinxcontrib/bibtex/bibfile.py -------------------------------------------------------------------------------- /src/sphinxcontrib/bibtex/citation_target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/src/sphinxcontrib/bibtex/citation_target.py -------------------------------------------------------------------------------- /src/sphinxcontrib/bibtex/directives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/src/sphinxcontrib/bibtex/directives.py -------------------------------------------------------------------------------- /src/sphinxcontrib/bibtex/domain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/src/sphinxcontrib/bibtex/domain.py -------------------------------------------------------------------------------- /src/sphinxcontrib/bibtex/foot_directives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/src/sphinxcontrib/bibtex/foot_directives.py -------------------------------------------------------------------------------- /src/sphinxcontrib/bibtex/foot_domain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/src/sphinxcontrib/bibtex/foot_domain.py -------------------------------------------------------------------------------- /src/sphinxcontrib/bibtex/foot_roles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/src/sphinxcontrib/bibtex/foot_roles.py -------------------------------------------------------------------------------- /src/sphinxcontrib/bibtex/nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/src/sphinxcontrib/bibtex/nodes.py -------------------------------------------------------------------------------- /src/sphinxcontrib/bibtex/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/src/sphinxcontrib/bibtex/plugin.py -------------------------------------------------------------------------------- /src/sphinxcontrib/bibtex/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/sphinxcontrib/bibtex/richtext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/src/sphinxcontrib/bibtex/richtext.py -------------------------------------------------------------------------------- /src/sphinxcontrib/bibtex/roles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/src/sphinxcontrib/bibtex/roles.py -------------------------------------------------------------------------------- /src/sphinxcontrib/bibtex/style/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/sphinxcontrib/bibtex/style/names/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/sphinxcontrib/bibtex/style/names/last.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/src/sphinxcontrib/bibtex/style/names/last.py -------------------------------------------------------------------------------- /src/sphinxcontrib/bibtex/style/referencing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/src/sphinxcontrib/bibtex/style/referencing/__init__.py -------------------------------------------------------------------------------- /src/sphinxcontrib/bibtex/style/referencing/author_year.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/src/sphinxcontrib/bibtex/style/referencing/author_year.py -------------------------------------------------------------------------------- /src/sphinxcontrib/bibtex/style/referencing/basic_author_year.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/src/sphinxcontrib/bibtex/style/referencing/basic_author_year.py -------------------------------------------------------------------------------- /src/sphinxcontrib/bibtex/style/referencing/basic_foot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/src/sphinxcontrib/bibtex/style/referencing/basic_foot.py -------------------------------------------------------------------------------- /src/sphinxcontrib/bibtex/style/referencing/basic_label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/src/sphinxcontrib/bibtex/style/referencing/basic_label.py -------------------------------------------------------------------------------- /src/sphinxcontrib/bibtex/style/referencing/basic_super.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/src/sphinxcontrib/bibtex/style/referencing/basic_super.py -------------------------------------------------------------------------------- /src/sphinxcontrib/bibtex/style/referencing/extra_author.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/src/sphinxcontrib/bibtex/style/referencing/extra_author.py -------------------------------------------------------------------------------- /src/sphinxcontrib/bibtex/style/referencing/extra_empty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/src/sphinxcontrib/bibtex/style/referencing/extra_empty.py -------------------------------------------------------------------------------- /src/sphinxcontrib/bibtex/style/referencing/extra_label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/src/sphinxcontrib/bibtex/style/referencing/extra_label.py -------------------------------------------------------------------------------- /src/sphinxcontrib/bibtex/style/referencing/extra_year.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/src/sphinxcontrib/bibtex/style/referencing/extra_year.py -------------------------------------------------------------------------------- /src/sphinxcontrib/bibtex/style/referencing/foot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/src/sphinxcontrib/bibtex/style/referencing/foot.py -------------------------------------------------------------------------------- /src/sphinxcontrib/bibtex/style/referencing/label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/src/sphinxcontrib/bibtex/style/referencing/label.py -------------------------------------------------------------------------------- /src/sphinxcontrib/bibtex/style/referencing/super_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/src/sphinxcontrib/bibtex/style/referencing/super_.py -------------------------------------------------------------------------------- /src/sphinxcontrib/bibtex/style/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/src/sphinxcontrib/bibtex/style/template.py -------------------------------------------------------------------------------- /src/sphinxcontrib/bibtex/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/src/sphinxcontrib/bibtex/transforms.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/common.py -------------------------------------------------------------------------------- /test/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/conftest.py -------------------------------------------------------------------------------- /test/natbib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/natbib.py -------------------------------------------------------------------------------- /test/roots/.gitignore: -------------------------------------------------------------------------------- 1 | _build/ -------------------------------------------------------------------------------- /test/roots/test-autoapi/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-autoapi/conf.py -------------------------------------------------------------------------------- /test/roots/test-autoapi/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-autoapi/index.rst -------------------------------------------------------------------------------- /test/roots/test-autoapi/some_module/__init__.py: -------------------------------------------------------------------------------- 1 | """Some module.""" 2 | -------------------------------------------------------------------------------- /test/roots/test-autoapi/some_module/cite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-autoapi/some_module/cite.py -------------------------------------------------------------------------------- /test/roots/test-autoapi/some_module/footcite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-autoapi/some_module/footcite.py -------------------------------------------------------------------------------- /test/roots/test-autoapi/test.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-autoapi/test.bib -------------------------------------------------------------------------------- /test/roots/test-autodoc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-autodoc/conf.py -------------------------------------------------------------------------------- /test/roots/test-autodoc/doc_cite.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-autodoc/doc_cite.rst -------------------------------------------------------------------------------- /test/roots/test-autodoc/doc_footcite.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-autodoc/doc_footcite.rst -------------------------------------------------------------------------------- /test/roots/test-autodoc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-autodoc/index.rst -------------------------------------------------------------------------------- /test/roots/test-autodoc/test.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-autodoc/test.bib -------------------------------------------------------------------------------- /test/roots/test-autodoc_cython/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-autodoc_cython/conf.py -------------------------------------------------------------------------------- /test/roots/test-autodoc_cython/doc_cite.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-autodoc_cython/doc_cite.rst -------------------------------------------------------------------------------- /test/roots/test-autodoc_cython/doc_footcite.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-autodoc_cython/doc_footcite.rst -------------------------------------------------------------------------------- /test/roots/test-autodoc_cython/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-autodoc_cython/index.rst -------------------------------------------------------------------------------- /test/roots/test-autodoc_cython/test.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-autodoc_cython/test.bib -------------------------------------------------------------------------------- /test/roots/test-autodoc_viewcode/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-autodoc_viewcode/conf.py -------------------------------------------------------------------------------- /test/roots/test-autodoc_viewcode/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-autodoc_viewcode/index.rst -------------------------------------------------------------------------------- /test/roots/test-autodoc_viewcode/somemodule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-autodoc_viewcode/somemodule.py -------------------------------------------------------------------------------- /test/roots/test-backrefs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-backrefs/conf.py -------------------------------------------------------------------------------- /test/roots/test-backrefs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-backrefs/index.rst -------------------------------------------------------------------------------- /test/roots/test-backrefs/test.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-backrefs/test.bib -------------------------------------------------------------------------------- /test/roots/test-bibfiles_absolute_path/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-bibfiles_absolute_path/conf.py -------------------------------------------------------------------------------- /test/roots/test-bibfiles_absolute_path/index.rst: -------------------------------------------------------------------------------- 1 | .. bibliography:: 2 | :all: 3 | -------------------------------------------------------------------------------- /test/roots/test-bibfiles_crossref/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-bibfiles_crossref/conf.py -------------------------------------------------------------------------------- /test/roots/test-bibfiles_crossref/index.rst: -------------------------------------------------------------------------------- 1 | .. bibliography:: 2 | :all: 3 | -------------------------------------------------------------------------------- /test/roots/test-bibfiles_crossref/test.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-bibfiles_crossref/test.bib -------------------------------------------------------------------------------- /test/roots/test-bibfiles_encoding/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-bibfiles_encoding/conf.py -------------------------------------------------------------------------------- /test/roots/test-bibfiles_encoding/index.rst: -------------------------------------------------------------------------------- 1 | :cite:`Test` 2 | 3 | .. bibliography:: 4 | :all: 5 | -------------------------------------------------------------------------------- /test/roots/test-bibfiles_encoding/test.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-bibfiles_encoding/test.bib -------------------------------------------------------------------------------- /test/roots/test-bibfiles_missing_conf/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-bibfiles_missing_conf/conf.py -------------------------------------------------------------------------------- /test/roots/test-bibfiles_missing_conf/index.rst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/roots/test-bibfiles_multiple_keys/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-bibfiles_multiple_keys/conf.py -------------------------------------------------------------------------------- /test/roots/test-bibfiles_multiple_keys/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-bibfiles_multiple_keys/index.rst -------------------------------------------------------------------------------- /test/roots/test-bibfiles_multiple_keys/test1.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-bibfiles_multiple_keys/test1.bib -------------------------------------------------------------------------------- /test/roots/test-bibfiles_multiple_keys/test2.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-bibfiles_multiple_keys/test2.bib -------------------------------------------------------------------------------- /test/roots/test-bibfiles_multiple_macros/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-bibfiles_multiple_macros/conf.py -------------------------------------------------------------------------------- /test/roots/test-bibfiles_multiple_macros/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-bibfiles_multiple_macros/index.rst -------------------------------------------------------------------------------- /test/roots/test-bibfiles_multiple_macros/macros.bib: -------------------------------------------------------------------------------- 1 | @string{rmp = "Rev. Mod. Phys."} -------------------------------------------------------------------------------- /test/roots/test-bibfiles_multiple_macros/test.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-bibfiles_multiple_macros/test.bib -------------------------------------------------------------------------------- /test/roots/test-bibfiles_not_found/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-bibfiles_not_found/conf.py -------------------------------------------------------------------------------- /test/roots/test-bibfiles_not_found/index.rst: -------------------------------------------------------------------------------- 1 | .. bibliography:: another_unknown.bib 2 | -------------------------------------------------------------------------------- /test/roots/test-bibfiles_out_of_date/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-bibfiles_out_of_date/conf.py -------------------------------------------------------------------------------- /test/roots/test-bibfiles_out_of_date/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-bibfiles_out_of_date/index.rst -------------------------------------------------------------------------------- /test/roots/test-bibfiles_out_of_date/index_new.xxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-bibfiles_out_of_date/index_new.xxx -------------------------------------------------------------------------------- /test/roots/test-bibfiles_out_of_date/test.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-bibfiles_out_of_date/test.bib -------------------------------------------------------------------------------- /test/roots/test-bibfiles_out_of_date/test_new.xxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-bibfiles_out_of_date/test_new.xxx -------------------------------------------------------------------------------- /test/roots/test-bibfiles_subfolder/bibfiles/test.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-bibfiles_subfolder/bibfiles/test.bib -------------------------------------------------------------------------------- /test/roots/test-bibfiles_subfolder/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-bibfiles_subfolder/conf.py -------------------------------------------------------------------------------- /test/roots/test-bibfiles_subfolder/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-bibfiles_subfolder/index.rst -------------------------------------------------------------------------------- /test/roots/test-bibfiles_subfolder/subfolder/doc.rst: -------------------------------------------------------------------------------- 1 | Doc1 2 | ==== 3 | 4 | :cite:`Test` 5 | 6 | .. bibliography:: 7 | :style: plain 8 | -------------------------------------------------------------------------------- /test/roots/test-bibfiles_subfolder/subfolder2/doc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-bibfiles_subfolder/subfolder2/doc.rst -------------------------------------------------------------------------------- /test/roots/test-bibliography_bad_key/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-bibliography_bad_key/conf.py -------------------------------------------------------------------------------- /test/roots/test-bibliography_bad_key/index.rst: -------------------------------------------------------------------------------- 1 | .. bibliography:: 2 | 3 | badkey 4 | -------------------------------------------------------------------------------- /test/roots/test-bibliography_bad_key/test.bib: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/roots/test-bibliography_bad_option/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-bibliography_bad_option/conf.py -------------------------------------------------------------------------------- /test/roots/test-bibliography_bad_option/index.rst: -------------------------------------------------------------------------------- 1 | .. bibliography:: 2 | :thisisintentionallyinvalid: 3 | -------------------------------------------------------------------------------- /test/roots/test-bibliography_bad_option/test.bib: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/roots/test-bibliography_content/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-bibliography_content/conf.py -------------------------------------------------------------------------------- /test/roots/test-bibliography_content/doc1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-bibliography_content/doc1.rst -------------------------------------------------------------------------------- /test/roots/test-bibliography_content/doc2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-bibliography_content/doc2.rst -------------------------------------------------------------------------------- /test/roots/test-bibliography_content/doc3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-bibliography_content/doc3.rst -------------------------------------------------------------------------------- /test/roots/test-bibliography_content/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-bibliography_content/index.rst -------------------------------------------------------------------------------- /test/roots/test-bibliography_content/test.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-bibliography_content/test.bib -------------------------------------------------------------------------------- /test/roots/test-bibliography_custom_ids/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-bibliography_custom_ids/conf.py -------------------------------------------------------------------------------- /test/roots/test-bibliography_custom_ids/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-bibliography_custom_ids/index.rst -------------------------------------------------------------------------------- /test/roots/test-bibliography_custom_ids/test.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-bibliography_custom_ids/test.bib -------------------------------------------------------------------------------- /test/roots/test-bibliography_empty/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-bibliography_empty/conf.py -------------------------------------------------------------------------------- /test/roots/test-bibliography_empty/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-bibliography_empty/index.rst -------------------------------------------------------------------------------- /test/roots/test-bibliography_header/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-bibliography_header/conf.py -------------------------------------------------------------------------------- /test/roots/test-bibliography_header/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-bibliography_header/index.rst -------------------------------------------------------------------------------- /test/roots/test-bibliography_header/test.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-bibliography_header/test.bib -------------------------------------------------------------------------------- /test/roots/test-bibliography_key_prefix/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-bibliography_key_prefix/conf.py -------------------------------------------------------------------------------- /test/roots/test-bibliography_key_prefix/doc0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-bibliography_key_prefix/doc0.rst -------------------------------------------------------------------------------- /test/roots/test-bibliography_key_prefix/doc1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-bibliography_key_prefix/doc1.rst -------------------------------------------------------------------------------- /test/roots/test-bibliography_key_prefix/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-bibliography_key_prefix/index.rst -------------------------------------------------------------------------------- /test/roots/test-bibliography_key_prefix/test.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-bibliography_key_prefix/test.bib -------------------------------------------------------------------------------- /test/roots/test-bibliography_label_prefix_1/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-bibliography_label_prefix_1/conf.py -------------------------------------------------------------------------------- /test/roots/test-bibliography_label_prefix_1/doc1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-bibliography_label_prefix_1/doc1.rst -------------------------------------------------------------------------------- /test/roots/test-bibliography_label_prefix_1/doc2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-bibliography_label_prefix_1/doc2.rst -------------------------------------------------------------------------------- /test/roots/test-bibliography_label_prefix_1/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-bibliography_label_prefix_1/index.rst -------------------------------------------------------------------------------- /test/roots/test-bibliography_label_prefix_1/test1.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-bibliography_label_prefix_1/test1.bib -------------------------------------------------------------------------------- /test/roots/test-bibliography_label_prefix_1/test2.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-bibliography_label_prefix_1/test2.bib -------------------------------------------------------------------------------- /test/roots/test-bibliography_label_prefix_2/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-bibliography_label_prefix_2/conf.py -------------------------------------------------------------------------------- /test/roots/test-bibliography_label_prefix_2/doc1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-bibliography_label_prefix_2/doc1.rst -------------------------------------------------------------------------------- /test/roots/test-bibliography_label_prefix_2/doc2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-bibliography_label_prefix_2/doc2.rst -------------------------------------------------------------------------------- /test/roots/test-bibliography_label_prefix_2/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-bibliography_label_prefix_2/index.rst -------------------------------------------------------------------------------- /test/roots/test-bibliography_label_prefix_2/refs.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-bibliography_label_prefix_2/refs.bib -------------------------------------------------------------------------------- /test/roots/test-bibliography_label_prefix_2/summary.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-bibliography_label_prefix_2/summary.rst -------------------------------------------------------------------------------- /test/roots/test-bibliography_missing_field/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-bibliography_missing_field/conf.py -------------------------------------------------------------------------------- /test/roots/test-bibliography_missing_field/index.rst: -------------------------------------------------------------------------------- 1 | :cite:`testkey` 2 | 3 | .. bibliography:: 4 | -------------------------------------------------------------------------------- /test/roots/test-bibliography_missing_field/test.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-bibliography_missing_field/test.bib -------------------------------------------------------------------------------- /test/roots/test-bibliography_multi_foot/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-bibliography_multi_foot/conf.py -------------------------------------------------------------------------------- /test/roots/test-bibliography_multi_foot/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-bibliography_multi_foot/index.rst -------------------------------------------------------------------------------- /test/roots/test-bibliography_multi_foot/test.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-bibliography_multi_foot/test.bib -------------------------------------------------------------------------------- /test/roots/test-bibliography_order_unsorted/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-bibliography_order_unsorted/conf.py -------------------------------------------------------------------------------- /test/roots/test-bibliography_order_unsorted/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-bibliography_order_unsorted/index.rst -------------------------------------------------------------------------------- /test/roots/test-bibliography_order_unsorted/test.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-bibliography_order_unsorted/test.bib -------------------------------------------------------------------------------- /test/roots/test-bibliography_style_default/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-bibliography_style_default/conf.py -------------------------------------------------------------------------------- /test/roots/test-bibliography_style_default/index.rst: -------------------------------------------------------------------------------- 1 | :cite:`2009:mandel` 2 | 3 | .. bibliography:: 4 | -------------------------------------------------------------------------------- /test/roots/test-bibliography_style_default/test.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-bibliography_style_default/test.bib -------------------------------------------------------------------------------- /test/roots/test-bibliography_style_label_1/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-bibliography_style_label_1/conf.py -------------------------------------------------------------------------------- /test/roots/test-bibliography_style_label_1/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-bibliography_style_label_1/index.rst -------------------------------------------------------------------------------- /test/roots/test-bibliography_style_label_1/test.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-bibliography_style_label_1/test.bib -------------------------------------------------------------------------------- /test/roots/test-bibliography_style_label_2/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-bibliography_style_label_2/conf.py -------------------------------------------------------------------------------- /test/roots/test-bibliography_style_label_2/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-bibliography_style_label_2/index.rst -------------------------------------------------------------------------------- /test/roots/test-bibliography_style_label_2/test.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-bibliography_style_label_2/test.bib -------------------------------------------------------------------------------- /test/roots/test-bibliography_style_nowebref/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-bibliography_style_nowebref/conf.py -------------------------------------------------------------------------------- /test/roots/test-bibliography_style_nowebref/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-bibliography_style_nowebref/index.rst -------------------------------------------------------------------------------- /test/roots/test-bibliography_style_nowebref/test.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-bibliography_style_nowebref/test.bib -------------------------------------------------------------------------------- /test/roots/test-bibliography_url/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-bibliography_url/conf.py -------------------------------------------------------------------------------- /test/roots/test-bibliography_url/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-bibliography_url/index.rst -------------------------------------------------------------------------------- /test/roots/test-bibliography_url/test.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-bibliography_url/test.bib -------------------------------------------------------------------------------- /test/roots/test-citation_any_role/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-citation_any_role/conf.py -------------------------------------------------------------------------------- /test/roots/test-citation_any_role/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-citation_any_role/index.rst -------------------------------------------------------------------------------- /test/roots/test-citation_any_role/refs.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-citation_any_role/refs.bib -------------------------------------------------------------------------------- /test/roots/test-citation_from_orphan/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-citation_from_orphan/conf.py -------------------------------------------------------------------------------- /test/roots/test-citation_from_orphan/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-citation_from_orphan/index.rst -------------------------------------------------------------------------------- /test/roots/test-citation_from_orphan/orphan.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-citation_from_orphan/orphan.rst -------------------------------------------------------------------------------- /test/roots/test-citation_from_orphan/test.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-citation_from_orphan/test.bib -------------------------------------------------------------------------------- /test/roots/test-citation_label_special_chars/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-citation_label_special_chars/conf.py -------------------------------------------------------------------------------- /test/roots/test-citation_label_special_chars/index.rst: -------------------------------------------------------------------------------- 1 | .. bibliography:: 2 | :all: -------------------------------------------------------------------------------- /test/roots/test-citation_label_special_chars/refs.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-citation_label_special_chars/refs.bib -------------------------------------------------------------------------------- /test/roots/test-citation_mixed/adoc1.rst: -------------------------------------------------------------------------------- 1 | Doc1 2 | ==== 3 | 4 | :cite:`Test` 5 | -------------------------------------------------------------------------------- /test/roots/test-citation_mixed/adoc2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-citation_mixed/adoc2.rst -------------------------------------------------------------------------------- /test/roots/test-citation_mixed/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-citation_mixed/conf.py -------------------------------------------------------------------------------- /test/roots/test-citation_mixed/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-citation_mixed/index.rst -------------------------------------------------------------------------------- /test/roots/test-citation_mixed/test.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-citation_mixed/test.bib -------------------------------------------------------------------------------- /test/roots/test-citation_multiple_keys/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-citation_multiple_keys/conf.py -------------------------------------------------------------------------------- /test/roots/test-citation_multiple_keys/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-citation_multiple_keys/index.rst -------------------------------------------------------------------------------- /test/roots/test-citation_multiple_keys/refs.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-citation_multiple_keys/refs.bib -------------------------------------------------------------------------------- /test/roots/test-citation_no_author_no_key/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-citation_no_author_no_key/conf.py -------------------------------------------------------------------------------- /test/roots/test-citation_no_author_no_key/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-citation_no_author_no_key/index.rst -------------------------------------------------------------------------------- /test/roots/test-citation_no_author_no_key/test.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-citation_no_author_no_key/test.bib -------------------------------------------------------------------------------- /test/roots/test-citation_not_found/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-citation_not_found/conf.py -------------------------------------------------------------------------------- /test/roots/test-citation_not_found/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-citation_not_found/index.rst -------------------------------------------------------------------------------- /test/roots/test-citation_not_found/test.bib: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/roots/test-citation_rinoh/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-citation_rinoh/conf.py -------------------------------------------------------------------------------- /test/roots/test-citation_rinoh/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-citation_rinoh/index.rst -------------------------------------------------------------------------------- /test/roots/test-citation_rinoh/ssheet.rts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-citation_rinoh/ssheet.rts -------------------------------------------------------------------------------- /test/roots/test-citation_rinoh/template.rtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-citation_rinoh/template.rtt -------------------------------------------------------------------------------- /test/roots/test-citation_rinoh/test.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-citation_rinoh/test.bib -------------------------------------------------------------------------------- /test/roots/test-citation_rinoh_multidoc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-citation_rinoh_multidoc/conf.py -------------------------------------------------------------------------------- /test/roots/test-citation_rinoh_multidoc/doc.rst: -------------------------------------------------------------------------------- 1 | Doc 2 | === 3 | 4 | Another citation :cite:`testkey`. 5 | -------------------------------------------------------------------------------- /test/roots/test-citation_rinoh_multidoc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-citation_rinoh_multidoc/index.rst -------------------------------------------------------------------------------- /test/roots/test-citation_rinoh_multidoc/ssheet.rts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-citation_rinoh_multidoc/ssheet.rts -------------------------------------------------------------------------------- /test/roots/test-citation_rinoh_multidoc/template.rtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-citation_rinoh_multidoc/template.rtt -------------------------------------------------------------------------------- /test/roots/test-citation_rinoh_multidoc/test.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-citation_rinoh_multidoc/test.bib -------------------------------------------------------------------------------- /test/roots/test-citation_roles/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-citation_roles/conf.py -------------------------------------------------------------------------------- /test/roots/test-citation_roles/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-citation_roles/index.rst -------------------------------------------------------------------------------- /test/roots/test-citation_roles/refs.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-citation_roles/refs.bib -------------------------------------------------------------------------------- /test/roots/test-citation_roles_pre_post/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-citation_roles_pre_post/conf.py -------------------------------------------------------------------------------- /test/roots/test-citation_roles_pre_post/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-citation_roles_pre_post/index.rst -------------------------------------------------------------------------------- /test/roots/test-citation_roles_pre_post/refs.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-citation_roles_pre_post/refs.bib -------------------------------------------------------------------------------- /test/roots/test-citation_style_round_brackets/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-citation_style_round_brackets/conf.py -------------------------------------------------------------------------------- /test/roots/test-citation_style_round_brackets/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-citation_style_round_brackets/index.rst -------------------------------------------------------------------------------- /test/roots/test-citation_style_round_brackets/refs.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-citation_style_round_brackets/refs.bib -------------------------------------------------------------------------------- /test/roots/test-citation_toctree/adoc1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-citation_toctree/adoc1.rst -------------------------------------------------------------------------------- /test/roots/test-citation_toctree/adoc2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-citation_toctree/adoc2.rst -------------------------------------------------------------------------------- /test/roots/test-citation_toctree/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-citation_toctree/conf.py -------------------------------------------------------------------------------- /test/roots/test-citation_toctree/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-citation_toctree/index.rst -------------------------------------------------------------------------------- /test/roots/test-citation_toctree/test.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-citation_toctree/test.bib -------------------------------------------------------------------------------- /test/roots/test-citation_whitespace/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-citation_whitespace/conf.py -------------------------------------------------------------------------------- /test/roots/test-citation_whitespace/index.rst: -------------------------------------------------------------------------------- 1 | :cite:`first, 2 | second` 3 | 4 | .. bibliography:: 5 | :style: alpha 6 | -------------------------------------------------------------------------------- /test/roots/test-citation_whitespace/test.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-citation_whitespace/test.bib -------------------------------------------------------------------------------- /test/roots/test-debug_bibtex_citation/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-debug_bibtex_citation/conf.py -------------------------------------------------------------------------------- /test/roots/test-debug_bibtex_citation/index.rst: -------------------------------------------------------------------------------- 1 | :cite:`testkey` 2 | 3 | .. bibliography:: 4 | -------------------------------------------------------------------------------- /test/roots/test-debug_bibtex_citation/test.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-debug_bibtex_citation/test.bib -------------------------------------------------------------------------------- /test/roots/test-debug_docutils_citation/conf.py: -------------------------------------------------------------------------------- 1 | exclude_patterns = ["_build"] 2 | -------------------------------------------------------------------------------- /test/roots/test-debug_docutils_citation/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-debug_docutils_citation/index.rst -------------------------------------------------------------------------------- /test/roots/test-debug_minimal_example/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-debug_minimal_example/conf.py -------------------------------------------------------------------------------- /test/roots/test-debug_minimal_example/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-debug_minimal_example/index.rst -------------------------------------------------------------------------------- /test/roots/test-debug_minimal_example/refs.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-debug_minimal_example/refs.bib -------------------------------------------------------------------------------- /test/roots/test-duplicate_citation/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-duplicate_citation/conf.py -------------------------------------------------------------------------------- /test/roots/test-duplicate_citation/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-duplicate_citation/index.rst -------------------------------------------------------------------------------- /test/roots/test-duplicate_citation/test.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-duplicate_citation/test.bib -------------------------------------------------------------------------------- /test/roots/test-duplicate_citation_id/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-duplicate_citation_id/conf.py -------------------------------------------------------------------------------- /test/roots/test-duplicate_citation_id/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-duplicate_citation_id/index.rst -------------------------------------------------------------------------------- /test/roots/test-duplicate_citation_id/test.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-duplicate_citation_id/test.bib -------------------------------------------------------------------------------- /test/roots/test-duplicate_label/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-duplicate_label/conf.py -------------------------------------------------------------------------------- /test/roots/test-duplicate_label/doc1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-duplicate_label/doc1.rst -------------------------------------------------------------------------------- /test/roots/test-duplicate_label/doc2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-duplicate_label/doc2.rst -------------------------------------------------------------------------------- /test/roots/test-duplicate_label/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-duplicate_label/index.rst -------------------------------------------------------------------------------- /test/roots/test-duplicate_label/test1.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-duplicate_label/test1.bib -------------------------------------------------------------------------------- /test/roots/test-duplicate_label/test2.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-duplicate_label/test2.bib -------------------------------------------------------------------------------- /test/roots/test-duplicate_label_2/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-duplicate_label_2/conf.py -------------------------------------------------------------------------------- /test/roots/test-duplicate_label_2/doc1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-duplicate_label_2/doc1.rst -------------------------------------------------------------------------------- /test/roots/test-duplicate_label_2/doc2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-duplicate_label_2/doc2.rst -------------------------------------------------------------------------------- /test/roots/test-duplicate_label_2/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-duplicate_label_2/index.rst -------------------------------------------------------------------------------- /test/roots/test-duplicate_label_2/test.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-duplicate_label_2/test.bib -------------------------------------------------------------------------------- /test/roots/test-duplicate_nearly_identical_entries/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-duplicate_nearly_identical_entries/conf.py -------------------------------------------------------------------------------- /test/roots/test-duplicate_nearly_identical_entries/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-duplicate_nearly_identical_entries/index.rst -------------------------------------------------------------------------------- /test/roots/test-duplicate_nearly_identical_entries/test.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-duplicate_nearly_identical_entries/test.bib -------------------------------------------------------------------------------- /test/roots/test-duplicate_nearly_identical_keys/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-duplicate_nearly_identical_keys/conf.py -------------------------------------------------------------------------------- /test/roots/test-duplicate_nearly_identical_keys/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-duplicate_nearly_identical_keys/index.rst -------------------------------------------------------------------------------- /test/roots/test-duplicate_nearly_identical_keys/test.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-duplicate_nearly_identical_keys/test.bib -------------------------------------------------------------------------------- /test/roots/test-filter/bitand.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-filter/bitand.rst -------------------------------------------------------------------------------- /test/roots/test-filter/bitor.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-filter/bitor.rst -------------------------------------------------------------------------------- /test/roots/test-filter/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-filter/conf.py -------------------------------------------------------------------------------- /test/roots/test-filter/false.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-filter/false.rst -------------------------------------------------------------------------------- /test/roots/test-filter/gt.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-filter/gt.rst -------------------------------------------------------------------------------- /test/roots/test-filter/gte.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-filter/gte.rst -------------------------------------------------------------------------------- /test/roots/test-filter/in.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-filter/in.rst -------------------------------------------------------------------------------- /test/roots/test-filter/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-filter/index.rst -------------------------------------------------------------------------------- /test/roots/test-filter/key.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-filter/key.rst -------------------------------------------------------------------------------- /test/roots/test-filter/lt.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-filter/lt.rst -------------------------------------------------------------------------------- /test/roots/test-filter/lte.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-filter/lte.rst -------------------------------------------------------------------------------- /test/roots/test-filter/noteq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-filter/noteq.rst -------------------------------------------------------------------------------- /test/roots/test-filter/notin.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-filter/notin.rst -------------------------------------------------------------------------------- /test/roots/test-filter/or.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-filter/or.rst -------------------------------------------------------------------------------- /test/roots/test-filter/set.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-filter/set.rst -------------------------------------------------------------------------------- /test/roots/test-filter/test.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-filter/test.bib -------------------------------------------------------------------------------- /test/roots/test-filter/title.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-filter/title.rst -------------------------------------------------------------------------------- /test/roots/test-filter/true.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-filter/true.rst -------------------------------------------------------------------------------- /test/roots/test-filter_fix_author_keyerror/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-filter_fix_author_keyerror/conf.py -------------------------------------------------------------------------------- /test/roots/test-filter_fix_author_keyerror/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-filter_fix_author_keyerror/index.rst -------------------------------------------------------------------------------- /test/roots/test-filter_fix_author_keyerror/test.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-filter_fix_author_keyerror/test.bib -------------------------------------------------------------------------------- /test/roots/test-filter_option_clash/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-filter_option_clash/conf.py -------------------------------------------------------------------------------- /test/roots/test-filter_option_clash/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-filter_option_clash/index.rst -------------------------------------------------------------------------------- /test/roots/test-filter_option_clash/test.bib: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/roots/test-filter_syntax_error/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-filter_syntax_error/conf.py -------------------------------------------------------------------------------- /test/roots/test-filter_syntax_error/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-filter_syntax_error/index.rst -------------------------------------------------------------------------------- /test/roots/test-filter_syntax_error/test.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-filter_syntax_error/test.bib -------------------------------------------------------------------------------- /test/roots/test-footcite_roles/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-footcite_roles/conf.py -------------------------------------------------------------------------------- /test/roots/test-footcite_roles/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-footcite_roles/index.rst -------------------------------------------------------------------------------- /test/roots/test-footcite_roles/refs.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-footcite_roles/refs.bib -------------------------------------------------------------------------------- /test/roots/test-footcite_roles_pre_post/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-footcite_roles_pre_post/conf.py -------------------------------------------------------------------------------- /test/roots/test-footcite_roles_pre_post/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-footcite_roles_pre_post/index.rst -------------------------------------------------------------------------------- /test/roots/test-footcite_roles_pre_post/refs.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-footcite_roles_pre_post/refs.bib -------------------------------------------------------------------------------- /test/roots/test-latex_multidoc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-latex_multidoc/conf.py -------------------------------------------------------------------------------- /test/roots/test-latex_multidoc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-latex_multidoc/index.rst -------------------------------------------------------------------------------- /test/roots/test-latex_multidoc/sources.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-latex_multidoc/sources.bib -------------------------------------------------------------------------------- /test/roots/test-latex_multidoc/sources.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-latex_multidoc/sources.rst -------------------------------------------------------------------------------- /test/roots/test-latex_multidoc_2/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-latex_multidoc_2/conf.py -------------------------------------------------------------------------------- /test/roots/test-latex_multidoc_2/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-latex_multidoc_2/index.rst -------------------------------------------------------------------------------- /test/roots/test-latex_multidoc_2/sources.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-latex_multidoc_2/sources.bib -------------------------------------------------------------------------------- /test/roots/test-latex_multidoc_2/sources.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-latex_multidoc_2/sources.rst -------------------------------------------------------------------------------- /test/roots/test-latex_refs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-latex_refs/conf.py -------------------------------------------------------------------------------- /test/roots/test-latex_refs/index.rst: -------------------------------------------------------------------------------- 1 | Test 2 | ==== 3 | 4 | :cite:`1657:huygens` 5 | 6 | .. bibliography:: 7 | :all: 8 | -------------------------------------------------------------------------------- /test/roots/test-latex_refs/test.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-latex_refs/test.bib -------------------------------------------------------------------------------- /test/roots/test-list_bullet/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-list_bullet/conf.py -------------------------------------------------------------------------------- /test/roots/test-list_bullet/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-list_bullet/index.rst -------------------------------------------------------------------------------- /test/roots/test-list_bullet/test.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-list_bullet/test.bib -------------------------------------------------------------------------------- /test/roots/test-list_citation/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-list_citation/conf.py -------------------------------------------------------------------------------- /test/roots/test-list_citation/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-list_citation/index.rst -------------------------------------------------------------------------------- /test/roots/test-list_citation/test.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-list_citation/test.bib -------------------------------------------------------------------------------- /test/roots/test-list_enumerated/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-list_enumerated/conf.py -------------------------------------------------------------------------------- /test/roots/test-list_enumerated/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-list_enumerated/index.rst -------------------------------------------------------------------------------- /test/roots/test-list_enumerated/test.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-list_enumerated/test.bib -------------------------------------------------------------------------------- /test/roots/test-list_enumerated/test2.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-list_enumerated/test2.bib -------------------------------------------------------------------------------- /test/roots/test-list_enumerated/test3.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-list_enumerated/test3.bib -------------------------------------------------------------------------------- /test/roots/test-list_invalid/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-list_invalid/conf.py -------------------------------------------------------------------------------- /test/roots/test-list_invalid/index.rst: -------------------------------------------------------------------------------- 1 | .. bibliography:: 2 | :list: thisisintentionallyinvalid 3 | -------------------------------------------------------------------------------- /test/roots/test-list_invalid/test.bib: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/roots/test-natbib/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-natbib/conf.py -------------------------------------------------------------------------------- /test/roots/test-natbib/doc0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-natbib/doc0.rst -------------------------------------------------------------------------------- /test/roots/test-natbib/doc1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-natbib/doc1.rst -------------------------------------------------------------------------------- /test/roots/test-natbib/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-natbib/index.rst -------------------------------------------------------------------------------- /test/roots/test-natbib/test.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-natbib/test.bib -------------------------------------------------------------------------------- /test/roots/test-natbib/zdoc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-natbib/zdoc.rst -------------------------------------------------------------------------------- /test/roots/test-natbib_conf/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-natbib_conf/conf.py -------------------------------------------------------------------------------- /test/roots/test-natbib_conf/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-natbib_conf/index.rst -------------------------------------------------------------------------------- /test/roots/test-natbib_conf/test.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-natbib_conf/test.bib -------------------------------------------------------------------------------- /test/roots/test-natbib_keynotfound/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-natbib_keynotfound/conf.py -------------------------------------------------------------------------------- /test/roots/test-natbib_keynotfound/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-natbib_keynotfound/index.rst -------------------------------------------------------------------------------- /test/roots/test-natbib_keynotfound/test.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-natbib_keynotfound/test.bib -------------------------------------------------------------------------------- /test/roots/test-natbib_norefs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-natbib_norefs/conf.py -------------------------------------------------------------------------------- /test/roots/test-natbib_norefs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-natbib_norefs/index.rst -------------------------------------------------------------------------------- /test/roots/test-natbib_norefs/test.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-natbib_norefs/test.bib -------------------------------------------------------------------------------- /test/roots/test-parallel/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-parallel/conf.py -------------------------------------------------------------------------------- /test/roots/test-parallel/foot/doc01.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-parallel/foot/doc01.rst -------------------------------------------------------------------------------- /test/roots/test-parallel/foot/doc02.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-parallel/foot/doc02.rst -------------------------------------------------------------------------------- /test/roots/test-parallel/foot/doc03.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-parallel/foot/doc03.rst -------------------------------------------------------------------------------- /test/roots/test-parallel/foot/doc04.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-parallel/foot/doc04.rst -------------------------------------------------------------------------------- /test/roots/test-parallel/foot/doc05.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-parallel/foot/doc05.rst -------------------------------------------------------------------------------- /test/roots/test-parallel/foot/doc06.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-parallel/foot/doc06.rst -------------------------------------------------------------------------------- /test/roots/test-parallel/foot/doc07.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-parallel/foot/doc07.rst -------------------------------------------------------------------------------- /test/roots/test-parallel/foot/doc08.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-parallel/foot/doc08.rst -------------------------------------------------------------------------------- /test/roots/test-parallel/foot/doc09.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-parallel/foot/doc09.rst -------------------------------------------------------------------------------- /test/roots/test-parallel/foot/doc10.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-parallel/foot/doc10.rst -------------------------------------------------------------------------------- /test/roots/test-parallel/foot/doc11.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-parallel/foot/doc11.rst -------------------------------------------------------------------------------- /test/roots/test-parallel/foot/doc12.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-parallel/foot/doc12.rst -------------------------------------------------------------------------------- /test/roots/test-parallel/foot/doc13.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-parallel/foot/doc13.rst -------------------------------------------------------------------------------- /test/roots/test-parallel/foot/doc14.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-parallel/foot/doc14.rst -------------------------------------------------------------------------------- /test/roots/test-parallel/foot/doc15.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-parallel/foot/doc15.rst -------------------------------------------------------------------------------- /test/roots/test-parallel/foot/doc16.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-parallel/foot/doc16.rst -------------------------------------------------------------------------------- /test/roots/test-parallel/foot/doc17.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-parallel/foot/doc17.rst -------------------------------------------------------------------------------- /test/roots/test-parallel/foot/doc18.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-parallel/foot/doc18.rst -------------------------------------------------------------------------------- /test/roots/test-parallel/foot/doc19.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-parallel/foot/doc19.rst -------------------------------------------------------------------------------- /test/roots/test-parallel/foot/doc20.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-parallel/foot/doc20.rst -------------------------------------------------------------------------------- /test/roots/test-parallel/foot/doc21.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-parallel/foot/doc21.rst -------------------------------------------------------------------------------- /test/roots/test-parallel/foot/doc22.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-parallel/foot/doc22.rst -------------------------------------------------------------------------------- /test/roots/test-parallel/foot/doc23.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-parallel/foot/doc23.rst -------------------------------------------------------------------------------- /test/roots/test-parallel/foot/doc24.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-parallel/foot/doc24.rst -------------------------------------------------------------------------------- /test/roots/test-parallel/foot/doc25.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-parallel/foot/doc25.rst -------------------------------------------------------------------------------- /test/roots/test-parallel/foot/doc26.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-parallel/foot/doc26.rst -------------------------------------------------------------------------------- /test/roots/test-parallel/foot/doc27.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-parallel/foot/doc27.rst -------------------------------------------------------------------------------- /test/roots/test-parallel/foot/doc28.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-parallel/foot/doc28.rst -------------------------------------------------------------------------------- /test/roots/test-parallel/foot/doc29.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-parallel/foot/doc29.rst -------------------------------------------------------------------------------- /test/roots/test-parallel/foot/doc30.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-parallel/foot/doc30.rst -------------------------------------------------------------------------------- /test/roots/test-parallel/foot/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-parallel/foot/index.rst -------------------------------------------------------------------------------- /test/roots/test-parallel/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-parallel/index.rst -------------------------------------------------------------------------------- /test/roots/test-parallel/listb.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-parallel/listb.bib -------------------------------------------------------------------------------- /test/roots/test-parallel/regular/allrefs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-parallel/regular/allrefs.rst -------------------------------------------------------------------------------- /test/roots/test-parallel/regular/doc01.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-parallel/regular/doc01.rst -------------------------------------------------------------------------------- /test/roots/test-parallel/regular/doc02.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-parallel/regular/doc02.rst -------------------------------------------------------------------------------- /test/roots/test-parallel/regular/doc03.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-parallel/regular/doc03.rst -------------------------------------------------------------------------------- /test/roots/test-parallel/regular/doc04.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-parallel/regular/doc04.rst -------------------------------------------------------------------------------- /test/roots/test-parallel/regular/doc05.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-parallel/regular/doc05.rst -------------------------------------------------------------------------------- /test/roots/test-parallel/regular/doc06.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-parallel/regular/doc06.rst -------------------------------------------------------------------------------- /test/roots/test-parallel/regular/doc07.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-parallel/regular/doc07.rst -------------------------------------------------------------------------------- /test/roots/test-parallel/regular/doc08.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-parallel/regular/doc08.rst -------------------------------------------------------------------------------- /test/roots/test-parallel/regular/doc09.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-parallel/regular/doc09.rst -------------------------------------------------------------------------------- /test/roots/test-parallel/regular/doc10.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-parallel/regular/doc10.rst -------------------------------------------------------------------------------- /test/roots/test-parallel/regular/doc11.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-parallel/regular/doc11.rst -------------------------------------------------------------------------------- /test/roots/test-parallel/regular/doc12.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-parallel/regular/doc12.rst -------------------------------------------------------------------------------- /test/roots/test-parallel/regular/doc13.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-parallel/regular/doc13.rst -------------------------------------------------------------------------------- /test/roots/test-parallel/regular/doc14.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-parallel/regular/doc14.rst -------------------------------------------------------------------------------- /test/roots/test-parallel/regular/doc15.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-parallel/regular/doc15.rst -------------------------------------------------------------------------------- /test/roots/test-parallel/regular/doc16.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-parallel/regular/doc16.rst -------------------------------------------------------------------------------- /test/roots/test-parallel/regular/doc17.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-parallel/regular/doc17.rst -------------------------------------------------------------------------------- /test/roots/test-parallel/regular/doc18.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-parallel/regular/doc18.rst -------------------------------------------------------------------------------- /test/roots/test-parallel/regular/doc19.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-parallel/regular/doc19.rst -------------------------------------------------------------------------------- /test/roots/test-parallel/regular/doc20.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-parallel/regular/doc20.rst -------------------------------------------------------------------------------- /test/roots/test-parallel/regular/doc21.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-parallel/regular/doc21.rst -------------------------------------------------------------------------------- /test/roots/test-parallel/regular/doc22.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-parallel/regular/doc22.rst -------------------------------------------------------------------------------- /test/roots/test-parallel/regular/doc23.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-parallel/regular/doc23.rst -------------------------------------------------------------------------------- /test/roots/test-parallel/regular/doc24.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-parallel/regular/doc24.rst -------------------------------------------------------------------------------- /test/roots/test-parallel/regular/doc25.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-parallel/regular/doc25.rst -------------------------------------------------------------------------------- /test/roots/test-parallel/regular/doc26.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-parallel/regular/doc26.rst -------------------------------------------------------------------------------- /test/roots/test-parallel/regular/doc27.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-parallel/regular/doc27.rst -------------------------------------------------------------------------------- /test/roots/test-parallel/regular/doc28.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-parallel/regular/doc28.rst -------------------------------------------------------------------------------- /test/roots/test-parallel/regular/doc29.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-parallel/regular/doc29.rst -------------------------------------------------------------------------------- /test/roots/test-parallel/regular/doc30.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-parallel/regular/doc30.rst -------------------------------------------------------------------------------- /test/roots/test-parallel/regular/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-parallel/regular/index.rst -------------------------------------------------------------------------------- /test/roots/test-root_doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-root_doc/conf.py -------------------------------------------------------------------------------- /test/roots/test-root_doc/root.rst: -------------------------------------------------------------------------------- 1 | :cite:`testkey` 2 | 3 | .. bibliography:: 4 | -------------------------------------------------------------------------------- /test/roots/test-root_doc/test.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-root_doc/test.bib -------------------------------------------------------------------------------- /test/roots/test-sphinx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-sphinx/Makefile -------------------------------------------------------------------------------- /test/roots/test-sphinx/bibliography.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-sphinx/bibliography.rst -------------------------------------------------------------------------------- /test/roots/test-sphinx/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-sphinx/conf.py -------------------------------------------------------------------------------- /test/roots/test-sphinx/fnbibliography.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-sphinx/fnbibliography.rst -------------------------------------------------------------------------------- /test/roots/test-sphinx/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-sphinx/index.rst -------------------------------------------------------------------------------- /test/roots/test-sphinx/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-sphinx/make.bat -------------------------------------------------------------------------------- /test/roots/test-sphinx/subfolder/test.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-sphinx/subfolder/test.bib -------------------------------------------------------------------------------- /test/roots/test-sphinx/test.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-sphinx/test.bib -------------------------------------------------------------------------------- /test/roots/test-sphinx/test2.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-sphinx/test2.bib -------------------------------------------------------------------------------- /test/roots/test-spurious_div/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-spurious_div/conf.py -------------------------------------------------------------------------------- /test/roots/test-spurious_div/index.rst: -------------------------------------------------------------------------------- 1 | .. bibliography:: 2 | :all: 3 | -------------------------------------------------------------------------------- /test/roots/test-spurious_div/references.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/roots/test-spurious_div/references.bib -------------------------------------------------------------------------------- /test/roots/test-spurious_div_2/conf.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/roots/test-spurious_div_2/index.rst: -------------------------------------------------------------------------------- 1 | .. [CIT2022] A citation. -------------------------------------------------------------------------------- /test/some_cython_module/.gitignore: -------------------------------------------------------------------------------- 1 | /build/ 2 | *.c 3 | *.egg-info -------------------------------------------------------------------------------- /test/some_cython_module/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/some_cython_module/pyproject.toml -------------------------------------------------------------------------------- /test/some_cython_module/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/some_cython_module/setup.py -------------------------------------------------------------------------------- /test/some_cython_module/src/some_cython_module/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/some_cython_module/src/some_cython_module/cite.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/some_cython_module/src/some_cython_module/cite.pyx -------------------------------------------------------------------------------- /test/some_cython_module/src/some_cython_module/footcite.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/some_cython_module/src/some_cython_module/footcite.pyx -------------------------------------------------------------------------------- /test/some_module/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/some_module/cite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/some_module/cite.py -------------------------------------------------------------------------------- /test/some_module/footcite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/some_module/footcite.py -------------------------------------------------------------------------------- /test/test_autoapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/test_autoapi.py -------------------------------------------------------------------------------- /test/test_autodoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/test_autodoc.py -------------------------------------------------------------------------------- /test/test_backrefs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/test_backrefs.py -------------------------------------------------------------------------------- /test/test_bibfiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/test_bibfiles.py -------------------------------------------------------------------------------- /test/test_bibliography.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/test_bibliography.py -------------------------------------------------------------------------------- /test/test_citation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/test_citation.py -------------------------------------------------------------------------------- /test/test_citation_rinoh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/test_citation_rinoh.py -------------------------------------------------------------------------------- /test/test_citation_target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/test_citation_target.py -------------------------------------------------------------------------------- /test/test_debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/test_debug.py -------------------------------------------------------------------------------- /test/test_debug.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/test_debug.txt -------------------------------------------------------------------------------- /test/test_duplicate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/test_duplicate.py -------------------------------------------------------------------------------- /test/test_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/test_filter.py -------------------------------------------------------------------------------- /test/test_footcite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/test_footcite.py -------------------------------------------------------------------------------- /test/test_latex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/test_latex.py -------------------------------------------------------------------------------- /test/test_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/test_list.py -------------------------------------------------------------------------------- /test/test_natbib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/test_natbib.py -------------------------------------------------------------------------------- /test/test_numpydoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/test_numpydoc.py -------------------------------------------------------------------------------- /test/test_parallel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/test_parallel.py -------------------------------------------------------------------------------- /test/test_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/test_plugin.py -------------------------------------------------------------------------------- /test/test_root_doc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/test_root_doc.py -------------------------------------------------------------------------------- /test/test_sphinx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/test_sphinx.py -------------------------------------------------------------------------------- /test/test_spurious_div.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/test_spurious_div.py -------------------------------------------------------------------------------- /test/test_style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/test_style.py -------------------------------------------------------------------------------- /test/test_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmtroffaes/sphinxcontrib-bibtex/HEAD/test/test_template.py --------------------------------------------------------------------------------