2023-05-13 12:19:31 -04:00
|
|
|
// templates for compsci notes
|
|
|
|
|
2023-08-08 21:23:42 -04:00
|
|
|
#import "main.typ": gen_preamble, doc_template, mono_font, lref
|
2023-05-13 12:19:31 -04:00
|
|
|
#import "compsci.typ": source_code
|
|
|
|
|
|
|
|
#let template(
|
|
|
|
title: none,
|
|
|
|
authors: none,
|
|
|
|
body
|
|
|
|
) = {
|
|
|
|
doc_template({
|
2023-08-08 21:23:42 -04:00
|
|
|
gen_preamble(
|
|
|
|
title: title,
|
|
|
|
authors: authors,
|
|
|
|
prefix: [_Algorithm notes_]
|
|
|
|
)
|
2023-05-13 12:19:31 -04:00
|
|
|
|
|
|
|
body
|
|
|
|
})
|
|
|
|
}
|