aboutsummaryrefslogtreecommitdiff
path: root/typst/README.md
diff options
context:
space:
mode:
authorAnhgelus Morhtuuzh <william@herges.fr>2026-01-12 20:04:13 +0100
committerAnhgelus Morhtuuzh <william@herges.fr>2026-01-15 23:01:29 +0100
commitb6677f5d15ea05b3c7410c8a9cff01f5e426fd39 (patch)
treede40d0179b8e0e3625438c48e7483d95bdb76369 /typst/README.md
parent27703f70d907a78b2b0341ecc77bf4e8ed9fe6c1 (diff)
feat(typst): template file
Diffstat (limited to 'typst/README.md')
-rw-r--r--typst/README.md29
1 files changed, 29 insertions, 0 deletions
diff --git a/typst/README.md b/typst/README.md
new file mode 100644
index 0000000..2f8dd4c
--- /dev/null
+++ b/typst/README.md
@@ -0,0 +1,29 @@
+# typst scripts
+
+The version of these scripts will always be `1.0.0`, because using anything else looks like to be too complicated for
+anything.
+
+## `template.typ`
+
+This template requires:
+- `Inter` as the sans-serif font;
+- `PT Astra Serif` as the serif font;
+- `FiraCode Nerd Font Mono` as the monospace font.
+
+These can be freely used.
+I may add an option to modify this.
+
+Import it and load it with:
+```typ
+// import the script from the local repo
+// if you have modified the repo name, replace `@local` with their name
+#import "@local/template:1.0.0": *
+
+// initialize template
+#show: doc.with(
+ authors: (
+ (name: "Your Name", affiliation: "Your affiliation", email: "Your email"),
+ ),
+ page_title: "Page title :D",
+)
+```