typst-templates/general.typ

17 lines
281 B
Plaintext
Raw Normal View History

// general document
2023-08-08 21:23:42 -04:00
#import "main.typ": gen_preamble, doc_template, lref
#let template(
title: none,
authors: none,
2023-08-08 21:23:42 -04:00
suffix: none,
prefix: none,
body
) = {
doc_template({
2023-08-08 21:23:42 -04:00
gen_preamble(title: title, authors: authors, suffix: suffix, prefix: prefix)
body
})
}