generated from rzk-lang/rzk-project-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
mkdocs.yml
107 lines (101 loc) · 4.88 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
site_name: "HoTT Book formalisation in Rzk proof assistant"
repo_url: https://github.com/rzk-lang/hottbook
repo_name: rzk-lang/hottbook
edit_uri: edit/master
docs_dir: src
nav:
- General: index.md
- Foundations:
- 1 Type Theory:
- 1.4 Dependent function types: 1-foundations/1-type-theory/04-dependent-function-types.rzk.md
- 1.5 Product types: 1-foundations/1-type-theory/05-product-types.rzk.md
- 1.6 Dependent pair types: 1-foundations/1-type-theory/06-dependent-pair-types.rzk.md
- 1.7 Coproduct types: 1-foundations/1-type-theory/07-coproduct-types.rzk.md
- 1.8 The type of booleans: 1-foundations/1-type-theory/08-booleans.rzk.md
- 1.9 The natural numbers: 1-foundations/1-type-theory/09-natural-numbers.rzk.md
- 1.10 Pattern matching and recursion: 1-foundations/1-type-theory/10-pattern-matching-and-recursion.rzk.md
- 1.11 Propositions as types: 1-foundations/1-type-theory/11-propositions-as-types.rzk.md
- 1.12 Identity types: 1-foundations/1-type-theory/12-identity-types.rzk.md
- Exercises: 1-foundations/1-type-theory/exercises/README.md
- 2 Homotopy Type Theory:
- 2.1 Types are higher groupoids: 1-foundations/2-homotopy-type-theory/01-types-are-higher-groupoids.rzk.md
- 2.2 Functions are functors: 1-foundations/2-homotopy-type-theory/02-functions-are-functors.rzk.md
- 2.3 Type families are fibrations: 1-foundations/2-homotopy-type-theory/03-type-families-are-fibrations.rzk.md
- 2.4 Homotopies and equivalences: 1-foundations/2-homotopy-type-theory/04-homotopies-and-equivalences.rzk.md
- 2.5 The higher groupoid structure of type formers: 1-foundations/2-homotopy-type-theory/05-the-higher-groupoid-structure-of-type-formers.rzk.md
- 2.6 Cartesian product types: 1-foundations/2-homotopy-type-theory/06-cartesian-product-types.rzk.md
- 2.7 Σ-types: 1-foundations/2-homotopy-type-theory/07-sigma-types.rzk.md
- 2.8 The unit type: 1-foundations/2-homotopy-type-theory/08-the-unit-type.rzk.md
- 2.9 Π-types and the function extensionality axiom: 1-foundations/2-homotopy-type-theory/09-pi-types-and-function-extensionality.rzk.md
- 2.10 Universes and univalence axiom: 1-foundations/2-homotopy-type-theory/10-universes-and-univalence-axiom.rzk.md
- 2.11 Identity type: 1-foundations/2-homotopy-type-theory/11-identity-type.rzk.md
- 2.12 Coproducts: 1-foundations/2-homotopy-type-theory/12-coproducts.rzk.md
- 2.13 Natural numbers: 1-foundations/2-homotopy-type-theory/13-natural-numbers.rzk.md
- "2.14 Example: equality of structures": 1-foundations/2-homotopy-type-theory/14-example-equality-of-structures.rzk.md
- 2.15 Universal properties: 1-foundations/2-homotopy-type-theory/15-universal-properties.rzk.md
- Exercises: 1-foundations/2-homotopy-type-theory/exercises/README.md
- 3 Sets and Logic:
- 3.1 Sets and n-types: 1-foundations/3-sets-and-logic/01-sets-and-n-types.rzk.md
- 3.2 Propositions as Types?: 1-foundations/3-sets-and-logic/02-propositions-as-types.rzk.md
- 3.3 Mere propositions: 1-foundations/3-sets-and-logic/03-mere-propositions.rzk.md
- 3.11 Contractibility: 1-foundations/3-sets-and-logic/11-contractibility.rzk.md
not_in_nav: |
1-foundations/0-chapter-template/
1-foundations/*/exercises/*.rzk.md
markdown_extensions:
- admonition
- footnotes
- pymdownx.details
- mdx_math
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.superfences
- toc:
permalink: true
- pymdownx.arithmatex:
generic: true
- attr_list
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
theme:
name: material
custom_dir: overrides
logo: assets/images/logo-1000x1000.png
icon:
repo: fontawesome/brands/github
edit: material/pencil
view: material/eye
features:
- content.code.copy
- content.action.edit
- navigation.footer
- navigation.sections
- navigation.path
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
primary: amber
scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
primary: black
scheme: slate
toggle:
icon: material/brightness-4
name: Switch to light mode
extra_javascript:
- javascript/mathjax.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdnjs.cloudflare.com/ajax/libs/mathjax/3.2.2/es5/tex-mml-chtml.min.js
plugins:
- search
- rzk:
render_svg: false # multi-file projects are not supported well
anchor_definitions: true