forked from Computational-Biology-Aachen/MxlPy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
79 lines (73 loc) · 1.98 KB
/
mkdocs.yml
File metadata and controls
79 lines (73 loc) · 1.98 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
site_name: mxlpy docs
site_url: https://computational-biology-aachen.github.io/mxlpy/
site_dir: dist
repo_url: https://github.com/Computational-Biology-Aachen/MxlPy
use_directory_urls: false
nav:
- About: index.md
- ODE features:
- Basics: basics.ipynb
- Scans: scans.ipynb
- MCA: mca.ipynb
- Fitting: fitting.ipynb
- Monte Carlo methods: monte-carlo.ipynb
- Label models: label-models.ipynb
- Model parameterisation: parameterise.ipynb
- Stability analysis: stability.ipynb
- Identifiability: parameter_identifiability.ipynb
- Symbolic: symbolic.ipynb
- Integrator configuration: integrators.ipynb
- Mechanistic learning: mxl.ipynb
- Metaprogramming: metaprogramming.ipynb
- Examples: examples.ipynb
- Reporting: report.ipynb
- Tips: tips.ipynb
- How to cite: citing.md
theme:
name: material
features:
- content.code.copy
- content.code.annotate
- search.suggest
- search.highlight
- search.share
- navigation.instant
- navigation.instant.prefetch
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
primary: teal
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/toggle-switch
name: Switch to light mode
primary: teal
extra:
version:
provider: mike
default: stable
markdown_extensions:
- admonition
- attr_list
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.superfences
- pymdownx.snippets:
check_paths: true
- pymdownx.tabbed
- toc:
permalink: true
plugins:
- search
- mkdocs-jupyter:
ignore_h1_titles: True
execute: true
ignore: ["assets/*.ipynb"]
include_requirejs: true
custom_mathjax_url: "https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.7/latest.js?config=TeX-AMS_CHTML-full,Safe"
extra_css:
- stylesheets/extra.css