Commit 0ad950a 1 parent 49fba8d commit 0ad950a Copy full SHA for 0ad950a
File tree 5 files changed +25
-12
lines changed
5 files changed +25
-12
lines changed Original file line number Diff line number Diff line change @@ -9,3 +9,5 @@ jupyter>=1.0.0
9
9
ipywidgets >= 7.1.2
10
10
numpy >= 1.13.3
11
11
sphinx-prompt
12
+ sphinx-math-dollar
13
+ sphinx-copybutton
Original file line number Diff line number Diff line change 5
5
import textwrap
6
6
7
7
MAIN_HEADER = """
8
- +---------------------------------------+---------------------------------------------------------+--------------------+
9
- | parameter | description | default value |
10
- +=======================================+=========================================================+====================+
8
+ +---------------------------------------+---------------------------------------------------------+------------------------------ +
9
+ | parameter | description | default value |
10
+ +=======================================+=========================================================+============================== +
11
11
"""
12
12
13
13
SEPARATOR = """
14
- +---------------------------------------+---------------------------------------------------------+--------------------+
14
+ +---------------------------------------+---------------------------------------------------------+------------------------------ +
15
15
"""
16
16
17
17
ENTRY = """
18
- | {:37} | {:55} | {:18 } |
18
+ | {:37} | {:55} | {:28 } |
19
19
"""
20
20
21
21
WRAP_LEN = 55
Original file line number Diff line number Diff line change 1
- *****************
2
- StarKiller Basics
3
- *****************
1
+ *********************
2
+ Microphysics Overview
3
+ *********************
4
4
5
5
Getting Started (Standalone)
6
6
============================
@@ -133,5 +133,7 @@ solvers (ODE integration for the network and Newton-Raphson root
133
133
finding for the EOS) is separated from the specific implementations of
134
134
the microphysics.
135
135
136
- **All quantities are assumed to be in CGS units **, unless otherwise
137
- specified.
136
+ .. note ::
137
+
138
+ All quantities are assumed to be in CGS units, unless otherwise
139
+ specified.
Original file line number Diff line number Diff line change @@ -48,12 +48,14 @@ def get_version():
48
48
# ones.
49
49
extensions = ['sphinx.ext.autodoc' ,
50
50
'sphinx.ext.mathjax' ,
51
+ 'sphinx_math_dollar' ,
51
52
'sphinx.ext.viewcode' ,
52
53
'sphinxcontrib.bibtex' ,
53
54
'nbsphinx' ,
54
55
'numpydoc' ,
55
56
'IPython.sphinxext.ipython_console_highlighting' ,
56
57
'sphinx.ext.githubpages' ,
58
+ 'sphinx_copybutton' ,
57
59
'sphinx-prompt' ,
58
60
'sphinx_rtd_theme' ,
59
61
'breathe' ]
@@ -116,7 +118,14 @@ def get_version():
116
118
117
119
118
120
# -- Options for MathJax
119
- mathjax3_config = {'tex' : {'macros' : {}}}
121
+ mathjax3_config = {}
122
+
123
+ mathjax3_config ["tex" ] = {
124
+ "inlineMath" : [['\\ (' , '\\ )' ]],
125
+ "displayMath" : [["\\ [" , "\\ ]" ]],
126
+ }
127
+
128
+ mathjax3_config ["tex" ]["macros" ] = {}
120
129
121
130
with open ('mathsymbols.tex' , 'r' ) as f :
122
131
for line in f :
Original file line number Diff line number Diff line change 2
2
Preface
3
3
*******
4
4
5
- Welcome to the StarKiller Microphysics!
5
+ Welcome to the AMReX-Astro Microphysics!
6
6
7
7
In this User’s Guide we describe the microphysics modules designed to
8
8
enable simulations of stellar explosions.
You can’t perform that action at this time.
0 commit comments