Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,6 @@
"itertools",
"joinpath",
"jpsi",
"juliaup",
"kernelspec",
"kwargs",
"lambdifygenerated",
Expand Down
717 changes: 717 additions & 0 deletions docs/036/index.ipynb

Large diffs are not rendered by default.

14 changes: 14 additions & 0 deletions docs/036/pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
[project]
name = "technical-report"
version = "0.1.0"
requires-python = "~=3.13.0"
dependencies = [
"ampform-dpd~=0.2.3",
"ipykernel",
"matplotlib",
"numpy",
"qrules",
"tensorwaves",
]

[tool.uv.workspace]
1,005 changes: 1,005 additions & 0 deletions docs/036/uv.lock

Large diffs are not rendered by default.

13 changes: 13 additions & 0 deletions docs/_static/mermaid.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
/* Render Mermaid diagrams at their natural size instead of stretching them over
the full page width. */
pre.mermaid > svg {
height: auto !important;
max-width: 100% !important;
width: auto !important;
}

/* Hide graph edges behind labels in Sphinx-rendered Mermaid diagrams. Target
the outer HTML wrapper so multiline labels have one continuous background. */
pre.mermaid g.edgeLabel foreignObject > div {
background-color: var(--pst-color-on-background) !important;
}
30 changes: 30 additions & 0 deletions docs/bibliography.bib

Large diffs are not rendered by default.

14 changes: 14 additions & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,9 +128,11 @@ def install_ijulia() -> None:
"sphinx_thebe",
"sphinx_togglebutton",
"sphinxcontrib.bibtex",
"sphinxcontrib.mermaid",
]
graphviz_output_format = "svg"
html_css_files = [
"mermaid.css",
"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css",
]
html_favicon = "_static/favicon.ico"
Expand Down Expand Up @@ -177,6 +179,7 @@ def install_ijulia() -> None:
"path_to_docs": "docs",
"use_download_button": False,
"use_edit_page_button": True,
"use_fullscreen_button": False,
"use_issues_button": True,
"use_repository_button": True,
"use_source_button": True,
Expand Down Expand Up @@ -239,13 +242,24 @@ def install_ijulia() -> None:
r"https://github.com/ComPWA/RUB-EP1-AG/.*", # private
r"https://github.com/orgs/ComPWA/projects/\d+", # private
]
mermaid_height = "auto"
mermaid_init_config = {
"flowchart": {
"nodeSpacing": 30,
"rankSpacing": 40,
"useMaxWidth": False,
},
"startOnLoad": False,
"themeVariables": {"fontSize": "12px"},
}
myst_enable_extensions = [
"amsmath",
"colon_fence",
"dollarmath",
"smartquotes",
"substitution",
]
myst_fence_as_directive = ["mermaid"]
myst_heading_anchors = 4
myst_substitutions = {
"branch": BRANCH,
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ doc = [
"sphinx-thebe",
"sphinx-togglebutton",
"sphinxcontrib-bibtex >=2",
"sphinxcontrib-mermaid",
{ include-group = "notebooks" }
]
jupyter = [
Expand Down
20 changes: 20 additions & 0 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading