forked from anderkve/FYS3150
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_toc.yml
92 lines (77 loc) · 2.8 KB
/
_toc.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
# Table of contents
# Reference: https://jupyterbook.org/customize/toc.html
format: jb-book
root: intro
parts:
- caption: Getting ready
chapters:
- file: book/getting_ready/windows_users
- file: book/getting_ready/mac_users
- file: book/getting_ready/linux_users
- caption: Using the terminal
chapters:
- file: book/using_the_terminal/basics
- file: book/using_the_terminal/keyboard_shortcuts
- caption: Using git and GitHub
chapters:
- file: book/using_git/introduction_to_git
- file: book/using_git/setting_up_git_and_a_GitHub_repo
- file: book/using_git/add_a_README
- file: book/using_git/using_git
- file: book/using_git/dealing_with_merge_conflicts
- file: book/using_git/recover_an_old_version_of_a_file
- caption: Introduction to C++
chapters:
- file: book/introduction_to_cpp/intro
- file: book/introduction_to_cpp/hello_world
- file: book/introduction_to_cpp/compiling_and_linking_take_1
- file: book/introduction_to_cpp/source_files_and_header_files
- file: book/introduction_to_cpp/variables
- file: book/introduction_to_cpp/functions_take_1
- file: book/introduction_to_cpp/if_else
- file: book/introduction_to_cpp/loops
- file: book/introduction_to_cpp/containers
- file: book/introduction_to_cpp/intro_to_armadillo
- file: book/introduction_to_cpp/pointers
#- file: book/introduction_to_cpp/references
#- file: book/introduction_to_cpp/functions_take_2
#- file: book/introduction_to_cpp/declaration_vs_definition
#- file: book/introduction_to_cpp/input_and_output
#- file: book/introduction_to_cpp/compiling_and_linking_take_2
- file: book/introduction_to_cpp/classes
#- file: book/introduction_to_cpp/common_errors
#- file: book/introduction_to_cpp/debugging
- file: book/introduction_to_cpp/online_resources
- caption: Optimization
chapters:
- file: book/optimization/memory_is_the_bottleneck
- caption: Parallelization
chapters:
- file: book/parallelization/introduction_to_openmp
- file: book/parallelization/using_openmp
- caption: Using Make
chapters:
- file: book/using_make/intro
- caption: Writing reports
chapters:
- file: book/writing_reports/introduction_to_latex
- caption: Projects
chapters:
- file: book/projects/project1
# # Example
#
# format: jb-book
# root: index
# parts:
# - caption: Name of Part 1
# chapters:
# - file: path/to/part1/chapter1
# - file: path/to/part1/chapter2
# sections:
# - file: path/to/part1/chapter2/section1
# - caption: Name of Part 2
# chapters:
# - file: path/to/part2/chapter1
# - file: path/to/part2/chapter2
# sections:
# - file: path/to/part2/chapter2/section1