typst-templates/general.typ
dogeystamp cdc874413c
general.typ: added
everything that doesn't need special things yet will symlink to this
2023-05-20 12:42:38 -04:00

17 lines
258 B
Plaintext

// 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
})
}