Compare commits

..

12 Commits

Author SHA1 Message Date
358a289da2
Convert "Passing Balls" to typst
Some checks failed
CI / Typos (pull_request) Successful in 32s
CI / Typst formatting (pull_request) Successful in 20s
CI / Build (pull_request) Failing after 13m30s
2025-01-23 13:34:46 -08:00
7bc3520855
Convert "Zeno's Furniture" to typst
Some checks failed
CI / Typos (pull_request) Successful in 2m44s
CI / Typst formatting (pull_request) Successful in 4m26s
CI / Build (pull_request) Failing after 12m56s
2025-01-23 13:31:21 -08:00
f89ec34a63
Convert "Gallery" to typst 2025-01-23 13:15:34 -08:00
de13c46a18
Convert "Odd Dice" to typst 2025-01-23 13:15:34 -08:00
db7ea36df9
Convert "Travellers" to typst 2025-01-23 13:15:34 -08:00
8b796b36e8
Convert "Regex" to typst 2025-01-23 13:15:34 -08:00
65737c9da6
Convert "Prime Factors" to typst 2025-01-23 13:15:34 -08:00
151d05ea3a
Convert "Partition Products" to typst 2025-01-23 13:15:34 -08:00
eef1aa5c0e
Convert "Mario Kart" to typst 2025-01-23 13:15:34 -08:00
5cdd35ea72
Convert "Fuse Timers" to typst 2025-01-23 13:15:34 -08:00
8494666394
Convert "fmod" to typst 2025-01-23 13:15:34 -08:00
e8224846ab
Convert "A Familiar Concept" to typst 2025-01-23 13:15:34 -08:00

View File

@ -185,18 +185,15 @@
//
#let note(content, type: none) = {
if type != none {
text(fill: rgb(100, 100, 100), style: "oblique", [#type: ])
}
#let hint(content) = {
text(fill: rgb(100, 100, 100), style: "oblique", "Hint: ")
text(fill: rgb(100, 100, 100), content)
}
#let hint(content) = {
note(content, type: "Hint")
#let note(content) = {
text(fill: rgb(100, 100, 100), content)
}
#let examplesolution(content) = {
let c = oblue
@ -284,7 +281,6 @@
if show_solutions {
warn
}
doc
}