forked from Slope86/QIRT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
74 lines (64 loc) · 1.95 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
site_name: QIRT Documentation
theme:
name: "material"
features:
- search.suggest
- search.highlight
- content.code.copy
- navigation.instant
- navigation.tracking
- navigation.tabs
# - toc.integrate
- navigation.prune
- navigation.indexes
- navigation.top
icon:
repo: fontawesome/brands/github
plugins:
- search
- mkdocstrings:
handlers:
python:
paths: [.]
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.arithmatex:
generic: true
- attr_list
- md_in_html
- toc:
toc_depth: 3
extra_javascript:
- javascripts/katex.js
- https://unpkg.com/katex@0/dist/katex.min.js
- https://unpkg.com/katex@0/dist/contrib/auto-render.min.js
extra_css:
- https://unpkg.com/katex@0/dist/katex.min.css
nav:
- Welcome to QIRT: index.md
- Tutorials:
- tutorials/index.md
- Setup: tutorials/setup.md
- Create a Basic Quantum State: tutorials/basic_create_state.md
- Create a Basic Quantum Circuit: tutorials/basic_create_circuit.md
- Applye the Quantum Circuit to the Quantum State: tutorials/apply_circuit.md
- Measure the Quantum State: tutorials/basic_measurement.md
- How-To Guides:
- how_to_guides/index.md
- Create Quantum States: how_to_guides/create_states.md
- Visualize Quantum States: how_to_guides/visualize_states.md
- Create Quantum Circuits: how_to_guides/create_circuits.md
- Visualize Quantum Measurements: how_to_guides/visualize_measurements.md
- Obtain Post-Measurement States: how_to_guides/post_measurement_states.md
- Customize Ket Notation: how_to_guides/customize_ket_notation.md
- Reference:
- reference/index.md
- QuantumState: reference/quantum_state.md
- QuantumCircuit: reference/quantum_circuit.md
repo_url: https://github.com/Slope86/QIRT
repo_name: Slope86/QIRT
site_url: https://slope86.github.io/QIRT/