-
Notifications
You must be signed in to change notification settings - Fork 4
Start testing for documentation building #217
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
2bc5bf6
9f1c898
09879d2
2747d0f
8d6ced7
986f5fc
f583725
2f77521
80f90d9
dd297a2
7893d70
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -410,8 +410,8 @@ def slit_resolution(q_calc, q, width, length, n_length=30): | |
|
|
||
| where $I(u_j)$ is the value at the mid-point, and $\Delta u_j$ is the | ||
| difference between consecutive edges which have been first converted | ||
| to $u$. Only $u_j \in [0, \Delta q_\perp]$ are used, which corresponds | ||
| to $q_j \in \left[q, \sqrt{q^2 + \Delta q_\perp}\right]$, so | ||
| to $u$. Only $u_j \in [0, \Delta q\_\perp]$ are used, which corresponds | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I spot checked these ones and found:
(screenshot from downloading the artifact from CI and unzipping the Looking at the sphinx config, it's not actually loading any sort of dollar-math or mathjax sphinx extension - presumably this has actually been broken in the docs since they separated from sasview (which has its own private dollar-math sphinx extension). Perhaps also time to add that? https://github.com/matthew-brett/texext (packaged for Debian and used by a few packages) |
||
| to $q_j \in \left[q, \sqrt{q^2 + \Delta q\_\perp}\right]$, so | ||
|
|
||
| .. math:: | ||
|
|
||
|
|
@@ -447,8 +447,8 @@ def slit_resolution(q_calc, q, width, length, n_length=30): | |
| \left[q-\Delta q_\parallel, q+\Delta q_\parallel\right] | ||
|
|
||
| However, we need to support cases were $u_j < 0$, which means using | ||
| $2 (q_{j+1} - q_j)$ when $q_j \in \left[0, q_\parallel-q_i\right]$. | ||
| This is not an issue for $q_i > q_\parallel$. | ||
| $2 (q_{j+1} - q_j)$ when $q_j \in \left[0, q\_\parallel-q\_i\right]$. | ||
| This is not an issue for $q_i > q\_\parallel$. | ||
|
|
||
| For both $q_\perp > 0$ and $q_\parallel > 0$ we perform a 2 dimensional | ||
| integration with | ||
|
|
||
This file was deleted.

There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(Please let me know if any additional
hatch-sphinxfeatures are needed for this work!)