-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #149 from readthedocs/humitos/glossary-citation
- Loading branch information
Showing
14 changed files
with
204 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
@Book{1987:nelson, | ||
author = {Edward Nelson}, | ||
title = {Radically Elementary Probability Theory}, | ||
publisher = {Princeton University Press}, | ||
year = {1987} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# conf.py to run tests | ||
|
||
master_doc = 'index' | ||
extensions = [ | ||
'sphinx.ext.autodoc', | ||
'sphinx.ext.autosectionlabel', | ||
'hoverxref.extension', | ||
'sphinxcontrib.bibtex', | ||
] | ||
|
||
bibtex_bibfiles = ['refs.bib'] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
sphinxcontrib-bibtex Domain | ||
=========================== | ||
|
||
This is an example page with a sphinxcontrib-bibtex Domain role usage. | ||
|
||
See :cite:t:`1987:nelson` for an introduction to non-standard analysis. | ||
Non-standard analysis is fun :cite:p:`1987:nelson`. | ||
|
||
|
||
.. bibliography:: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
@Book{1987:nelson, | ||
author = {Edward Nelson}, | ||
title = {Radically Elementary Probability Theory}, | ||
publisher = {Princeton University Press}, | ||
year = {1987} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
Glossary | ||
======== | ||
|
||
Example page showing the usage of ``.. glossary`` and ``term``. | ||
|
||
See definition :term:`builder` for more information. | ||
|
||
.. copied from https://www.sphinx-doc.org/en/master/glossary.html | ||
.. glossary:: | ||
|
||
builder | ||
A class (inheriting from :class:`~sphinx.builders.Builder`) that takes | ||
parsed documents and performs an action on them. Normally, builders | ||
translate the documents to an output format, but it is also possible to | ||
use builders that e.g. check for broken links in the documentation, or | ||
build coverage information. | ||
|
||
See :doc:`/usage/builders/index` for an overview over Sphinx's built-in | ||
builders. | ||
|
||
configuration directory | ||
The directory containing :file:`conf.py`. By default, this is the same as | ||
the :term:`source directory`, but can be set differently with the **-c** | ||
command-line option. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,7 @@ envlist = | |
deps = | ||
pytest | ||
pdbpp | ||
sphinxcontrib-bibtex | ||
. | ||
sphinx18: sphinx~=1.8.0 | ||
sphinx20: sphinx~=2.0.0 | ||
|