You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+52-2Lines changed: 52 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
<divalign="center">
2
2
3
-

3
+

4
4
5
5
</div>
6
6
@@ -18,5 +18,55 @@ This is the Notebookinator, a [Typst](https://github.com/typst/typst) template d
18
18
19
19
To get started, read the [documentation](./docs.pdf). If you have questions, or just want to hang out, feel free to join our [Discord server](https://discord.gg/sUpcVPtBDg).
20
20
21
+
## Gallery
22
+
23
+
### Radial Theme
24
+
25
+
<table>
26
+
<tr>
27
+
<td>
28
+
<a href="./gallery/radial.typ">
29
+
<img src="./gallery/radial-4.png" width="350px">
30
+
</a>
31
+
</td>
32
+
<td>
33
+
<a href="./gallery/radial.typ">
34
+
<img src="./gallery/radial-5.png" width="350px">
35
+
</a>
36
+
</td>
37
+
38
+
<td>
39
+
<a href="./gallery/radial.typ">
40
+
<img src="./gallery/radial-6.png" width="350px">
41
+
</a>
42
+
</td>
43
+
</tr>
44
+
</table>
45
+
46
+
## Linear Theme
47
+
48
+
<table>
49
+
<tr>
50
+
<td>
51
+
<a href="./gallery/linear.typ">
52
+
<img src="./gallery/linear-03.png" width="350px">
53
+
</a>
54
+
</td>
55
+
<td>
56
+
<a href="./gallery/linear.typ">
57
+
<img src="./gallery/linear-04.png" width="350px">
58
+
</a>
59
+
</td>
60
+
61
+
<td>
62
+
<a href="./gallery/linear.typ">
63
+
<img src="./gallery/linear-05.png" width="350px">
64
+
</a>
65
+
</td>
66
+
</tr>
67
+
</table>
68
+
21
69
## Special Thanks
22
-
- Maqmoon (logo drawing)
70
+
71
+
- Maqmoon (logo drawing)
72
+
- CeTZ (inspiration for a lot of different things)
This key represents each step of the Engineering Design Process with a color that corresponds to the Engineering Notebooking Rubric categories. In the table of contents, each page is assigned to a color which summarizes the content on that page. However, if a page highlights multiple sections of the Engineering Design Process, headings on the page will be colored accordingly.
14
+
15
+
#grid(
16
+
columns: (1fr, 5fr),
17
+
gutter: 10pt,
18
+
// Row 1
19
+
square(size: 1in, fill: components.dark-red),
20
+
align(horizon,
21
+
[
22
+
#settext(size: 14pt)
23
+
Identify the Problem
24
+
25
+
#settext(size: 12pt)
26
+
Identifies the game and robot design challenges in detail at the start of each design process cycle with words and pictures. States the goals for accomplishing the challenge.
27
+
]),
28
+
// Row 2
29
+
square(size: 1in, fill: components.dark-yellow),
30
+
align(horizon,
31
+
[
32
+
#settext(size: 14pt)
33
+
Brainstorm, Diagram, or Prototype Solutions
34
+
35
+
#settext(size: 12pt)
36
+
Lists three or more possible solutions to the challenge with labeled diagrams. Citations provided for ideas that came from outside sources such as online videos or other teams.
37
+
]),
38
+
// Row 3
39
+
square(size: 1in, fill: components.dark-green),
40
+
align(horizon,
41
+
[
42
+
#settext(size: 14pt)
43
+
Select the Best Solution and Plan
44
+
45
+
#settext(size: 12pt)
46
+
Explains why the solution was selected through testing and/or a decision matrix. Fully describes the plan to implement the solution.
47
+
]),
48
+
// Row 4
49
+
square(size: 1in, fill: components.dark-blue),
50
+
align(horizon,
51
+
[
52
+
#settext(size: 14pt)
53
+
Build the Solution
54
+
55
+
#settext(size: 12pt)
56
+
Records the steps to build the solution. Includes enough detail that the reader can follow the logic used by the team to develop their robot design, as well as recreate the robot design from the documentation.
57
+
]),
58
+
// Row 5
59
+
square(size: 1in, fill: components.dark-purple),
60
+
align(horizon,
61
+
[
62
+
#settext(size: 14pt)
63
+
Program the Solution
64
+
65
+
#settext(size: 12pt)
66
+
Records the steps to program the solution. Includes enough detail that the reader can follow the logic used by the team to develop their robot code, as well as recreate the robot code from the documentation.
67
+
]),
68
+
// Row 6
69
+
square(size: 1in, fill: components.dark-pink),
70
+
align(horizon,
71
+
[
72
+
#settext(size: 14pt)
73
+
Test the Solution
74
+
75
+
#settext(size: 12pt)
76
+
Records all the steps to test the solution, including test results.
77
+
]),
78
+
// Row 7
79
+
square(size: 1in, fill: components.surface-4),
80
+
align(horizon,
81
+
[
82
+
#settext(size: 14pt)
83
+
Reflect on Prior Solutions
84
+
85
+
#settext(size: 12pt)
86
+
Evaluates the decisions and mistakes made in the past to better prepare and overcome challenges in the future.
87
+
])
88
+
)
89
+
We also wanted to create a new category: Reflect on Prior Solutions. We believe this is an important step in the Engineering Design Process and we want to highlight our reflections using our color coding guide.
90
+
]
91
+
92
+
#create-frontmatter-entry(title: "Table of Contents")[
0 commit comments