Compare commits

...

2 Commits

Author SHA1 Message Date
cdc874413c
general.typ: added
everything that doesn't need special things yet will symlink to this
2023-05-20 12:42:38 -04:00
0213d0bfe1
compsci.typ: add "cheated" problem status 2023-05-20 12:41:52 -04:00
3 changed files with 23 additions and 0 deletions

View File

@ -10,6 +10,12 @@
*Status*: Completed *Status*: Completed
] ]
}) })
} else if stat == "cheated" {
align(center, {
text(fill: rgb("#aaaa22"))[
*Status*: Solved with editorial
]
})
} else { } else {
align(center, { align(center, {
text(fill: rgb("#aa4422"))[ text(fill: rgb("#aa4422"))[

16
general.typ Normal file
View File

@ -0,0 +1,16 @@
// general document
#import "main.typ": gen_title, gen_authors, doc_template
#let template(
title: none,
authors: none,
body
) = {
doc_template({
gen_title(title: title)
v(15pt, weak: true)
gen_authors(authors: authors)
body
})
}

1
math_prob.typ Symbolic link
View File

@ -0,0 +1 @@
general.typ