-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
199 lines (189 loc) · 5.25 KB
/
mkdocs.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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
# Project Information
site_name: Notes/Tiankai Ma
site_description: "Tiankai Ma's Notes"
site_author: "Tiankai Ma"
site_url: https://notes.tiankaima.dev
strict: false
# Repository
repo_name: "tiankaima/md-notes"
repo_url: "https://github.com/tiankaima/md-notes"
# Copyright
copyright: "Copyright © Tiankai Ma"
# Contents
nav:
- Welcome:
- Welcome [EN]: index.md
- About [EN]: index/about.md
- Test Page: index/test.md
- Blog:
- C++:
- blog/cpp/modern-cpp.md
- Lab:
- blog/lab/inet.md
- Server:
- blog/server/headscale.md
- blog/server/rpi-setup.md
- Typst:
- blog/typst/typst-tutorial-for-latex-user.md
- Terminal:
- blog/terminal/cheatsheets.md
- USTC:
- blog/ustc/schoolwork-links.md
- blog/ustc/ustc-websites.md
- blog/ustc/xzkd-new-tokens.md
- Math:
- math/index.md
- Analysis:
- math/analysis/calculus.md
- math/analysis/fourier.md
- math/analysis/functional-analysis.md
- math/analysis/measure-theory.md
- math/analysis/attention-is-all-you-need.md
- math/analysis/calculus-of-variations.md
- Probability:
- math/probability/probability.md
- math/probability/stochastic-processes.md
- Machine Learning:
- ml/index.md
- Traditional Methods:
- Linear Regression: ml/traditional/linear-regression.md
- Logistic Regression: ml/traditional/logistic-regression.md
- Deep Learning:
- Review: ml/dl/review.md
- Neural Network:
- ml/dl/nn/index.md
- Backward Propagation: ml/dl/nn/bp.md
- Playground/MNIST: ml/dl/nn/playground-mnist.ipynb
- Miscellaneous:
- Derivative: ml/dl/nn/derivative.md
- Graph: ml/dl/nn/graph.ipynb
- CNN:
- ml/dl/cnn/index.md
- History: ml/dl/cnn/history.md
- Playground/LeNet: ml/dl/cnn/playground-lenet.ipynb
- NeRF:
- ml/dl/nerf/index.md
- Gaussian Splatting:
- ml/dl/gs/index.md
- 3D Gaussian Splatting: ml/dl/gs/3d-gs.md
- Lab:
- lab/index.md
- lab/checklist.md
- lab/network.md
- Servers:
- lab/srv/8x4090.md
- lab/srv/8xa6000.md
# Theme
theme:
name: material
static_templates:
- 404.html
language: "zh"
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: white
accent: red
toggle:
icon: material/weather-sunny
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: black
accent: blue
toggle:
icon: material/weather-night
name: Switch to light mode
include_search_page: false
search_index_only: true
favicon: "favicon.ico"
icon:
annotation: material/arrow-right-circle
logo: "material/school"
features:
- content.action.edit
- navigation.indexes
- navigation.expand
- navigation.prune
- navigation.sections
- navigation.tabs
- navigation.tabs.sticky
- navigation.tracking
- search.suggest
- search.highlight
- toc.follow
font:
text: "Fira Sans"
code: "Fira Mono"
plugins:
- search
- git-revision-date-localized
- glightbox
- mkdocs-jupyter
- redirects:
redirect_maps:
"blog/xzkd-new-tokens.md": "blog/ustc/xzkd-new-tokens.md"
"blog/terminal/rpi-setup.md": "blog/server/rpi-setup.md"
# Customization
extra:
disqus: "Tiankai Ma"
copyright: '<a href="https://creativecommons.org/licenses/by-sa/4.0/deed.zh">CC BY-SA 4.0</a>'
pagetime: "on"
manifest: "manifest.webmanifest"
githash: ""
extra_javascript:
- "https://cdn.jsdelivr.net/npm/[email protected]/es5/tex-mml-chtml.min.js"
- "https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.9.0/katex.min.js"
- javascripts/svg_dark.js
extra_css:
- css/extra.css
- "https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.9.0/katex.min.css"
# Extensions
markdown_extensions:
- document-offsets-injection:
# debug: true
- admonition
- def_list
- footnotes
- meta
- toc:
permalink: true
slugify: !!python/name:pymdownx.slugs.uslugify
- pymdownx.arithmatex:
generic: true
- pymdownx.caret
- pymdownx.critic
- pymdownx.details
- pymdownx.emoji:
emoji_generator: !!python/name:pymdownx.emoji.to_svg
- pymdownx.highlight:
linenums: true
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.magiclink
- pymdownx.mark
- pymdownx.snippets:
check_paths: true
- pymdownx.progressbar
- pymdownx.smartsymbols
- pymdownx.superfences:
custom_fences:
- name: math
class: arithmatex
format: !!python/name:pymdownx.arithmatex.fence_mathjax_format
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
- pymdownx.tabbed:
alternate_style: true
- attr_list
- markdown.extensions.def_list
- md_in_html
- toc:
permalink: true