typst-templates/algs.typ
2023-08-08 21:23:42 -04:00

21 lines
328 B
Plaintext

// templates for compsci notes
#import "main.typ": gen_preamble, doc_template, mono_font, lref
#import "compsci.typ": source_code
#let template(
title: none,
authors: none,
body
) = {
doc_template({
gen_preamble(
title: title,
authors: authors,
prefix: [_Algorithm notes_]
)
body
})
}