You need to sign in or sign up before continuing.
Newer
Older
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
# Book settings
# Learn more at https://jupyterbook.org/customize/config.html
#######################################################################################
# Book Settings
title: "\"How-To\" Manual"
author: TU Delft Applied Sciences OIT team
description: Manual for all the professors that want to publish their books with Jupyter books implementation.
copyright: Delft University of Technology, CC BY-SA 4.0
logo: content/images/tudelft.png
exclude_patterns: [ _build, Thumbs.db, .DS_Store, "**.ipynb_checkpoints" ]
only_build_toc_files: true
#######################################################################################
# Execution settings
execute:
execute_notebooks: force
cache: ""
exclude_patterns: [ ]
timeout: 30
run_in_temp: false
allow_errors: false
stderr_output: show
#######################################################################################
# Parse and render settings
parse:
myst_enable_extensions:
- amsmath
- colon_fence # To allow for ::: instead of ``` blocks.
- deflist
- dollarmath
- html_admonition
- html_image
- linkify
- replacements
- smartquotes
- substitution
- tasklist
myst_url_schemes: [ mailto, http, https ]
myst_dmath_double_inline: true
#######################################################################################
# HTML-specific settings
html:
favicon: "content/images/favicon.ico"
use_edit_page_button: true
# use_repository_button: true -> moved downwards to be compatible with the darkmode TU delft logo
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
use_issues_button: false
use_multitoc_numbering: true
extra_navbar: Powered by <a href="https://www.tudelft.nl/">TU Delft</a>
extra_footer: ""
google_analytics_id: ""
home_page_in_navbar: true
baseurl: ""
comments:
hypothesis: false
utterances: false
#######################################################################################
# LaTeX-specific settings
latex:
latex_engine: pdflatex
use_jupyterbook_latex: true
latex_documents:
targetname: book.tex
#######################################################################################
# Launch button settings
launch_buttons:
notebook_interface: classic
#######################################################################################
# Information about where the book exists on the web
repository:
url: https://gitlab.tudelft.nl/opentextbooks/how-to-manual/
path_to_book: ""
branch: master
#######################################################################################
# Add a bibtex file so that we can create citations
bibtex_bibfiles:
- references.bib
#######################################################################################
# Advanced and power-user settings
sphinx:
extra_extensions:
- sphinx_proof
- sphinx_exercise
- sphinx_togglebutton
- sphinx_inline_tabs
recursive_update: false
config:
html_theme_options:
repository_url: https://gitlab.tudelft.nl/opentextbooks/how-to-manual/
use_repository_button: True
announcement: "Under Development"
logo:
image_light: content/images/tudelft.png
image_dark: content/images/tudelft-dark.png
html_js_files:
- https://cdnjs.cloudflare.com/ajax/libs/require.js/2.3.6/require.min.js
- https://cdn.jsdelivr.net/npm/loading-attribute-polyfill@2.1.0/dist/loading-attribute-polyfill.min.js
- https://cdn.jsdelivr.net/npm/loading-attribute-polyfill@2.1.0/dist/loading-attribute-polyfill.min.css
mathjax3_config:
loader: { load: [ '[tex]/autoload', '[tex]/ams' ] }
tex:
packages: { '[+]': [ 'autoload', 'ams', 'physics', 'boldsymbol' ] }
tags: 'ams'
macros:
"kB": "k_\\mathrm{B}"
"bm": "\\mathbf"
"inprod": "\\innerproduct"
"diff": "\\pdv"