summaryrefslogtreecommitdiff
path: root/mod/tools/typst/packages/tmu
diff options
context:
space:
mode:
authorKleidi Bujari <mail@4kb.net>2025-04-02 21:59:20 -0400
committerKleidi Bujari <mail@4kb.net>2025-04-02 21:59:20 -0400
commit09c2b6de63a6ff35348fcb2c2eb57b974f0a8a52 (patch)
treebd8f1d3a51f12cd98764ae572b00f0b32de62644 /mod/tools/typst/packages/tmu
parentb1738c105de3bc0ba7cd27f68c9eb146439a0964 (diff)
downloaddepot-09c2b6de63a6ff35348fcb2c2eb57b974f0a8a52.tar.gz
depot-09c2b6de63a6ff35348fcb2c2eb57b974f0a8a52.tar.bz2
depot-09c2b6de63a6ff35348fcb2c2eb57b974f0a8a52.zip
automate project structure
Diffstat (limited to 'mod/tools/typst/packages/tmu')
-rw-r--r--mod/tools/typst/packages/tmu/template.typ37
-rw-r--r--mod/tools/typst/packages/tmu/typst.toml7
2 files changed, 0 insertions, 44 deletions
diff --git a/mod/tools/typst/packages/tmu/template.typ b/mod/tools/typst/packages/tmu/template.typ
deleted file mode 100644
index 721e7b6..0000000
--- a/mod/tools/typst/packages/tmu/template.typ
+++ /dev/null
@@ -1,37 +0,0 @@
-#let report(
- title: [],
- course: [],
- semester: [],
- authors: (),
- doc,
-) = {
- set page(
- paper: "us-letter",
- margin: 1.5in,
- numbering: "1",
- header: align(horizon, strong(course + h(1fr) + semester)),
- )
-
- set align(center)
- text(18pt, strong(title))
- linebreak()
- text(12pt, "Toronto Metropolitan University")
-
- v(24pt)
-
- grid(
- columns: (1fr,) * calc.min(authors.len(), 4),
- row-gutter: 12pt,
- ..authors.map(a => [
- #a.name \
- #a.id \
- #link("mailto:" + a.email)
- ])
- )
-
- set align(left)
- set par(justify: true)
- v(24pt)
-
- doc
-}
diff --git a/mod/tools/typst/packages/tmu/typst.toml b/mod/tools/typst/packages/tmu/typst.toml
deleted file mode 100644
index caf96d7..0000000
--- a/mod/tools/typst/packages/tmu/typst.toml
+++ /dev/null
@@ -1,7 +0,0 @@
-[package]
-name = "tmu"
-version = "0.0.0"
-entrypoint = "template.typ"
-authors = ["Kleidi Bujari"]
-license = "MIT"
-description = "TMU engineering report template"