-
Notifications
You must be signed in to change notification settings - Fork 7
/
_config.yml
136 lines (126 loc) · 4.09 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
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
# Book settings
# Learn more at https://jupyterbook.org/customize/config.html
title: Pattern Recognition
author: Ivan Dokmanić
logo: logo_sada-lab_black.svg
# Force re-execution of notebooks on each build.
# See https://jupyterbook.org/content/execute.html
execute:
execute_notebooks: force
timeout: 180 # some cells may take more time to run
# Define the name of the latex output file for PDF builds
latex:
latex_documents:
targetname: book.tex
# Add a bibtex file so that we can create citations
bibtex_bibfiles:
- references.bib
# Information about where the book exists on the web
repository:
url: https://github.com/executablebooks/jupyter-book # Online location of your book
path_to_book: docs # Optional path to your book, relative to the repository root
branch: master # Which branch of the repository should be used when creating links (optional)
# Add GitHub buttons to your book
# See https://jupyterbook.org/customize/config.html#add-a-link-to-your-repository
html:
use_issues_button: true
use_repository_button: true
sphinx:
config:
mathjax_config:
tex:
macros:
"vect": ["\\boldsymbol{#1}", 1]
"mat": ["\\boldsymbol{#1}", 1]
"rvar": ["\\mathsf{#1}", 1]
"rvect": ["\\mathsf{\\boldsymbol{#1}}", 1]
"rmat": ["\\mathsf{\\boldsymbol{#1}}", 1]
"vx" : ["\\vect{x}"]
"vy" : ["\\vect{y}"]
"vz" : ["\\vect{z}"]
"vv" : ["\\vect{v}"]
"vw" : ["\\vect{w}"]
"va" : ["\\vect{a}"]
"vb" : ["\\vect{b}"]
"vc" : ["\\vect{c}"]
"vd" : ["\\vect{d}"]
"ve" : ["\\vect{e}"]
"vf" : ["\\vect{f}"]
"vg" : ["\\vect{g}"]
"vh" : ["\\vect{h}"]
"vk" : ["\\vect{k}"]
"vp" : ["\\vect{p}"]
"vn" : ["\\vect{n}"]
"vell" : ["\\vect{\\ell}"]
"vmu" : ["\\vect{\\mu}"]
"mX" : ["\\mat{X}"]
"mY" : ["\\mat{Y}"]
"mZ" : ["\\mat{Z}"]
"mV" : ["\\mat{V}"]
"mW" : ["\\mat{W}"]
"mA" : ["\\mat{A}"]
"mB" : ["\\mat{B}"]
"mC" : ["\\mat{C}"]
"mD" : ["\\mat{D}"]
"mE" : ["\\mat{E}"]
"mF" : ["\\mat{F}"]
"mG" : ["\\mat{G}"]
"mH" : ["\\mat{H}"]
"mK" : ["\\mat{K}"]
"mP" : ["\\mat{P}"]
"mSigma" : ["\\mat{\\Sigma}"]
"mI" : ["\\mat{I}"]
"rx" : ["\\rvar{x}"]
"ry" : ["\\rvar{y}"]
"rz" : ["\\rvar{z}"]
"rv" : ["\\rvar{v}"]
"rw" : ["\\rvar{w}"]
"ra" : ["\\rvar{a}"]
"rb" : ["\\rvar{b}"]
"rc" : ["\\rvar{c}"]
"rd" : ["\\rvar{d}"]
"re" : ["\\rvar{e}"]
"rf" : ["\\rvar{f}"]
"rg" : ["\\rvar{g}"]
"rh" : ["\\rvar{h}"]
"rk" : ["\\rvar{k}"]
"rp" : ["\\rvar{p}"]
"rX" : ["\\rvar{X}"]
"rH" : ["\\rvar{H}"]
"rY" : ["\\rvar{Y}"]
"rvx" : ["\\rvect{x}"]
"rvy" : ["\\rvect{y}"]
"rvz" : ["\\rvect{z}"]
"rvv" : ["\\rvect{v}"]
"rvw" : ["\\rvect{w}"]
"rva" : ["\\rvect{a}"]
"rvb" : ["\\rvect{b}"]
"rvc" : ["\\rvect{c}"]
"rvd" : ["\\rvect{d}"]
"rve" : ["\\rvect{e}"]
"rvf" : ["\\rvect{f}"]
"rvg" : ["\\rvect{g}"]
"rvh" : ["\\rvect{h}"]
"rvk" : ["\\rvect{k}"]
"rvp" : ["\\rvect{p}"]
"rmX" : ["\\rmat{X}"]
"rmY" : ["\\rmat{Y}"]
"rmZ" : ["\\rmat{Z}"]
"rmV" : ["\\rmat{V}"]
"rmW" : ["\\rmat{W}"]
"rmA" : ["\\rmat{A}"]
"rmB" : ["\\rmat{B}"]
"rmC" : ["\\rmat{C}"]
"rmD" : ["\\rmat{D}"]
"rmE" : ["\\rmat{E}"]
"rmF" : ["\\rmat{F}"]
"rmG" : ["\\rmat{G}"]
"rmH" : ["\\rmat{H}"]
"rmK" : ["\\rmat{K}"]
"rmP" : ["\\rmat{P}"]
"EE" : ["\\mathbb{E}"]
"RR" : ["\\mathbb{R}"]
"CC" : ["\\mathbb{C}"]
"ZZ" : ["\\mathbb{Z}"]
"SS" : ["\\mathbb{S}"]
"norm": ["\\|#1\\|", 1]