2023-05-20 12:42:38 -04:00
|
|
|
// general document
|
|
|
|
|
2023-07-10 13:01:07 -04:00
|
|
|
#import "main.typ": gen_title, gen_authors, doc_template, lref
|
2023-05-20 12:42:38 -04:00
|
|
|
|
|
|
|
#let template(
|
|
|
|
title: none,
|
|
|
|
authors: none,
|
|
|
|
body
|
|
|
|
) = {
|
|
|
|
doc_template({
|
|
|
|
gen_title(title: title)
|
|
|
|
v(15pt, weak: true)
|
|
|
|
gen_authors(authors: authors)
|
|
|
|
body
|
|
|
|
})
|
|
|
|
}
|