-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_config.yml
75 lines (68 loc) · 2.16 KB
/
_config.yml
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
# Book settings
# Learn more at https://jupyterbook.org/customize/config.html
title: Machine Learning Control Training
author: appliedAI TransferLab
copyright: "2023"
exclude_patterns: [".github", ".venv", "**__pycache__", "**.ipynb_checkpoints", "_config.yml", "_toc.yml"]
# Auto-exclude files not in the toc
only_build_toc_files: true
execute:
execute_notebooks: cache
allow_errors: true
stderr_output: show
timeout: 600
launch_buttons:
thebe: true
binderhub_url: "https://mybinder.org"
repository:
url: https://github.com/aai-institute/tfl-training-machine-learning-control
branch: main
html:
use_repository_button: true
use_issues_button: true
use_edit_page_button: true
sphinx:
extra_extensions:
- 'autodoc2'
- 'sphinx.ext.autosummary'
- 'sphinx.ext.napoleon'
- 'sphinx.ext.viewcode'
- 'sphinxcontrib.bibtex'
- 'sphinx_togglebutton'
- 'sphinx_exercise'
config:
html_theme_options:
logo:
image_light: notebooks/_static/images/transferlab-logo.svg
image_dark: notebooks/_static/images/transferlab-logo-dark.svg
language: en
autodoc2_packages: ['src/training_ml_control']
autodoc2_render_plugin: 'myst'
bibtex_bibfiles: ['notebooks/bibliography.bib']
mathjax_path: https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
mathjax3_config:
loader: { load: [ '[tex]/configmacros' ] }
tex:
packages: { '[+]': [ 'configmacros' ] }
macros:
vect: ["{\\mathbf{\\boldsymbol{#1}} }", 1]
E: "{\\mathbb{E}}"
P: "{\\mathbb{P}}"
R: "{\\mathbb{R}}"
abs: ["{\\left| #1 \\right|}", 1]
simpl: ["{\\Delta^{#1} }", 1]
amax: "{\\text{argmax}}"
# Parse and render settings
parse:
# default extensions to enable in the myst parser. See https://myst-parser.readthedocs.io/en/latest/using/syntax-optional.html
myst_enable_extensions:
- amsmath
- colon_fence
- dollarmath
- html_image
- linkify
- substitution
# URI schemes that will be recognised as external URLs in Markdown links
myst_url_schemes: [mailto, http, https]
# Allow display math ($$) within an inline context
myst_dmath_double_inline: true