Skip to content

Commit f60f2cb

Browse files
authored
Merge pull request #290 from GeoStat-Framework/doc_math_and_nesting_fix
Doc math and nesting fix
2 parents bce1ab6 + 1aaa874 commit f60f2cb

File tree

16 files changed

+30
-29
lines changed

16 files changed

+30
-29
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ src/gstools/_version.py
116116

117117
# generated docs
118118
docs/source/examples/
119-
docs/source/generated/
119+
docs/source/api/
120120

121121
# other settings
122122
.vscode/
File renamed without changes.

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def setup(app):
6060
"sphinx.ext.doctest",
6161
"sphinx.ext.intersphinx",
6262
"sphinx.ext.coverage",
63-
"sphinx.ext.imgmath",
63+
"sphinx.ext.mathjax",
6464
"sphinx.ext.ifconfig",
6565
"sphinx.ext.viewcode",
6666
"sphinx.ext.autosummary",

docs/source/contents.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ Contents
88

99
index
1010
tutorials
11-
package
11+
api
1212
changelog

src/gstools/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
===========
1414
1515
.. autosummary::
16-
:toctree: generated
16+
:toctree: api
1717
1818
covmodel
1919
field

src/gstools/covmodel/__init__.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
^^^^^^^^^^^
88
99
.. autosummary::
10-
:toctree: generated
10+
:toctree:
1111
1212
plot
1313
@@ -16,7 +16,7 @@
1616
Class to construct user defined covariance models
1717
1818
.. autosummary::
19-
:toctree: generated
19+
:toctree:
2020
2121
CovModel
2222
@@ -25,7 +25,7 @@
2525
Standard Covariance Models
2626
2727
.. autosummary::
28-
:toctree: generated
28+
:toctree:
2929
3030
Gaussian
3131
Exponential
@@ -42,9 +42,10 @@
4242
JBessel
4343
4444
Truncated Power Law Covariance Models
45+
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
4546
4647
.. autosummary::
47-
:toctree: generated
48+
:toctree:
4849
4950
TPLGaussian
5051
TPLExponential

src/gstools/covmodel/plot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
The following classes and functions are provided
77
88
.. autosummary::
9-
:toctree: generated
9+
:toctree:
1010
1111
plot_variogram
1212
plot_covariance

src/gstools/field/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
^^^^^^^^^^^
88
99
.. autosummary::
10-
:toctree: generated
10+
:toctree:
1111
1212
generator
1313
upscaling
@@ -16,7 +16,7 @@
1616
^^^^^^^^^^^^^^^^^^^^
1717
1818
.. autosummary::
19-
:toctree: generated
19+
:toctree:
2020
2121
SRF
2222
CondSRF
@@ -25,7 +25,7 @@
2525
^^^^^^^^^^^^^^^^
2626
2727
.. autosummary::
28-
:toctree: generated
28+
:toctree:
2929
3030
Field
3131
"""

src/gstools/field/generator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
The following classes are provided
77
88
.. autosummary::
9-
:toctree: generated
9+
:toctree:
1010
1111
Generator
1212
RandMeth

src/gstools/field/upscaling.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
The following functions are provided
77
88
.. autosummary::
9-
:toctree: generated
9+
:toctree:
1010
1111
var_coarse_graining
1212
var_no_scaling

0 commit comments

Comments
 (0)