typst-templates/algs.typ
dogeystamp 99fd8e3788
overhaul a lot of stuff
- added lref feature which links to files in the knowledge base without
  having to add ten million "../../../"
- instructions changed so that now you can link to
  "/templates/template.typ" without having to add ten million
  "../../../" to the path
2023-07-10 13:01:07 -04:00

19 lines
322 B
Plaintext

// templates for compsci notes
#import "main.typ": gen_title, gen_authors, doc_template, mono_font, lref
#import "compsci.typ": source_code
#let template(
title: none,
authors: none,
body
) = {
doc_template({
gen_title(title: title)
v(15pt, weak: true)
gen_authors(authors: authors)
body
})
}