From 8c478a8d0fda1e45f4d0da8fa5457b9644f6dcbe Mon Sep 17 00:00:00 2001 From: Gongqi Huang Date: Wed, 2 Jul 2025 22:53:27 -0400 Subject: [PATCH 1/2] maintainers/scripts/update-typst-packages.py: Skip packages that cannot be found in the registry --- maintainers/scripts/update-typst-packages.py | 35 ++++++++++++++------ 1 file changed, 25 insertions(+), 10 deletions(-) diff --git a/maintainers/scripts/update-typst-packages.py b/maintainers/scripts/update-typst-packages.py index 2264f97d7706..f7b05dae7203 100755 --- a/maintainers/scripts/update-typst-packages.py +++ b/maintainers/scripts/update-typst-packages.py @@ -78,7 +78,14 @@ class TypstPackage: "nix-command", ] result = subprocess.run(cmd + [url], capture_output=True, text=True) - hash = re.search(r"hash\s+\'(sha256-.{44})\'", result.stderr).groups()[0] + # We currently rely on Typst Universe's github repository to + # track package dependencies. However, there might be an + # inconsistency between the registry and the repository. We + # skip packages that cannot be fetched from the registry. + if re.search(r"error: unable to download", result.stderr): + return url, None + else: + hash = re.search(r"hash\s+\'(sha256-.{44})\'", result.stderr).groups()[0] return url, hash def to_name_full(self): @@ -86,10 +93,14 @@ class TypstPackage: def to_attrs(self): deps = set() - excludes = list(map( - lambda e: os.path.join(self.path, e), - self.meta["package"]["exclude"] if "exclude" in self.meta["package"] else [], - )) + excludes = list( + map( + lambda e: os.path.join(self.path, e), + self.meta["package"]["exclude"] + if "exclude" in self.meta["package"] + else [], + ) + ) for root, _, files in os.walk(self.path): for file in filter(lambda f: f.split(".")[-1] == "typ", files): file_path = os.path.join(root, file) @@ -110,6 +121,9 @@ class TypstPackage: ) source_url, source_hash = self.source() + if not source_hash: + return None + return dict( url=source_url, hash=source_hash, @@ -152,11 +166,12 @@ def generate_typst_packages(preview_dir, output_file): def generate_package(pname, package_subtree): sorted_keys = sorted(package_subtree.keys(), key=Version, reverse=True) print(f"Generating metadata for {pname}") - return { - pname: OrderedDict( - (k, package_subtree[k].to_attrs()) for k in sorted_keys - ) - } + version_set = OrderedDict( + (k, a) + for k, a in [(k, package_subtree[k].to_attrs()) for k in sorted_keys] + if a is not None + ) + return {pname: version_set} if len(version_set) > 0 else {} with concurrent.futures.ThreadPoolExecutor(max_workers=100) as executor: sorted_packages = sorted(package_tree.items(), key=lambda x: x[0]) From a71f0d5a9b3aecdb864a9bc9e0ef2a29ce920b9b Mon Sep 17 00:00:00 2001 From: Gongqi Huang Date: Mon, 22 Sep 2025 17:56:37 -0400 Subject: [PATCH 2/2] typstPackages: 06/24/2025 -> 09/22/2025 --- .../typst/typst-packages-from-universe.toml | 4893 ++++++++++++++++- 1 file changed, 4892 insertions(+), 1 deletion(-) diff --git a/pkgs/by-name/ty/typst/typst-packages-from-universe.toml b/pkgs/by-name/ty/typst/typst-packages-from-universe.toml index 183c00c244c4..15b73161ad77 100644 --- a/pkgs/by-name/ty/typst/typst-packages-from-universe.toml +++ b/pkgs/by-name/ty/typst/typst-packages-from-universe.toml @@ -82,6 +82,18 @@ license = [ ] homepage = "https://github.com/avonmoll/ifacconf-typst" +[abyss-book."0.2.9"] +url = "https://packages.typst.org/preview/abyss-book-0.2.9.tar.gz" +hash = "sha256-mBsXJ5sW4w4UMpOS812ZQcz/DUoNEPLKx7H95tXiNoU=" +typstDeps = [ + "zh-kit_0_1_0", +] +description = "A dark-themed typst template" +license = [ + "MIT", +] +homepage = "https://github.com/CrossDark/AbyssBook" + [academic-conf-pre."0.1.0"] url = "https://packages.typst.org/preview/academic-conf-pre-0.1.0.tar.gz" hash = "sha256-12BrUly7fU/7c0ZB+OMY3UaV7ZpYUSWQUywc042ciL8=" @@ -190,6 +202,16 @@ license = [ ] homepage = "https://github.com/eltos/accelerated-jacow/" +[acrostiche."0.6.0"] +url = "https://packages.typst.org/preview/acrostiche-0.6.0.tar.gz" +hash = "sha256-/XY6OuGBYvx6+aXwg1EhMM04swOQ7asp3JgLk/JEMwM=" +typstDeps = [] +description = "Manage acronyms and their definitions in Typst" +license = [ + "MIT", +] +homepage = "https://github.com/Grisely/packages" + [acrostiche."0.5.2"] url = "https://packages.typst.org/preview/acrostiche-0.5.2.tar.gz" hash = "sha256-49mE2p7lh6AfiMcXQuPctfPoKuvN4f9/KMnUXe/o4uA=" @@ -404,6 +426,19 @@ license = [ ] homepage = "https://github.com/tristanduncombe/aero-navigator" +[agregyst."0.1.0"] +url = "https://packages.typst.org/preview/agregyst-0.1.0.tar.gz" +hash = "sha256-ejVmOx40ozuzVXhUf6nvnHm6Gg0be+RYT1uuMx7dNk0=" +typstDeps = [ + "cetz_0_4_1", + "jumble_0_0_1", +] +description = "Agregation Template for writting teaching lesson" +license = [ + "MIT", +] +homepage = "https://github.com/pauladam94/agregyst" + [ailab-isetbz."0.1.0"] url = "https://packages.typst.org/preview/ailab-isetbz-0.1.0.tar.gz" hash = "sha256-1VmymGotEYdX/RuIncMg7c61E3uC/KTgUNzFr0TWo7Q=" @@ -416,6 +451,16 @@ license = [ ] homepage = "https://github.com/a-mhamdi/ailab-isetbz" +[aio-studi-and-thesis."0.1.2"] +url = "https://packages.typst.org/preview/aio-studi-and-thesis-0.1.2.tar.gz" +hash = "sha256-b4ThVYZcKwjw2n2Fl2fGcyPJ0J+y6pkMMs+THxDsHv0=" +typstDeps = [] +description = "All-in-one template for students and theses" +license = [ + "MIT", +] +homepage = "https://github.com/fuchs-fabian/typst-template-aio-studi-and-thesis" + [aio-studi-and-thesis."0.1.1"] url = "https://packages.typst.org/preview/aio-studi-and-thesis-0.1.1.tar.gz" hash = "sha256-k3w4PQ0GBP5g3WQ4mtv+M7L/S4wtcXrGEUPj7OiuZt4=" @@ -444,6 +489,30 @@ license = [ ] homepage = "https://github.com/fuchs-fabian/typst-template-aio-studi-and-thesis" +[alchemist."0.1.8"] +url = "https://packages.typst.org/preview/alchemist-0.1.8.tar.gz" +hash = "sha256-GGOJ9TxctfYABiDU9NwMNDUjEzPoheuVnggfzIvhk6E=" +typstDeps = [ + "cetz_0_4_1", +] +description = "A package to render skeletal formulas using CeTZ" +license = [ + "MIT", +] +homepage = "https://github.com/Typsium/alchemist" + +[alchemist."0.1.7"] +url = "https://packages.typst.org/preview/alchemist-0.1.7.tar.gz" +hash = "sha256-PvuEbsV9aePaa6iPTZjJDVe5UF/iT+fZm6crLGrBSWc=" +typstDeps = [ + "cetz_0_4_1", +] +description = "A package to render skeletal formulas using CeTZ" +license = [ + "MIT", +] +homepage = "https://github.com/Typsium/alchemist" + [alchemist."0.1.6"] url = "https://packages.typst.org/preview/alchemist-0.1.6.tar.gz" hash = "sha256-+P34Ok62beVlxLq86Do3PWl7ispM4k3VvNxpEMEB/Ts=" @@ -529,6 +598,16 @@ license = [ ] homepage = "https://github.com/Robotechnic/alchemist" +[alexandria."0.2.1"] +url = "https://packages.typst.org/preview/alexandria-0.2.1.tar.gz" +hash = "sha256-bK+GyrEE0VXiKARCEy2oFEMkp6TTfQhQ+scM5i7+a8A=" +typstDeps = [] +description = "Use multiple bibliographies in a single Typst document " +license = [ + "MIT", +] +homepage = "https://github.com/SillyFreak/typst-alexandria" + [alexandria."0.2.0"] url = "https://packages.typst.org/preview/alexandria-0.2.0.tar.gz" hash = "sha256-N8O9v1tD6CemqbJjX8yTMK2ZGFFASLchZSEie1v2Y3w=" @@ -649,6 +728,46 @@ license = [ ] homepage = "https://github.com/platformer/typst-algorithms" +[algorithmic."1.0.5"] +url = "https://packages.typst.org/preview/algorithmic-1.0.5.tar.gz" +hash = "sha256-FM7k3Rkmwm0HKWqF3iI+79k+0AB84/t3aOfnW20VPjg=" +typstDeps = [] +description = "Algorithm pseudocode typesetting for Typst, inspired by algorithmicx in LaTeX" +license = [ + "MIT", +] +homepage = "https://github.com/typst-community/typst-algorithmic" + +[algorithmic."1.0.4"] +url = "https://packages.typst.org/preview/algorithmic-1.0.4.tar.gz" +hash = "sha256-yjGUubK5gClOug/r9ffg0kv2Z6N3moRZ7uBdYvkOwqA=" +typstDeps = [] +description = "Algorithm pseudocode typesetting for Typst, inspired by algorithmicx in LaTeX" +license = [ + "MIT", +] +homepage = "https://github.com/typst-community/typst-algorithmic" + +[algorithmic."1.0.3"] +url = "https://packages.typst.org/preview/algorithmic-1.0.3.tar.gz" +hash = "sha256-/wXKu7z+Z6aLhrjEdJzHyAgY47DQxea8yINSbf1M/gs=" +typstDeps = [] +description = "Algorithm pseudocode typesetting for Typst, inspired by algorithmicx in LaTeX" +license = [ + "MIT", +] +homepage = "https://github.com/typst-community/typst-algorithmic" + +[algorithmic."1.0.2"] +url = "https://packages.typst.org/preview/algorithmic-1.0.2.tar.gz" +hash = "sha256-crawgOMqisxSpBcqtzZIEYrmFULACaG9i4EiolOwB1I=" +typstDeps = [] +description = "Algorithm pseudocode typesetting for Typst, inspired by algorithmicx in LaTeX" +license = [ + "MIT", +] +homepage = "https://github.com/typst-community/typst-algorithmic" + [algorithmic."1.0.0"] url = "https://packages.typst.org/preview/algorithmic-1.0.0.tar.gz" hash = "sha256-PANFP/4IuLSVMn6SbECdEvSsyYc9KHJn7Ztqfl6DA4c=" @@ -974,6 +1093,18 @@ license = [ ] homepage = "https://github.com/mrwunderbar666/typst-apa7ish" +[ape."0.4.1"] +url = "https://packages.typst.org/preview/ape-0.4.1.tar.gz" +hash = "sha256-ngFhXySkHryy+mTGP4dFgNtnPC9NdpBsbZMhoRda0eM=" +typstDeps = [ + "cetz_0_3_2", + "cetz-plot_0_1_1", +] +description = "Stop monkeying around with your layouts! Get sophisticated with Ape for Typst" +license = [ + "MIT", +] + [ape."0.4.0"] url = "https://packages.typst.org/preview/ape-0.4.0.tar.gz" hash = "sha256-rlOMgzE9+1OrwLA4ng6gZQoa/oceq4IUKF8TbgOnPVc=" @@ -1126,6 +1257,20 @@ license = [ ] homepage = "https://github.com/mgoulao/arkheion" +[articulate-coderscompass."0.1.7"] +url = "https://packages.typst.org/preview/articulate-coderscompass-0.1.7.tar.gz" +hash = "sha256-XyH0cQZHBNGCN8Abq95anO9nGt5bS8e7tC2AknVIiuY=" +typstDeps = [ + "cmarker_0_1_6", + "mitex_0_2_5", + "zebraw_0_5_5", +] +description = "" +license = [ + "MIT", +] +homepage = "https://github.com/Coders-Compass/articulate-coderscompass" + [ascii-ipa."2.0.0"] url = "https://packages.typst.org/preview/ascii-ipa-2.0.0.tar.gz" hash = "sha256-E/ookDGdRJh0Ac29xnNV+AJVALUW/uM7MyztcFJlKdg=" @@ -1166,6 +1311,28 @@ license = [ ] homepage = "https://github.com/imatpot/typst-ascii-ipa" +[asciim."0.1.0"] +url = "https://packages.typst.org/preview/asciim-0.1.0.tar.gz" +hash = "sha256-UXJiGffdHPLMl7NwKWavNvzPiFljne3M1v9jjcJWrpE=" +typstDeps = [ + "cetz_0_4_1", +] +description = "Displaying ASCII tables with a 16x16 grid and overlays on elements" +license = [ + "MIT", +] +homepage = "https://github.com/waterlens/ascii-matrix" + +[athena-tu-darmstadt-exercise."0.2.0"] +url = "https://packages.typst.org/preview/athena-tu-darmstadt-exercise-0.2.0.tar.gz" +hash = "sha256-dtDAL9DwtJStoXylWkSWIfYJcV24lB5kw9fC9YXwJME=" +typstDeps = [] +description = "Exercise template for TU Darmstadt (Technische Universität Darmstadt" +license = [ + "MIT", +] +homepage = "https://github.com/JeyRunner/tuda-typst-templates" + [athena-tu-darmstadt-exercise."0.1.0"] url = "https://packages.typst.org/preview/athena-tu-darmstadt-exercise-0.1.0.tar.gz" hash = "sha256-xZafuXAwXLTvpJvzjeFwSCla1rJZGsBSJjNkZgIJzQY=" @@ -1176,6 +1343,18 @@ license = [ ] homepage = "https://github.com/JeyRunner/tuda-typst-templates" +[athena-tu-darmstadt-thesis."0.1.1"] +url = "https://packages.typst.org/preview/athena-tu-darmstadt-thesis-0.1.1.tar.gz" +hash = "sha256-z9ZlsCzidynlnCPaQrniwAhS71lcOYv61mvCy8oczss=" +typstDeps = [ + "i-figured_0_2_3", +] +description = "Thesis template for TU Darmstadt (Technische Universität Darmstadt" +license = [ + "MIT", +] +homepage = "https://github.com/JeyRunner/tuda-typst-templates" + [athena-tu-darmstadt-thesis."0.1.0"] url = "https://packages.typst.org/preview/athena-tu-darmstadt-thesis-0.1.0.tar.gz" hash = "sha256-xp2+xdOvfp4W49CAx7FAASLUMmwJ8YBx01m/zmdicO8=" @@ -1373,6 +1552,36 @@ license = [ ] homepage = "https://github.com/avonmoll/bamdone-rebuttal" +[barcala."0.1.4"] +url = "https://packages.typst.org/preview/barcala-0.1.4.tar.gz" +hash = "sha256-yRzq6t8JJLc9+BJeBuSxLyBBm6Z9jTcHuVMUE6r6pX4=" +typstDeps = [ + "lilaq_0_4_0", + "physica_0_9_5", + "valkyrie_0_2_2", + "zero_0_5_0", +] +description = "A report template for UNLP students, specially for engineering" +license = [ + "MIT", +] +homepage = "https://github.com/JuanM04/barcala" + +[barcala."0.1.3"] +url = "https://packages.typst.org/preview/barcala-0.1.3.tar.gz" +hash = "sha256-dzreqfQe6lME5w/huud3TcehZSSPE1sR2gVjVI6Vfps=" +typstDeps = [ + "fancy-units_0_1_1", + "lilaq_0_2_0", + "physica_0_9_5", + "valkyrie_0_2_2", +] +description = "A report template for UNLP students, specially for engineering" +license = [ + "MIT", +] +homepage = "https://github.com/JuanM04/barcala" + [barcala."0.1.2"] url = "https://packages.typst.org/preview/barcala-0.1.2.tar.gz" hash = "sha256-TrQa+i1lZP7CF7pHLF1BvTIzaYGimIiyVp5/S8/ZCYo=" @@ -1497,6 +1706,18 @@ license = [ ] homepage = "https://github.com/polylux-typ/basic" +[basic-report."0.3.1"] +url = "https://packages.typst.org/preview/basic-report-0.3.1.tar.gz" +hash = "sha256-HXEA2FpnVTicdOSkCggH2i0JLx5ENxQCSaUhcCzEncs=" +typstDeps = [ + "hydra_0_6_2", +] +description = "A simple template for reports" +license = [ + "MIT", +] +homepage = "https://github.com/roland-KA/basic-report-typst-template" + [basic-report."0.3.0"] url = "https://packages.typst.org/preview/basic-report-0.3.0.tar.gz" hash = "sha256-AMmfXmqp4ckLYl4tF0Rm9C5AqYuWSq5jQw6xqo20xNc=" @@ -1681,6 +1902,50 @@ license = [ ] homepage = "https://github.com/stuxf/basic-typst-resume-template" +[beautiful-abs."0.1.0"] +url = "https://packages.typst.org/preview/beautiful-abs-0.1.0.tar.gz" +hash = "sha256-UEOg8aoRaKZRIJxU+UO8dwnDJQ0jR9rmUwNB9M8t8ak=" +typstDeps = [] +description = "A package for creating beautiful standard abbreviations like i.e. or e.g" +license = [ + "MIT", +] +homepage = "https://github.com/judgeNotFound/beautiful-abs" + +[bei-report."0.1.1"] +url = "https://packages.typst.org/preview/bei-report-0.1.1.tar.gz" +hash = "sha256-b1Sa3TubVcJiA0vYnoJuelN4ZqsJoa4KCoWL+gcMERY=" +typstDeps = [] +description = "An unofficial Typst template for ENSIMAG internship report" +license = [ + "GPL-3.0-or-later", +] +homepage = "https://github.com/beatussum/typst-bei-report-template" + +[bei-report."0.1.0"] +url = "https://packages.typst.org/preview/bei-report-0.1.0.tar.gz" +hash = "sha256-LQ4gvAXLWGX0F3p3wos9tpln1wKofaAy52dJTpoTHPw=" +typstDeps = [] +description = "An unofficial Typst template for ENSIMAG internship report" +license = [ + "GPL-3.0-or-later", +] +homepage = "https://github.com/beatussum/typst-bei-report-template" + +[bellbird-udesc-paper."0.0.1"] +url = "https://packages.typst.org/preview/bellbird-udesc-paper-0.0.1.tar.gz" +hash = "sha256-Olx+u3MjRjS4SaAoDxcMiRQpmMXrmepDLI7bRORtQYI=" +typstDeps = [ + "codly_1_3_0", + "codly-languages_0_1_8", + "physica_0_9_5", +] +description = "An Udesc-style academic paper template" +license = [ + "LGPL-2.1-only", +] +homepage = "https://github.com/lucas-bublitz/bellbird-udesc-paper" + [biceps."0.0.1"] url = "https://packages.typst.org/preview/biceps-0.0.1.tar.gz" hash = "sha256-w72oSOKuw72q7hK5mF78nwRsWVnI/mAXQvFWtdp89KM=" @@ -1964,6 +2229,46 @@ license = [ "Apache-2.0", ] +[booktabs."0.0.4"] +url = "https://packages.typst.org/preview/booktabs-0.0.4.tar.gz" +hash = "sha256-EEJk86YztAFJixGvuMQ1fSgY7uiULgFZZ9f/kTS68eM=" +typstDeps = [] +description = "Table styling, inspired by LaTeX's Booktabs package" +license = [ + "LGPL-3.0-or-later", +] +homepage = "https://github.com/bzindovic/booktabs" + +[booktabs."0.0.3"] +url = "https://packages.typst.org/preview/booktabs-0.0.3.tar.gz" +hash = "sha256-f9J2kIj7gnihkFoFF2OBLV+M/OCIvVFeQq6Z9TUgLcU=" +typstDeps = [] +description = "Table styling, inspired by LaTeX's Booktabs package" +license = [ + "LGPL-3.0-or-later", +] +homepage = "https://github.com/bzindovic/booktabs" + +[booktabs."0.0.2"] +url = "https://packages.typst.org/preview/booktabs-0.0.2.tar.gz" +hash = "sha256-GkBxfqvi21C4wtE6Y/Ze5zia+wAZEAUK2UkZU+bLLhg=" +typstDeps = [] +description = "Table styling, inspired by LaTeX's Booktabs package" +license = [ + "LGPL-3.0-or-later", +] +homepage = "https://github.com/bzindovic/typst-packages" + +[booktabs."0.0.1"] +url = "https://packages.typst.org/preview/booktabs-0.0.1.tar.gz" +hash = "sha256-Glnax8JCr50n8Khwa7ZOR8uy5RIa7UGDaRvMI0bSQKs=" +typstDeps = [] +description = "Table styling, inspired by LaTeX's Booktabs package" +license = [ + "LGPL-3.0-or-later", +] +homepage = "https://github.com/bzindovic/typst-packages" + [boxed-sheet."0.1.0"] url = "https://packages.typst.org/preview/boxed-sheet-0.1.0.tar.gz" hash = "sha256-Es5jOwqOPhtbE3vZJKEoH2W/WFJyRdOLVS/fJ7pVcMc=" @@ -1994,6 +2299,18 @@ license = [ ] homepage = "https://app.radicle.xyz/nodes/seed.radicle.garden/rad:z3bYXx6FurPtAURke7sUV8ktrtFNt" +[brilliant-cv."2.0.6"] +url = "https://packages.typst.org/preview/brilliant-cv-2.0.6.tar.gz" +hash = "sha256-kcu3pxuMNlsNIvBed4Q9PEnCT9/y7NPcQNfHc5ZvaoQ=" +typstDeps = [ + "fontawesome_0_5_0", +] +description = "💼 another CV template for your job application, yet powered by Typst and more" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/yunanwg/brilliant-CV" + [brilliant-cv."2.0.5"] url = "https://packages.typst.org/preview/brilliant-cv-2.0.5.tar.gz" hash = "sha256-55ldsGnrsDowYYz1mxIlcLXIna8gRteDikv6K56aXDo=" @@ -2118,6 +2435,60 @@ license = [ ] homepage = "https://github.com/hzkonor/bubble-template" +[bubble-zju."0.1.0"] +url = "https://packages.typst.org/preview/bubble-zju-0.1.0.tar.gz" +hash = "sha256-AjBPrxEEk6OhhyFkXEBkXNobhWf1QzfR7xrrN8N3XHQ=" +typstDeps = [ + "fletcher_0_5_8", + "note-me_0_5_0", +] +description = "Modern Zhejiang Univerisity report" +license = [ + "MIT-0", +] +homepage = "https://github.com/inuEbisu/bubble-zju" + +[bullseye."0.1.0"] +url = "https://packages.typst.org/preview/bullseye-0.1.0.tar.gz" +hash = "sha256-L9eFegLTTCE/Vf38KzirwHqSRk1vHRHqnv+wOrQolV4=" +typstDeps = [] +description = "Hit the target (HTML or paged/PDF) when styling your Typst document" +license = [ + "MIT", +] +homepage = "https://github.com/SillyFreak/typst-bullseye" + +[burik."0.1.0"] +url = "https://packages.typst.org/preview/burik-0.1.0.tar.gz" +hash = "sha256-m7+iJFQv3vXz78f8Ncr9uNe6SaSrVJltRTSWtY0KWas=" +typstDeps = [ + "cetz_0_4_0", +] +description = "Visualization of 3x3 Rubik's Cube Algorithms for easier tutorials edition" +license = [ + "MIT", +] + +[bye-ubc."0.2.2"] +url = "https://packages.typst.org/preview/bye-ubc-0.2.2.tar.gz" +hash = "sha256-LOCUeu61I++mdCKZWEJQEZpKPCDheD58qd6858jpGA4=" +typstDeps = [] +description = "A template for theses at the University of British Columbia" +license = [ + "MIT", +] +homepage = "https://github.com/DJDuque/bye-ubc" + +[bye-ubc."0.2.1"] +url = "https://packages.typst.org/preview/bye-ubc-0.2.1.tar.gz" +hash = "sha256-QWVdNzxyf0C4oeH4X5P0tAWtg5eAtDbIwJyZRTbO9Pc=" +typstDeps = [] +description = "A template for theses at the University of British Columbia" +license = [ + "MIT", +] +homepage = "https://github.com/DJDuque/bye-ubc" + [bytefield."0.0.7"] url = "https://packages.typst.org/preview/bytefield-0.0.7.tar.gz" hash = "sha256-9DfhrwSRR/W/YC5N0IdYyh/ILP+2n+C88tWdCekWnt0=" @@ -2398,6 +2769,16 @@ license = [ ] homepage = "https://github.com/jneug/typst-ccicons" +[cellpress-unofficial."0.1.0"] +url = "https://packages.typst.org/preview/cellpress-unofficial-0.1.0.tar.gz" +hash = "sha256-ZCR1iYidFEGUO868TXkR0BicnvhFsy9KM8EimrU08MM=" +typstDeps = [] +description = "Unofficial Cell Press styles for Typst" +license = [ + "0BSD", +] +homepage = "https://github.com/mewmew/cellpress-unofficial" + [celluloid."0.1.0"] url = "https://packages.typst.org/preview/celluloid-0.1.0.tar.gz" hash = "sha256-MIR1y575oBcufXUDNL4I8D1LwHLqBVLW5iU+1QbU4PM=" @@ -2429,6 +2810,30 @@ license = [ ] homepage = "https://github.com/andreasKroepelin/cetramed-polylux" +[cetz."0.4.2"] +url = "https://packages.typst.org/preview/cetz-0.4.2.tar.gz" +hash = "sha256-fbYS5HNKNKF7JYAdG0xFMLryFoLAv4Kd3kV3rqiKWVo=" +typstDeps = [ + "oxifmt_1_0_0", +] +description = "Drawing with Typst made easy, providing an API inspired by TikZ and Processing. Includes modules for plotting, charts and tree layout" +license = [ + "LGPL-3.0-or-later", +] +homepage = "https://github.com/cetz-package/cetz" + +[cetz."0.4.1"] +url = "https://packages.typst.org/preview/cetz-0.4.1.tar.gz" +hash = "sha256-OhoYtv7j2//FT6qYlCw4ISuXwMOGEgMyiN/Mpwq2saM=" +typstDeps = [ + "oxifmt_1_0_0", +] +description = "Drawing with Typst made easy, providing an API inspired by TikZ and Processing. Includes modules for plotting, charts and tree layout" +license = [ + "LGPL-3.0-or-later", +] +homepage = "https://github.com/cetz-package/cetz" + [cetz."0.4.0"] url = "https://packages.typst.org/preview/cetz-0.4.0.tar.gz" hash = "sha256-f4x0/Bm2ivGu17hsYcly2K7R00gJNhbYckAjbczqM8I=" @@ -2685,6 +3090,16 @@ license = [ ] homepage = "https://github.com/johannes-wolf/cetz-venn" +[charged-ieee."0.1.4"] +url = "https://packages.typst.org/preview/charged-ieee-0.1.4.tar.gz" +hash = "sha256-sMm8mundrBeSU/FiFOvA/4Uu2S0vYRdpFO+vbudkf+A=" +typstDeps = [] +description = "An IEEE-style paper template to publish at conferences and journals for Electrical Engineering, Computer Science, and Computer Engineering" +license = [ + "MIT-0", +] +homepage = "https://github.com/typst/templates" + [charged-ieee."0.1.3"] url = "https://packages.typst.org/preview/charged-ieee-0.1.3.tar.gz" hash = "sha256-Ry2Xnw6YpWS9I3PzE+dj9ZRdZhtXDBLnVJKDAJY4au8=" @@ -2878,6 +3293,26 @@ license = [ ] homepage = "https://github.com/JamesxX/chemicoms-paper" +[cheq."0.3.0"] +url = "https://packages.typst.org/preview/cheq-0.3.0.tar.gz" +hash = "sha256-v/iuiH/dHNHTXRF9beWMQ61GCyo1qBh6/mSbrjhYUxw=" +typstDeps = [] +description = "Write markdown-like checklist easily" +license = [ + "MIT", +] +homepage = "https://github.com/OrangeX4/typst-cheq" + +[cheq."0.2.3"] +url = "https://packages.typst.org/preview/cheq-0.2.3.tar.gz" +hash = "sha256-mVnZgQndN5dIBKN+ICyOi/3C6GVAzW1ppcOAQ+hS9e4=" +typstDeps = [] +description = "Write markdown-like checklist easily" +license = [ + "MIT", +] +homepage = "https://github.com/OrangeX4/typst-cheq" + [cheq."0.2.2"] url = "https://packages.typst.org/preview/cheq-0.2.2.tar.gz" hash = "sha256-YtoXDJaC3CdggMpuT8WeWmo+adyOag9SMrQ6P20XypI=" @@ -3067,6 +3502,18 @@ license = [ ] homepage = "https://github.com/ljgago/typst-chords" +[chribel."1.0.0"] +url = "https://packages.typst.org/preview/chribel-1.0.0.tar.gz" +hash = "sha256-bgyOuNPJRo4XNVnIpXdXwcVRvCXcEePIgiIJBo1Qmf8=" +typstDeps = [ + "tableau-icons_0_334_1", +] +description = "A compact summary template with custom callouts" +license = [ + "EUPL-1.2", +] +homepage = "https://codeberg.org/joelvonrotz/typst-chribel-template" + [chromo."0.1.0"] url = "https://packages.typst.org/preview/chromo-0.1.0.tar.gz" hash = "sha256-oNDEPTHeTtnnfkhL2C0ewNLnBJJWqpWp7wyG4A+xrVM=" @@ -3218,6 +3665,16 @@ license = [ ] homepage = "https://git.kb28.ch/HEL/circuiteria" +[citegeist."0.2.0"] +url = "https://packages.typst.org/preview/citegeist-0.2.0.tar.gz" +hash = "sha256-4bvuLxM+h82wS/VroIksuwtC36nW2PRqvp23l7ny1uI=" +typstDeps = [] +description = "Makes a Bibtex bibliography available as a Typst dictionary" +license = [ + "MIT", +] +homepage = "https://github.com/alexanderkoller/typst-citegeist" + [citegeist."0.1.0"] url = "https://packages.typst.org/preview/citegeist-0.1.0.tar.gz" hash = "sha256-3tESfy/IyQSo2ubvAvm2BHwWPZQJVlJULndLjlVeSZo=" @@ -3228,6 +3685,18 @@ license = [ ] homepage = "https://github.com/alexanderkoller/typst-citegeist" +[cjk-unbreak."0.2.0"] +url = "https://packages.typst.org/preview/cjk-unbreak-0.2.0.tar.gz" +hash = "sha256-M6R3NaJ1bFMGPj7Ro8aMbwrVXe0aDr0iP8BYv2woL4Q=" +typstDeps = [ + "touying_0_6_1", +] +description = "Remove spaces caused by line breaks around CJK" +license = [ + "MIT", +] +homepage = "https://github.com/KZNS/cjk-unbreak" + [cjk-unbreak."0.1.1"] url = "https://packages.typst.org/preview/cjk-unbreak-0.1.1.tar.gz" hash = "sha256-if3e285Aj86MpsgHI0tyS4NlRH3W5A4VhLl/Yp+vTpc=" @@ -3252,6 +3721,21 @@ license = [ ] homepage = "https://github.com/KZNS/cjk-unbreak" +[classic-aau-report."0.3.1"] +url = "https://packages.typst.org/preview/classic-aau-report-0.3.1.tar.gz" +hash = "sha256-kDy0Z0f2ifKOdKa/PaPP608qXzmw1E6NTL40dIUY0iQ=" +typstDeps = [ + "glossy_0_8_0", + "headcount_0_1_0", + "hydra_0_6_2", + "subpar_0_2_2", +] +description = "A report template for students at Aalborg University (AAU" +license = [ + "MIT", +] +homepage = "https://github.com/Tinggaard/classic-aau-report" + [classic-aau-report."0.3.0"] url = "https://packages.typst.org/preview/classic-aau-report-0.3.0.tar.gz" hash = "sha256-SqWI3LPyvv5nGWeLfrMD3rLOMXer2UT2djt/iA9NlSE=" @@ -3474,6 +3958,76 @@ license = [ ] homepage = "https://github.com/roland-KA/clean-dhbw-typst-template" +[clean-hda."0.1.0"] +url = "https://packages.typst.org/preview/clean-hda-0.1.0.tar.gz" +hash = "sha256-P94SIGHfF+KmFSfOsUQFcsgLqUWjplsAQMevPa96SSw=" +typstDeps = [ + "codelst_2_0_2", + "glossarium_0_5_6", + "hydra_0_6_1", +] +description = "Computer Science Thesis for Hochschule Darmstadt (h_da" +license = [ + "MIT", +] +homepage = "https://github.com/stefan-ctrl/clean-hda-typst-template" + +[clean-hwr."0.1.4"] +url = "https://packages.typst.org/preview/clean-hwr-0.1.4.tar.gz" +hash = "sha256-1/Bi1Vkr4fO+2f/U8RyX8UMukFmV6pdFcOVIvhbqnao=" +typstDeps = [ + "acrostiche_0_6_0", + "glossarium_0_5_8", + "wordometer_0_1_4", +] +description = "A simple and good looking template for the Berlin School for Economics and Law" +license = [ + "MIT", +] +homepage = "https://github.com/testspieler09/clean-hwr" + +[clean-hwr."0.1.3"] +url = "https://packages.typst.org/preview/clean-hwr-0.1.3.tar.gz" +hash = "sha256-dnWXMoYUBeTszSGyp234LhpF5+S47LJVPQsxt396hqM=" +typstDeps = [ + "acrostiche_0_6_0", + "glossarium_0_5_8", + "wordometer_0_1_4", +] +description = "A simple and good looking template for the Berlin School for Economics and Law" +license = [ + "MIT", +] +homepage = "https://github.com/testspieler09/clean-hwr" + +[clean-hwr."0.1.2"] +url = "https://packages.typst.org/preview/clean-hwr-0.1.2.tar.gz" +hash = "sha256-Jvki1+ZnoYgP4aryIt6Kqm131ZrtNn7UlUfik/iBung=" +typstDeps = [ + "acrostiche_0_6_0", + "glossarium_0_5_8", + "wordometer_0_1_4", +] +description = "A simple and good looking template for the Berlin School for Economics and Law" +license = [ + "MIT", +] +homepage = "https://github.com/testspieler09/clean-hwr" + +[clean-hwr."0.1.1"] +url = "https://packages.typst.org/preview/clean-hwr-0.1.1.tar.gz" +hash = "sha256-FxkyyaJmLoV43mSRz9Ns/uMGlXB/dSPHWjUlx+MjxUc=" +typstDeps = [ + "acrostiche_0_5_2", + "glossarium_0_5_6", + "wordometer_0_1_4", +] +description = "A simple and good looking template for the Berlin School for Economics and Law" +license = [ + "MIT", +] +homepage = "https://github.com/testspieler09/clean-hwr" + [clean-hwr."0.1.0"] url = "https://packages.typst.org/preview/clean-hwr-0.1.0.tar.gz" hash = "sha256-on5VP/Qrk2rpn2t3YoEhcs9qgaG/Dyu4S7pkqFvvd1c=" @@ -3488,6 +4042,48 @@ license = [ ] homepage = "https://github.com/testspieler09/clean-hwr-template" +[clean-math-paper."0.2.4"] +url = "https://packages.typst.org/preview/clean-math-paper-0.2.4.tar.gz" +hash = "sha256-stmqMjEBgbeQTLrBo3Gdi8lP6rOrm3saOV23WYibCu4=" +typstDeps = [ + "great-theorems_0_1_2", + "i-figured_0_2_4", + "rich-counters_0_2_2", +] +description = "A simple and good looking template for mathematical papers" +license = [ + "MIT", +] +homepage = "https://github.com/JoshuaLampert/clean-math-paper" + +[clean-math-paper."0.2.3"] +url = "https://packages.typst.org/preview/clean-math-paper-0.2.3.tar.gz" +hash = "sha256-f/ECy7LyeDxjamQ0Wwcmr/CnnWQgp71aqmgPT5IOj40=" +typstDeps = [ + "great-theorems_0_1_2", + "i-figured_0_2_4", + "rich-counters_0_2_2", +] +description = "A simple and good looking template for mathematical papers" +license = [ + "MIT", +] +homepage = "https://github.com/JoshuaLampert/clean-math-paper" + +[clean-math-paper."0.2.2"] +url = "https://packages.typst.org/preview/clean-math-paper-0.2.2.tar.gz" +hash = "sha256-6V9d+JByXXDVTC8jCY25D8EkbLyOBmYRdVieDy+4AoI=" +typstDeps = [ + "great-theorems_0_1_2", + "i-figured_0_2_4", + "rich-counters_0_2_2", +] +description = "A simple and good looking template for mathematical papers" +license = [ + "MIT", +] +homepage = "https://github.com/JoshuaLampert/clean-math-paper" + [clean-math-paper."0.2.1"] url = "https://packages.typst.org/preview/clean-math-paper-0.2.1.tar.gz" hash = "sha256-DyXu46y/WFZPZeCLkrX/piFhy6lmZZm0ZuTB6CHf6iE=" @@ -3570,6 +4166,23 @@ license = [ ] homepage = "https://github.com/JoshuaLampert/clean-math-presentation" +[clean-math-thesis."0.4.0"] +url = "https://packages.typst.org/preview/clean-math-thesis-0.4.0.tar.gz" +hash = "sha256-J7HoM4aC3FTdKSZDrz2OlmtCwMzQSKJ0qjU+E0BKzCA=" +typstDeps = [ + "equate_0_3_2", + "great-theorems_0_1_2", + "hydra_0_6_1", + "i-figured_0_2_4", + "lovelace_0_3_0", + "rich-counters_0_2_2", +] +description = "A simple and good looking template for mathematical theses" +license = [ + "MIT", +] +homepage = "https://github.com/sebaseb98/clean-math-thesis" + [clean-math-thesis."0.3.0"] url = "https://packages.typst.org/preview/clean-math-thesis-0.3.0.tar.gz" hash = "sha256-67E7/gEnO9z7lnDLqcsEysCtVtbw5VA4BXVmG/QmpvQ=" @@ -3619,6 +4232,62 @@ license = [ ] homepage = "https://github.com/sebaseb98/clean-math-thesis" +[clean-uoft-thesis."0.1.0"] +url = "https://packages.typst.org/preview/clean-uoft-thesis-0.1.0.tar.gz" +hash = "sha256-r+ojrTHkXSjQJD0nyQXbu8YgybLcP8Zr4LZPU/Zcwsg=" +typstDeps = [ + "wordometer_0_1_4", +] +description = "Unofficial formatting-compliant masters and doctoral thesese for the School of Graduate Studies at the University of Toronto" +license = [ + "MIT", +] +homepage = "https://github.com/pvelayudhan/clean-uoft-thesis" + +[cleanified-hpi-research-proposal."0.1.0"] +url = "https://packages.typst.org/preview/cleanified-hpi-research-proposal-0.1.0.tar.gz" +hash = "sha256-/n21OXWns8xee8gscLjsmZhshKZFuflY0XA+FgF+IPs=" +typstDeps = [ + "biceps_0_0_1", +] +description = "Clean-Asthetic HPI Research Proposal" +license = [ + "MIT", +] +homepage = "https://gitlab.hpi.de/robert.richter/typst-research-proposal-template/" + +[cleanified-hpi-research-proposal."0.0.2"] +url = "https://packages.typst.org/preview/cleanified-hpi-research-proposal-0.0.2.tar.gz" +hash = "sha256-VjirzYDxEL03o3sAcY7+Iv3Skb7cuxxuqSPPXKKDNts=" +typstDeps = [ + "biceps_0_0_1", +] +description = "Clean-Asthetic HPI Research Proposal" +license = [ + "MIT", +] +homepage = "https://gitlab.hpi.de/robert.richter/typst-research-proposal-template/" + +[cleanified-hpi-research-proposal."0.0.1"] +url = "https://packages.typst.org/preview/cleanified-hpi-research-proposal-0.0.1.tar.gz" +hash = "sha256-rQcyLHCAZE42YbBvr4B/YTy8N+caDL6D8z/Tlgyo+7s=" +typstDeps = [] +description = "Clean-Asthetic HPI Research Proposal" +license = [ + "MIT", +] +homepage = "https://gitlab.hpi.de/robert.richter/typst-research-proposal-template/" + +[cleanified-hpi-thesis."0.0.1"] +url = "https://packages.typst.org/preview/cleanified-hpi-thesis-0.0.1.tar.gz" +hash = "sha256-g4gquvnBSVczNbu5dg7xcO9QcVHfDWQ28e231INWAN8=" +typstDeps = [] +description = "Clean-Asthetic Bachelor's and Master's thesis for HPI, University of Potsdam" +license = [ + "MIT", +] +homepage = "https://gitlab.hpi.de/robert.richter/typst-thesis-template/" + [clear-iclr."0.7.0"] url = "https://packages.typst.org/preview/clear-iclr-0.7.0.tar.gz" hash = "sha256-d5Jv1xtNJllFK6nC56jU6xmfMZa2tp2GvNwspDLxW6c=" @@ -3639,6 +4308,26 @@ license = [ ] homepage = "https://github.com/daskol/typst-templates" +[clickworthy-resume."1.0.1"] +url = "https://packages.typst.org/preview/clickworthy-resume-1.0.1.tar.gz" +hash = "sha256-pTBkOTg2dpwyp19lP73AVasB2mQUhb8ZnBcbJHXDmgw=" +typstDeps = [] +description = "A simple, flexible, responsive, ATS-friendly, and click-worthy resume. Extra cover letter and extendable to a CV" +license = [ + "MIT", +] +homepage = "https://github.com/AbdullahHendy/clickworthy-resume" + +[clickworthy-resume."1.0.0"] +url = "https://packages.typst.org/preview/clickworthy-resume-1.0.0.tar.gz" +hash = "sha256-YcSLT+J5y24eDbba5qCTC4J5kjbvXCR6b/vboWTVs98=" +typstDeps = [] +description = "A simple, flexible, responsive, ATS-friendly, and click-worthy resume. Extra cover letter and extendable to a CV" +license = [ + "MIT", +] +homepage = "https://github.com/AbdullahHendy/clickworthy-resume" + [cmarker."0.1.6"] url = "https://packages.typst.org/preview/cmarker-0.1.6.tar.gz" hash = "sha256-L/lp2Skb/MUxNYmLL1D2MXW/pkQK8Rw6WgkmBIfnc74=" @@ -3711,6 +4400,18 @@ license = [ ] homepage = "https://github.com/SabrinaJewson/cmarker.typ" +[cob-unofficial."0.1.0"] +url = "https://packages.typst.org/preview/cob-unofficial-0.1.0.tar.gz" +hash = "sha256-gIsw3tI15T62pBPUqESOfhr3JyZzZhuTKOcLcxbckKU=" +typstDeps = [ + "hallon_0_1_2", +] +description = "Unofficial CoB (The Company of Biologists) template for Typst" +license = [ + "0BSD", +] +homepage = "https://github.com/mewmew/cob-unofficial" + [codedis."0.1.0"] url = "https://packages.typst.org/preview/codedis-0.1.0.tar.gz" hash = "sha256-SWQUciVv3d7LY65zCYMq88JVnWWJsWV0WhW5wIf+UGw=" @@ -4139,6 +4840,20 @@ license = [ ] homepage = "https://gitlab.com/giacomogallina/commute" +[conchord."0.4.0"] +url = "https://packages.typst.org/preview/conchord-0.4.0.tar.gz" +hash = "sha256-4q/sHHFsy5zWHEumQRr8chYaONCmAhVZbznOQxrr7TE=" +typstDeps = [ + "cetz_0_4_1", + "chordx_0_6_0", + "tidy_0_4_3", +] +description = "Easily write lyrics with chords, generate chord diagrams by chord names and draw tabs" +license = [ + "MIT", +] +homepage = "https://github.com/sitandr/conchord" + [conchord."0.3.0"] url = "https://packages.typst.org/preview/conchord-0.3.0.tar.gz" hash = "sha256-0hBsYDHBywChgFvPj4blEYfWTEYeDIFhtOB0FW9M53c=" @@ -4409,6 +5124,51 @@ license = [ ] homepage = "https://github.com/lublak/typst-ctxjs-package" +[ctyp."0.2.0"] +url = "https://packages.typst.org/preview/ctyp-0.2.0.tar.gz" +hash = "sha256-QqO/mQ3QIAMFbcwpxm73D4LZIb2jOhGGJSAc9YropD0=" +typstDeps = [] +description = "A Typst package for Chinese typography" +license = [ + "MIT", +] +homepage = "https://github.com/hpdell/ctyp" + +[ctyp."0.1.1"] +url = "https://packages.typst.org/preview/ctyp-0.1.1.tar.gz" +hash = "sha256-y4aB+s3RsqfK46lhgnf6DpKwsNzt4FFdsBEdud86GqI=" +typstDeps = [] +description = "A Typst package for Chinese typography" +license = [ + "MIT", +] +homepage = "https://github.com/hpdell/ctyp" + +[ctyp."0.1.0"] +url = "https://packages.typst.org/preview/ctyp-0.1.0.tar.gz" +hash = "sha256-sXVnCvnr9KSPN2RXQF75tF9ZUDwTK6Hb6ht/ZOgWkIs=" +typstDeps = [ + "cjk-unbreak_0_1_1", +] +description = "A Typst package for Chinese typography" +license = [ + "MIT", +] +homepage = "https://github.com/hpdell/ctyp" + +[cumcm-muban."0.4.0"] +url = "https://packages.typst.org/preview/cumcm-muban-0.4.0.tar.gz" +hash = "sha256-+fYW/GtAfmYMg7cO9I7qrTEVqWcOu+EFl5I4w2IOvSI=" +typstDeps = [ + "ctheorems_1_1_3", + "cumcm-muban_0_3_0", +] +description = "为高教社杯全国大学生数学建模竞赛设计的 Typst 模板" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/a-kkiri/CUMCM-typst-template" + [cumcm-muban."0.3.0"] url = "https://packages.typst.org/preview/cumcm-muban-0.3.0.tar.gz" hash = "sha256-C96mN6opUM3+w4g9iQBnVCuIHROfUvTU6vt5PDSLLbQ=" @@ -4592,6 +5352,16 @@ license = [ ] homepage = "https://github.com/csimide/cuti" +[cv-soft-and-hard."0.1.0"] +url = "https://packages.typst.org/preview/cv-soft-and-hard-0.1.0.tar.gz" +hash = "sha256-mmOJjM+f4EfATDnGN7DgviAZkfJ4r+2XZHlr2GdSYGk=" +typstDeps = [] +description = "Clean CV Template" +license = [ + "MIT", +] +homepage = "https://github.com/jonaspleyer/cv-soft-and-hard" + [cvssc."0.1.1"] url = "https://packages.typst.org/preview/cvssc-0.1.1.tar.gz" hash = "sha256-COZzBQ2MqLGKlUlXweYpkERIzC3OE4OUeKNKntQhPpg=" @@ -4616,6 +5386,97 @@ license = [ "MIT", ] +[cyberschool-errorteaplate."0.1.12"] +url = "https://packages.typst.org/preview/cyberschool-errorteaplate-0.1.12.tar.gz" +hash = "sha256-w2wTPyhs9NmvF7t/uNDr/rmbXLacThyB5cXBwBw1KB0=" +typstDeps = [ + "codly_1_3_0", + "codly-languages_0_1_8", +] +description = "This is a template originaly made for the Cyberschool of Rennes, a Cybersecurity school" +license = [ + "MIT", +] +homepage = "https://github.com/ErrorTeaPot/Cyberschool_template" + +[cyberschool-errorteaplate."0.1.11"] +url = "https://packages.typst.org/preview/cyberschool-errorteaplate-0.1.11.tar.gz" +hash = "sha256-J06OIEFnyDkb3JDt1sFOTrThqHGnQhwbw2JYFKl2Wdw=" +typstDeps = [ + "codly_1_3_0", + "codly-languages_0_1_8", +] +description = "This is a template originaly made for the Cyberschool of Rennes, a Cybersecurity school" +license = [ + "MIT", +] +homepage = "https://github.com/ErrorTeaPot/Cyberschool_template" + +[cyberschool-errorteaplate."0.1.10"] +url = "https://packages.typst.org/preview/cyberschool-errorteaplate-0.1.10.tar.gz" +hash = "sha256-Rwhv9Nmb+/wwob2VJjCaBjVV3MKthnKI70Xj36/tcFc=" +typstDeps = [ + "codly_1_3_0", + "codly-languages_0_1_8", +] +description = "This is a template originaly made for the Cyberschool of Rennes, a Cybersecurity school" +license = [ + "MIT", +] +homepage = "https://github.com/ErrorTeaPot/Cyberschool_template" + +[cyberschool-errorteaplate."0.1.9"] +url = "https://packages.typst.org/preview/cyberschool-errorteaplate-0.1.9.tar.gz" +hash = "sha256-mjBkQnccyBMI8F3/KHQIni4xXgihLJlde4a4Ie65eQM=" +typstDeps = [ + "codly_1_3_0", + "codly-languages_0_1_8", +] +description = "This is a template originaly made for the Cyberschool of Rennes, a Cybersecurity school" +license = [ + "MIT", +] +homepage = "https://github.com/ErrorTeaPot/Cyberschool_template" + +[cyberschool-errorteaplate."0.1.8"] +url = "https://packages.typst.org/preview/cyberschool-errorteaplate-0.1.8.tar.gz" +hash = "sha256-OWkBfbrYXy297UCChk+kqsVZex/+sP5OmpvE1XSbjfw=" +typstDeps = [ + "codly_1_3_0", + "codly-languages_0_1_8", +] +description = "This is a template originaly made for the Cyberschool of Rennes, a Cybersecurity school" +license = [ + "MIT", +] +homepage = "https://github.com/ErrorTeaPot/Cyberschool_template" + +[cyberschool-errorteaplate."0.1.7"] +url = "https://packages.typst.org/preview/cyberschool-errorteaplate-0.1.7.tar.gz" +hash = "sha256-StXx82ER7YFKq74zXl3EknpVIya3oC/xgvPIsW7Gp3Y=" +typstDeps = [ + "codly_1_3_0", + "codly-languages_0_1_8", +] +description = "This is a template originaly made for the Cyberschool of Rennes, a Cybersecurity school" +license = [ + "MIT", +] +homepage = "https://github.com/ErrorTeaPot/Cyberschool_template" + +[cyberschool-errorteaplate."0.1.6"] +url = "https://packages.typst.org/preview/cyberschool-errorteaplate-0.1.6.tar.gz" +hash = "sha256-PbIiyqQTw10S8BHB8eY/G3e8D0282vHImiR8YWzli54=" +typstDeps = [ + "codly_1_3_0", + "codly-languages_0_1_8", +] +description = "This is a template originaly made for the Cyberschool of Rennes, a Cybersecurity school" +license = [ + "MIT", +] +homepage = "https://github.com/ErrorTeaPot/Cyberschool_template" + [cyberschool-errorteaplate."0.1.5"] url = "https://packages.typst.org/preview/cyberschool-errorteaplate-0.1.5.tar.gz" hash = "sha256-byWzwRm13Vqd1c/bJ/1yZdm1dw+wfg9QwIpTOZSBuJg=" @@ -4675,6 +5536,36 @@ license = [ ] homepage = "https://github.com/typst/templates" +[dashy-todo."0.1.2"] +url = "https://packages.typst.org/preview/dashy-todo-0.1.2.tar.gz" +hash = "sha256-tOGjesNbx7KVfv/MWYgakDVfT/xlVizxc2lPhrHDt3c=" +typstDeps = [] +description = "A method to display TODOs at the side of the page" +license = [ + "MIT-0", +] +homepage = "https://github.com/Otto-AA/dashy-todo" + +[dashy-todo."0.1.1"] +url = "https://packages.typst.org/preview/dashy-todo-0.1.1.tar.gz" +hash = "sha256-cWoPd5ok4LktN3J3O6d/nw37pMtERfoWb2y7QmTvyKg=" +typstDeps = [] +description = "A method to display TODOs at the side of the page" +license = [ + "MIT-0", +] +homepage = "https://github.com/Otto-AA/dashy-todo" + +[dashy-todo."0.1.0"] +url = "https://packages.typst.org/preview/dashy-todo-0.1.0.tar.gz" +hash = "sha256-RVLDYHGVXzd+L3gm6dKbkcUfQnX6EcB+wVPXm6cszno=" +typstDeps = [] +description = "A method to display TODOs at the side of the page" +license = [ + "MIT-0", +] +homepage = "https://github.com/Otto-AA/dashy-todo" + [dashy-todo."0.0.3"] url = "https://packages.typst.org/preview/dashy-todo-0.0.3.tar.gz" hash = "sha256-PijpOpLWjVAvoabzsxNk9gZVMbgLPVgFUJ2LncJqrHA=" @@ -4705,6 +5596,18 @@ license = [ ] homepage = "https://github.com/Otto-AA/dashy-todo" +[datify."1.0.0"] +url = "https://packages.typst.org/preview/datify-1.0.0.tar.gz" +hash = "sha256-bzh3ODfa7AaZedQplm4oObKcyt13pHhrnVHGtUW260E=" +typstDeps = [ + "datify-core_1_0_0", +] +description = "Datify is a Typst package for flexible, locale-aware date formatting. It leverages datify-core for internationalization and supports CLDR-style date patterns" +license = [ + "MIT", +] +homepage = "https://github.com/Jeomhps/datify" + [datify."0.1.4"] url = "https://packages.typst.org/preview/datify-0.1.4.tar.gz" hash = "sha256-L4Ke+165ukcmBoWilOeBm0Jvx2vtbMLH+uyUxFyvdF0=" @@ -4745,6 +5648,16 @@ license = [ ] homepage = "https://github.com/Jeomhps/datify" +[datify-core."1.0.0"] +url = "https://packages.typst.org/preview/datify-core-1.0.0.tar.gz" +hash = "sha256-esUWhE9bQZiEoM+FBkEypMpIS2Jwg5GvOHElfXo+P8U=" +typstDeps = [] +description = "Localization data and date formatting patterns for Typst, powered by CLDR. Backend for Datify, reusable in any Typst project" +license = [ + "MIT", +] +homepage = "https://github.com/Jeomhps/datify-core" + [decasify."0.10.1"] url = "https://packages.typst.org/preview/decasify-0.10.1.tar.gz" hash = "sha256-qW5gjrNSaK8xU9JIs1NxE2Bj1yB7g1WyHTR1bc3FlR0=" @@ -4775,6 +5688,69 @@ license = [ ] homepage = "https://github.com/alerque/decasify" +[deckz."0.3.1"] +url = "https://packages.typst.org/preview/deckz-0.3.1.tar.gz" +hash = "sha256-JokybXRtOLS6KcZ87nthnWGTialA5Vufd0i15zLMeFQ=" +typstDeps = [ + "cetz_0_4_1", + "digestify_0_1_0", + "linguify_0_4_2", + "mantys_1_0_2", + "suiji_0_4_0", + "tidy_0_4_3", +] +description = "Render poker-style cards and full decks" +license = [ + "GPL-3.0-or-later", +] +homepage = "https://github.com/micheledusi/Deckz" + +[deckz."0.3.0"] +url = "https://packages.typst.org/preview/deckz-0.3.0.tar.gz" +hash = "sha256-NlVc+NYWtf/QEXiSfoxi3sHilzIcNpFsh5+ZUqIusmQ=" +typstDeps = [ + "cetz_0_4_1", + "digestify_0_1_0", + "linguify_0_4_2", + "mantys_1_0_2", + "suiji_0_4_0", + "tidy_0_4_3", +] +description = "Render poker-style cards and full decks" +license = [ + "GPL-3.0-or-later", +] +homepage = "https://github.com/micheledusi/Deckz" + +[deckz."0.2.0"] +url = "https://packages.typst.org/preview/deckz-0.2.0.tar.gz" +hash = "sha256-wGTOfUt8QFYbVAuw5Svlv0K8DXjixFzVd8Y/UOxW84A=" +typstDeps = [ + "cetz_0_4_1", + "linguify_0_4_2", + "mantys_1_0_2", + "suiji_0_4_0", + "tidy_0_4_3", +] +description = "Render poker-style cards and full decks" +license = [ + "GPL-3.0-or-later", +] +homepage = "https://github.com/micheledusi/Deckz" + +[deckz."0.1.0"] +url = "https://packages.typst.org/preview/deckz-0.1.0.tar.gz" +hash = "sha256-bw9RqJaWQmhlLo1KN+tgfdUT6hOhKMLFro5Kri34D1E=" +typstDeps = [ + "cetz_0_4_0", + "suiji_0_4_0", +] +description = "Render poker-style cards and full decks" +license = [ + "GPL-3.0-or-later", +] +homepage = "https://github.com/micheledusi/Deckz" + [defined."0.1.0"] url = "https://packages.typst.org/preview/defined-0.1.0.tar.gz" hash = "sha256-4ON8im4nwdi8cydBmnwYRY7d8Qovu+X2+63G+Z8aEH4=" @@ -4787,6 +5763,42 @@ license = [ ] homepage = "https://github.com/profetia/defined" +[definitely-not-isec-slides."1.0.1"] +url = "https://packages.typst.org/preview/definitely-not-isec-slides-1.0.1.tar.gz" +hash = "sha256-WYSUwzTpoDCa+rkYnPC9NAvdmb+AwemyW/WjGiMUi8U=" +typstDeps = [ + "cetz_0_4_2", + "codly_1_3_0", + "fletcher_0_5_8", + "showybox_2_0_4", + "tableau-icons_0_331_0", + "tiaoma_0_3_0", + "touying_0_6_1", +] +description = "An unofficial ISEC TUGraz slides template" +license = [ + "MIT", +] +homepage = "https://github.com/ecomaikgolf/typst-isec-slides-template" + +[definitely-not-isec-slides."1.0.0"] +url = "https://packages.typst.org/preview/definitely-not-isec-slides-1.0.0.tar.gz" +hash = "sha256-ghFp+8LmIpGNmJPM/s/m/RvMFghG/vyMJ1EJQ0rMdyw=" +typstDeps = [ + "cetz_0_4_1", + "codly_1_3_0", + "fletcher_0_5_8", + "showybox_2_0_4", + "tableau-icons_0_331_0", + "tiaoma_0_3_0", + "touying_0_6_1", +] +description = "An unofficial ISEC TUGraz slides template" +license = [ + "MIT", +] +homepage = "https://github.com/ecomaikgolf/typst-isec-slides-template" + [definitely-not-isec-thesis."2.0.1"] url = "https://packages.typst.org/preview/definitely-not-isec-thesis-2.0.1.tar.gz" hash = "sha256-5mxFjH8gF1biPwEclEdRpMgth8FHBcrJWauc3PCYmIo=" @@ -4819,6 +5831,18 @@ license = [ ] homepage = "https://github.com/ecomaikgolf/typst-isec-master-thesis-template/" +[definitely-not-tuw-thesis."0.2.0"] +url = "https://packages.typst.org/preview/definitely-not-tuw-thesis-0.2.0.tar.gz" +hash = "sha256-iCD1hRTNh+5ok8+QRCwRbNIZN/SwqdE4i566zYExHJ8=" +typstDeps = [ + "linguify_0_4_2", +] +description = "An unofficial template for a thesis at the TU Wien informatics institute" +license = [ + "MIT-0", +] +homepage = "https://github.com/Otto-AA/definitely-not-tuw-thesis" + [definitely-not-tuw-thesis."0.1.0"] url = "https://packages.typst.org/preview/definitely-not-tuw-thesis-0.1.0.tar.gz" hash = "sha256-cVvHDgg9H95Npk91WMyWNKoXKO+zydRDKQkyx4nSmtM=" @@ -4911,6 +5935,26 @@ license = [ ] homepage = "https://github.com/0rphee/derive-it" +[diagraph."0.3.6"] +url = "https://packages.typst.org/preview/diagraph-0.3.6.tar.gz" +hash = "sha256-LBplb807NgR0oovh7fxRWpqhOBfxm7uyETgj3Q7otTw=" +typstDeps = [] +description = "Draw graphs with Graphviz. Use mathematical formulas as labels" +license = [ + "MIT", +] +homepage = "https://github.com/Robotechnic/diagraph.git" + +[diagraph."0.3.5"] +url = "https://packages.typst.org/preview/diagraph-0.3.5.tar.gz" +hash = "sha256-diUbQHUePKawZLOYc09LgfH8dgENl6xWmKL42AfgYM4=" +typstDeps = [] +description = "Draw graphs with Graphviz. Use mathematical formulas as labels" +license = [ + "MIT", +] +homepage = "https://github.com/Robotechnic/diagraph.git" + [diagraph."0.3.4"] url = "https://packages.typst.org/preview/diagraph-0.3.4.tar.gz" hash = "sha256-xhvuq7xva0vIRdxYFrMcQTfcZATfxN+SBbV7ofAx58I=" @@ -5051,6 +6095,40 @@ license = [ ] homepage = "https://github.com/Robotechnic/diagraph.git" +[diagraph-layout."0.0.1"] +url = "https://packages.typst.org/preview/diagraph-layout-0.0.1.tar.gz" +hash = "sha256-AnBILoe4D9xCfFFJZ2+Hf3XIDnHYZH7OK4WAzAfme+I=" +typstDeps = [ + "cetz_0_4_2", +] +description = "Exposes the graphviz layout engines api to render graph without dot" +license = [ + "MIT", +] +homepage = "https://github.com/Robotechnic/diagraph-layout.git" + +[diatypst."0.7.1"] +url = "https://packages.typst.org/preview/diatypst-0.7.1.tar.gz" +hash = "sha256-OPTOQ/VJ2oKaanPY22Y2b9UX7Sb1PtMWXiuzP+J7eiQ=" +typstDeps = [] +description = "easy slides in typst - sensible defaults, easy syntax, well styled" +license = [ + "MIT-0", +] +homepage = "https://github.com/skriptum/Diatypst" + +[diatypst."0.7.0"] +url = "https://packages.typst.org/preview/diatypst-0.7.0.tar.gz" +hash = "sha256-Gy4fZVqn/yMEZY3Xl+lBeQZ0fA+tjDrieRJRIP6K578=" +typstDeps = [ + "diatypst_0_2_0", +] +description = "easy slides in typst - sensible defaults, easy syntax, well styled" +license = [ + "MIT-0", +] +homepage = "https://github.com/skriptum/Diatypst" + [diatypst."0.6.0"] url = "https://packages.typst.org/preview/diatypst-0.6.0.tar.gz" hash = "sha256-mBIH+lXGlFoeEfAHKuHoklrg0DT2UxMEjYlfnmx/g+E=" @@ -5121,6 +6199,25 @@ license = [ ] homepage = "https://github.com/skriptum/Diatypst" +[dice."1.0.0"] +url = "https://packages.typst.org/preview/dice-1.0.0.tar.gz" +hash = "sha256-9twA11NPECU9qIhQBo7IRsd5Llks2abda8On7cbm16c=" +typstDeps = [] +description = "A versatile random number toolkit for Typst" +license = [ + "MIT", +] + +[digestify."0.1.0"] +url = "https://packages.typst.org/preview/digestify-0.1.0.tar.gz" +hash = "sha256-Qc8OG1dYAsF2vgw0+APLNG/hrMqg/g05s+V/7zpnOGs=" +typstDeps = [] +description = "A blazing fast cryptographic hash package for Typst, powered by WebAssembly" +license = [ + "MIT", +] +homepage = "https://github.com/ParaN3xus/digestify" + [dining-table."0.1.0"] url = "https://packages.typst.org/preview/dining-table-0.1.0.tar.gz" hash = "sha256-JoZd2QGPf0JK6pPiaMTB88JEoBR/JUvgsXclq0gvhxE=" @@ -5150,6 +6247,30 @@ license = [ ] homepage = "https://github.com/tedius-git/divine-words" +[dmi-basilea-thesis."0.1.1"] +url = "https://packages.typst.org/preview/dmi-basilea-thesis-0.1.1.tar.gz" +hash = "sha256-1cM98KWcEYSwbemwb17HV7/WfG344YjlOyjtT5uH0Q4=" +typstDeps = [ + "unibas-thesis_0_1_0", +] +description = "A thesis template for the dmi at the university of basel" +license = [ + "MIT", +] +homepage = "https://github.com/Nifalu/dmi-basilea-thesis" + +[dmi-basilea-thesis."0.1.0"] +url = "https://packages.typst.org/preview/dmi-basilea-thesis-0.1.0.tar.gz" +hash = "sha256-lhMAWQgsbfT//XEjdU34cFxsCUBnDySMgaTyIcW+aXo=" +typstDeps = [ + "unibas-thesis_0_1_0", +] +description = "A thesis template for the dmi at the university of basel" +license = [ + "MIT", +] +homepage = "https://github.com/Nifalu/dmi-basilea-thesis" + [dovenv."0.1.0"] url = "https://packages.typst.org/preview/dovenv-0.1.0.tar.gz" hash = "sha256-H0yY6dW6FwFTkTE6K8A0UmjSbPbIFuh+RH2ggD6JbZw=" @@ -5229,6 +6350,16 @@ license = [ "Unlicense", ] +[dragonling."0.2.0"] +url = "https://packages.typst.org/preview/dragonling-0.2.0.tar.gz" +hash = "sha256-9zRApaho2RpPKhMTjY6hAT+ZPOKxCMpa6b2iXl+mtDc=" +typstDeps = [] +description = "A comprehensive Typst template for creating Dungeons & Dragons 5E content including stat blocks, spell cards, and adventure modules" +license = [ + "MIT", +] +homepage = "https://github.com/coljac/typst-dnd5e" + [droplet."0.3.1"] url = "https://packages.typst.org/preview/droplet-0.3.1.tar.gz" hash = "sha256-ngKk23tUePES0KJ8ywikO1xSDmYkJyr1VANLxV3ILVY=" @@ -5330,6 +6461,18 @@ license = [ ] homepage = "https://github.com/monaqa/typst-easytable" +[echarm."0.3.0"] +url = "https://packages.typst.org/preview/echarm-0.3.0.tar.gz" +hash = "sha256-15yGdTrYH7/qpo+3QYuKbYiTMlAfhkhSwcvun2Axe9U=" +typstDeps = [ + "ctxjs_0_3_1", +] +description = "Run echarts in typst with the use of CtxJS" +license = [ + "MIT", +] +homepage = "https://github.com/lublak/typst-echarm-package" + [echarm."0.2.1"] url = "https://packages.typst.org/preview/echarm-0.2.1.tar.gz" hash = "sha256-7msh2oSNLToUkDKIrDDkUs9Zj2im09EE1xcHxRgoXF4=" @@ -5388,6 +6531,27 @@ license = [ ] homepage = "https://github.com/neuralpain/edgeframe" +[eeaabb."0.1.0"] +url = "https://packages.typst.org/preview/eeaabb-0.1.0.tar.gz" +hash = "sha256-yHl7i9R/+tCnSXGi2h7lNvzMNMN4JyjLV1lhl6RUv8o=" +typstDeps = [ + "oxifmt_1_0_0", +] +description = "Extract element AABBs and inspect sizes" +license = [ + "MIT", +] + +[efilrst."0.3.2"] +url = "https://packages.typst.org/preview/efilrst-0.3.2.tar.gz" +hash = "sha256-oBjix+GtlekSToHjLgn9deZWmjRZoqxWGvMbNLWUpMQ=" +typstDeps = [] +description = "A simple referenceable list library for typst" +license = [ + "MIT", +] +homepage = "https://github.com/jmigual/typst-efilrst" + [efilrst."0.3.1"] url = "https://packages.typst.org/preview/efilrst-0.3.1.tar.gz" hash = "sha256-Xrt6aikAZeV0KodY6qNELZ5STxZuVwflA6J+2ES4jz8=" @@ -5428,6 +6592,22 @@ license = [ ] homepage = "https://github.com/jmigual/typst-efilrst" +[efter-plugget."0.1.0"] +url = "https://packages.typst.org/preview/efter-plugget-0.1.0.tar.gz" +hash = "sha256-fH8lLnbxSV4521N+zjDIqQMOqZnqeqVFWBodVkhWlX4=" +typstDeps = [ + "cellpress-unofficial_0_1_0", + "hallon_0_1_2", + "latex-lookalike_0_1_4", + "nth_1_0_1", + "smartaref_0_1_0", +] +description = "Lab report, essay and exam template for Typst" +license = [ + "0BSD", +] +homepage = "https://github.com/mewmew/efter-plugget" + [eggs."0.1.0"] url = "https://packages.typst.org/preview/eggs-0.1.0.tar.gz" hash = "sha256-e+giwCf/rFnzqeI/aSKh/oMZILsPUn2Wdrb5UCdQoD8=" @@ -5472,6 +6652,24 @@ license = [ ] homepage = "https://github.com/ctypst/elegant-paper-typst" +[elegant-polimi-thesis."0.1.1"] +url = "https://packages.typst.org/preview/elegant-polimi-thesis-0.1.1.tar.gz" +hash = "sha256-bt14wB+1v4iq0Zxp+4upsTS00uzmwuED1qPCn5O3rMw=" +typstDeps = [ + "algo_0_3_6", + "great-theorems_0_1_2", + "headcount_0_1_0", + "lovelace_0_3_0", + "metalogo_1_2_0", + "subpar_0_2_2", + "tidy_0_4_3", +] +description = "An unofficial thesis template for the Polytechnic University of Milan" +license = [ + "GPL-3.0-or-later", +] +homepage = "https://github.com/VictuarVi/PoliMi-PhD-Thesis" + [elegant-polimi-thesis."0.1.0"] url = "https://packages.typst.org/preview/elegant-polimi-thesis-0.1.0.tar.gz" hash = "sha256-oacgSwj6UWnvlkibSYHpru0mCCAhw5ES9HprqnRlzbc=" @@ -5487,6 +6685,17 @@ license = [ ] homepage = "https://github.com/VictuarVi/PoliMi-PhD-Thesis" +[elembic."1.1.1"] +url = "https://packages.typst.org/preview/elembic-1.1.1.tar.gz" +hash = "sha256-IHXobR+tsQhOOkHRmu+GzbGWeslTVqkw11Vyu6TulQY=" +typstDeps = [] +description = "Framework for custom elements and types in Typst" +license = [ + "MIT", + "Apache-2.0", +] +homepage = "https://github.com/PgBiel/elembic" + [elembic."1.1.0"] url = "https://packages.typst.org/preview/elembic-1.1.0.tar.gz" hash = "sha256-O8V0/e1fWZh1UdIHlJM2IU6SGpqvWBwbzkCqyBn91Gg=" @@ -5509,6 +6718,38 @@ license = [ ] homepage = "https://github.com/PgBiel/elembic" +[elsearticle."1.0.0"] +url = "https://packages.typst.org/preview/elsearticle-1.0.0.tar.gz" +hash = "sha256-kZx2W3DAgUkPL04zkXldX1svczlqVhGFYhdMFrCQGc0=" +typstDeps = [ + "cheq_0_2_2", + "equate_0_3_2", + "mantys_1_0_2", + "subpar_0_2_2", + "swank-tex_0_1_0", +] +description = "Conversion of the LaTeX elsearticle.cls" +license = [ + "MIT", +] +homepage = "https://github.com/maucejo/elsearticle" + +[elsearticle."0.4.3"] +url = "https://packages.typst.org/preview/elsearticle-0.4.3.tar.gz" +hash = "sha256-ztIXrmwtjL5hnv7s7vPXKb7lwltM6ZZjgzegQOmKa1A=" +typstDeps = [ + "cheq_0_2_2", + "equate_0_3_2", + "mantys_1_0_2", + "subpar_0_2_2", + "swank-tex_0_1_0", +] +description = "Conversion of the LaTeX elsearticle.cls" +license = [ + "MIT", +] +homepage = "https://github.com/maucejo/elsearticle" + [elsearticle."0.4.2"] url = "https://packages.typst.org/preview/elsearticle-0.4.2.tar.gz" hash = "sha256-QlnOgnxC5dBlFtBVKlgbdE/QnC3yeIUpT7Kn445HrXI=" @@ -5607,6 +6848,38 @@ license = [ "MIT", ] +[elsevier-replica."0.1.0"] +url = "https://packages.typst.org/preview/elsevier-replica-0.1.0.tar.gz" +hash = "sha256-o1IUljQZYsG07P89VYzDL0yAUu7Jv8jf19hNjPK7DEI=" +typstDeps = [ + "cheq_0_2_2", + "equate_0_3_2", + "mantys_1_0_2", + "subpar_0_2_2", + "swank-tex_0_1_0", +] +description = "Elsevier article template for Typst" +license = [ + "MIT", +] +homepage = "https://github.com/maucejo/elsevier-replica" + +[elspub."0.2.0"] +url = "https://packages.typst.org/preview/elspub-0.2.0.tar.gz" +hash = "sha256-Mo7MoDUb0k5fAKfzvvj5FenANeUNZhWGDIqOpE6/BOc=" +typstDeps = [ + "cheq_0_2_2", + "equate_0_3_2", + "mantys_1_0_2", + "subpar_0_2_2", + "swank-tex_0_1_0", +] +description = "Elsevier article template for Typst" +license = [ + "MIT", +] +homepage = "https://github.com/maucejo/elspub" + [embiggen."0.0.1"] url = "https://packages.typst.org/preview/embiggen-0.0.1.tar.gz" hash = "sha256-6IDxLVIVGD7xVAJAjeWwuywUoxjPvVswb7GeT4bjhsg=" @@ -5636,6 +6909,15 @@ license = [ ] homepage = "https://github.com/leana8959/univ-rennes.typ" +[enseeiht-internship-report."0.1.0"] +url = "https://packages.typst.org/preview/enseeiht-internship-report-0.1.0.tar.gz" +hash = "sha256-jukEUSPLrDtLV5JtPlsvHeti6R/KF3/kY3sN+dYFkQs=" +typstDeps = [] +description = "Unofficial Internship Report Template for ENSEEIHT" +license = [ + "MIT", +] + [enunciado-facil-fcfm."0.1.0"] url = "https://packages.typst.org/preview/enunciado-facil-fcfm-0.1.0.tar.gz" hash = "sha256-sJQRnJ7opLSbBWTcS9YNOCQlZ2lYiuMAGBSeeC3MChM=" @@ -5756,6 +7038,36 @@ license = [ ] homepage = "https://github.com/EpicEricEE/typst-equate" +[ergo."0.1.1"] +url = "https://packages.typst.org/preview/ergo-0.1.1.tar.gz" +hash = "sha256-/ZnVEa9Zbl+bpnC54sJJBmGpzPJKYmAG0pZy+YRgABU=" +typstDeps = [ + "cetz_0_4_1", + "fletcher_0_5_8", + "lovelace_0_3_0", + "physica_0_9_5", +] +description = "A suite of customizable block environments for taking notes and doing problem sets, especially in Mathematics, Computer Science, and Physics" +license = [ + "MIT-0", +] +homepage = "https://github.com/EsotericSquishyy/ergo" + +[ergo."0.1.0"] +url = "https://packages.typst.org/preview/ergo-0.1.0.tar.gz" +hash = "sha256-CPVMrp1FlQ1WGDDypmwLgOk/8hs3yDtPdTmxUI1wxMQ=" +typstDeps = [ + "cetz_0_4_0", + "fletcher_0_5_4", + "lovelace_0_3_0", + "physica_0_9_5", +] +description = "A suite of customizable block environments for ease of taking notes or doing problem sets in Mathematics, Computer Science, Physics, and more" +license = [ + "MIT-0", +] +homepage = "https://github.com/EsotericSquishyy/ergo" + [esotefy."1.0.0"] url = "https://packages.typst.org/preview/esotefy-1.0.0.tar.gz" hash = "sha256-Yaex2nIpddDiJoTyV0Sl7oWltnxD4MfSIHoNbQuFv+s=" @@ -5766,6 +7078,18 @@ license = [ ] homepage = "git@github.com:Thumuss/brainfuck.git" +[etykett."0.1.1"] +url = "https://packages.typst.org/preview/etykett-0.1.1.tar.gz" +hash = "sha256-tqTIN+FiC5JgIhoNq8ZkWouWn9/UVJewk0WUcYCgPQk=" +typstDeps = [ + "valkyrie_0_2_2", +] +description = "a template for printing onto label sheets with rectangular grids of labels" +license = [ + "MIT", +] +homepage = "https://github.com/SillyFreak/typst-etykett" + [etykett."0.1.0"] url = "https://packages.typst.org/preview/etykett-0.1.0.tar.gz" hash = "sha256-V2ItL+yNg1RYTrv5NIBKGipTjwz+L33KK9/TpsQdwpw=" @@ -5798,6 +7122,16 @@ license = [ ] homepage = "https://github.com/tarunjana/examify" +[examine-ib."0.1.2"] +url = "https://packages.typst.org/preview/examine-ib-0.1.2.tar.gz" +hash = "sha256-NDYgQxre+UbnBlvNaTFKgUmvGmCvdyIC9+y2Ccf1MtA=" +typstDeps = [] +description = "Template for creating exams, tests, quizzes, based on the IB exam formatting" +license = [ + "Unlicense", +] +homepage = "https://github.com/nycrat/typst-ib-exam-template" + [examine-ib."0.1.1"] url = "https://packages.typst.org/preview/examine-ib-0.1.1.tar.gz" hash = "sha256-ETq7Oh6yUjasgA/Z4TtuxWw2fVJtOn/vgDa1wBhBQkc=" @@ -5844,6 +7178,18 @@ license = [ "Unlicense", ] +[exercism."1.0.0"] +url = "https://packages.typst.org/preview/exercism-1.0.0.tar.gz" +hash = "sha256-mXdQ7mXg/oRbnUBh3k/dS4i3OoF6+XyhzcZ7KDUpen8=" +typstDeps = [ + "digestify_0_1_0", +] +description = "Organise exercises and defer their solutions" +license = [ + "MIT", +] +homepage = "https://github.com/mkorje/typst-exercism" + [exmllent."0.1.0"] url = "https://packages.typst.org/preview/exmllent-0.1.0.tar.gz" hash = "sha256-9MCCdvY8ozy6LsYFq8dcskQydcrWE3wnsvZ8UAeLtWA=" @@ -5935,6 +7281,108 @@ license = [ ] homepage = "https://github.com/CarloSchafflik12/typst-ez-today" +[ezchem."0.1.0"] +url = "https://packages.typst.org/preview/ezchem-0.1.0.tar.gz" +hash = "sha256-hz1jR4YM86sqCpaSeVe0bpEo1WRhQ/3N2axGJ5hPxMk=" +typstDeps = [ + "cetz_0_4_1", +] +description = "Draw atomic or ionic structures powered by ctez and single or double line bridge" +license = [ + "MIT", +] +homepage = "https://github.com/gbchu/ezchem.git" + +[ezexam."0.1.8"] +url = "https://packages.typst.org/preview/ezexam-0.1.8.tar.gz" +hash = "sha256-ejNg3UWMwpzUTEni/kcNnx4CAC46qJsW/X69anAGlTY=" +typstDeps = [] +description = "A exam and handouts template inspired by the LaTeX package exam-zh" +license = [ + "MIT", +] +homepage = "https://github.com/gbchu/ezexam.git" + +[ezexam."0.1.7"] +url = "https://packages.typst.org/preview/ezexam-0.1.7.tar.gz" +hash = "sha256-KLW2DnNGh6NL1w568Lzh4GP/Mvh8xBwxeP1OeE2Diyg=" +typstDeps = [] +description = "A exam and handouts template inspired by the LaTeX package exam-zh" +license = [ + "MIT", +] +homepage = "https://github.com/gbchu/ezexam.git" + +[ezexam."0.1.6"] +url = "https://packages.typst.org/preview/ezexam-0.1.6.tar.gz" +hash = "sha256-FntbC7PBRwz7r+Qeb4lt6L43lunA6Y3WniNUKKzcI3Q=" +typstDeps = [] +description = "A exam and handouts template inspired by the LaTeX package exam-zh" +license = [ + "MIT", +] +homepage = "https://github.com/gbchu/ezexam.git" + +[ezexam."0.1.5"] +url = "https://packages.typst.org/preview/ezexam-0.1.5.tar.gz" +hash = "sha256-I6FdclhhnoGxS5fpR9XivrmMz+HKVFtpun3TLZN4Ygg=" +typstDeps = [] +description = "A exam and handouts template inspired by the LaTeX package exam-zh" +license = [ + "MIT", +] +homepage = "https://github.com/gbchu/ezexam.git" + +[ezexam."0.1.4"] +url = "https://packages.typst.org/preview/ezexam-0.1.4.tar.gz" +hash = "sha256-XxwPswQ+2VQJWxRC2DT+Sup2IljH/+naCCyQ20k/KD0=" +typstDeps = [] +description = "A exam and lecture notes template inspired by the LaTeX package exam-zh" +license = [ + "MIT", +] +homepage = "https://github.com/gbchu/ezexam.git" + +[ezexam."0.1.3"] +url = "https://packages.typst.org/preview/ezexam-0.1.3.tar.gz" +hash = "sha256-8W2bGo2wRZonlIGUsAebqC59pUtsN4vzNwx2dugnwy8=" +typstDeps = [] +description = "A test paper and lecture notes template inspired by the LaTeX package exam-zh" +license = [ + "MIT", +] +homepage = "https://github.com/gbchu/ezexam.git" + +[ezexam."0.1.2"] +url = "https://packages.typst.org/preview/ezexam-0.1.2.tar.gz" +hash = "sha256-Qnq4JPLCTS6sPMlOu7muPgnjKj77cZxQDRAC6U6WDfo=" +typstDeps = [] +description = "A test paper and lecture notes template inspired by the LaTeX package exam-zh" +license = [ + "MIT", +] +homepage = "https://github.com/gbchu/ezexam.git" + +[ezexam."0.1.1"] +url = "https://packages.typst.org/preview/ezexam-0.1.1.tar.gz" +hash = "sha256-dvk8mr0dDtiSKtRU0D5Wltk4fqH0CIgFs5AGy4jeMho=" +typstDeps = [] +description = "A test paper and lecture notes template inspired by the LaTeX package exam-zh" +license = [ + "MIT", +] +homepage = "https://github.com/gbchu/ezexam.git" + +[ezexam."0.1.0"] +url = "https://packages.typst.org/preview/ezexam-0.1.0.tar.gz" +hash = "sha256-uIcH1+dMpkwa+zO+a1Q8v8FDEJ21pj5fAAWWmryFqEc=" +typstDeps = [] +description = "A test paper and lecture notes template inspired by the LaTeX package exam-zh" +license = [ + "MIT", +] +homepage = "https://github.com/gbchu/ezexam.git" + [fancy-affil."0.1.0"] url = "https://packages.typst.org/preview/fancy-affil-0.1.0.tar.gz" hash = "sha256-3w4k0AfmEp+wvXIkC1koKjIQxkQm3zLBrNgNh7IfNw0=" @@ -6019,6 +7467,18 @@ license = [ ] homepage = "https://github.com/leiserfg/fervojo" +[fh-joanneum-iit-thesis."2.2.0"] +url = "https://packages.typst.org/preview/fh-joanneum-iit-thesis-2.2.0.tar.gz" +hash = "sha256-p/7AqeKKolUCKpn46uxFKKuOCZZyjfYub8jZGEYaJHQ=" +typstDeps = [ + "glossarium_0_5_8", +] +description = "BA or MA thesis at FH JOANNEUM" +license = [ + "MIT", +] +homepage = "https://git-iit.fh-joanneum.at/oss/thesis-template" + [fh-joanneum-iit-thesis."2.1.2"] url = "https://packages.typst.org/preview/fh-joanneum-iit-thesis-2.1.2.tar.gz" hash = "sha256-BfTqeHsL04xPFI2KWwW1HuUlyv5bpPIJhKpDXLwFFgk=" @@ -6100,6 +7560,30 @@ license = [ "MIT", ] +[fibber."0.1.0"] +url = "https://packages.typst.org/preview/fibber-0.1.0.tar.gz" +hash = "sha256-bgIP7f8XDbPySrSRV7Kjf3XRxgvmX8ID8SBIwsV92UY=" +typstDeps = [ + "cetz_0_4_0", +] +description = "Draw microfabrication process diagrams in typst" +license = [ + "MIT", +] +homepage = "https://github.com/gauthamrmn/fibber" + +[fine-lncs."0.2.0"] +url = "https://packages.typst.org/preview/fine-lncs-0.2.0.tar.gz" +hash = "sha256-9DgBvyZHmVHPpsU8HxqZuKVceKRkO+WqJlxToHGKKv8=" +typstDeps = [ + "lemmify_0_1_8", +] +description = "An Springer's Lecture Notes in Computer Science (LNCS) styled template" +license = [ + "MIT", +] +homepage = "https://github.com/Jozott00/typst-fine-lncs" + [fine-lncs."0.1.0"] url = "https://packages.typst.org/preview/fine-lncs-0.1.0.tar.gz" hash = "sha256-H2QM5j3Jx6Y/Di7D8yZTlu9AEnKQ7deMVhHwbWnHpjc=" @@ -6229,6 +7713,26 @@ license = [ "MIT", ] +[flagada."1.0.1"] +url = "https://packages.typst.org/preview/flagada-1.0.1.tar.gz" +hash = "sha256-B9yP1QmuOLMYa8KM3bzNya4evE3XN7xIlWAJqUazyh4=" +typstDeps = [] +description = "A package to generate countries flags, selecting country based on its ISO3166-1 code" +license = [ + "MIT", +] +homepage = "https://github.com/samrenault/flagada" + +[flagada."1.0.0"] +url = "https://packages.typst.org/preview/flagada-1.0.0.tar.gz" +hash = "sha256-GnBlkFJMjZ0hBc0w4PuIYyLBPCE1ksPCTmIkE3ouVQs=" +typstDeps = [] +description = "A package to generate countries flags, selecting country based on its ISO3166-1 code" +license = [ + "MIT", +] +homepage = "https://github.com/samrenault/flagada" + [flagada."0.2.0"] url = "https://packages.typst.org/preview/flagada-0.2.0.tar.gz" hash = "sha256-kXIHE69IXN9ibklRoVMB8RWDVWCaspU6B+fuWNo1VAI=" @@ -6637,6 +8141,16 @@ license = [ ] homepage = "https://github.com/Tetragramm/flying-circus-typst-template" +[fontawesome."0.6.0"] +url = "https://packages.typst.org/preview/fontawesome-0.6.0.tar.gz" +hash = "sha256-17IcZiVwT6xCucSIi5kfMDqWG1a503vVyLiiaTyoASU=" +typstDeps = [] +description = "A Typst library for Font Awesome icons through the desktop fonts" +license = [ + "MIT", +] +homepage = "https://github.com/duskmoon314/typst-fontawesome" + [fontawesome."0.5.0"] url = "https://packages.typst.org/preview/fontawesome-0.5.0.tar.gz" hash = "sha256-deUJ24arS9YenlMNjUgxsq9cZ7R/TksgNDDblCcPT5Q=" @@ -6707,6 +8221,16 @@ license = [ ] homepage = "https://github.com/duskmoon314/typst-fontawesome" +[formalettre."0.2.0"] +url = "https://packages.typst.org/preview/formalettre-0.2.0.tar.gz" +hash = "sha256-JPOTl+Gwdlpma58BMRQWv/v5vOHnvrqG3Kgsp3S7u5k=" +typstDeps = [] +description = "French formal letter template" +license = [ + "BSD-3-Clause", +] +homepage = "https://github.com/Brndan/lettre" + [formalettre."0.1.3"] url = "https://packages.typst.org/preview/formalettre-0.1.3.tar.gz" hash = "sha256-51SXjB7Icsb0NUPvhPhmaZxa2AJF8D0DLhm5zFzH7YI=" @@ -6918,6 +8442,16 @@ license = [ ] homepage = "https://github.com/polylux-typ/friendly" +[frogst."1.0.0"] +url = "https://packages.typst.org/preview/frogst-1.0.0.tar.gz" +hash = "sha256-YxVBCbrlm6532moORtmQcHfd39ljXJ9Y+/46GOuaPBs=" +typstDeps = [] +description = "Literal naming of numbers in French" +license = [ + "MIT", +] +homepage = "https://github.com/Raphael-CV/frogst" + [fruitify."0.1.1"] url = "https://packages.typst.org/preview/fruitify-0.1.1.tar.gz" hash = "sha256-CEvzympelzWxXFudpn/7w1noPcfrq7RWUxcVHw+FqIs=" @@ -7034,6 +8568,18 @@ license = [ "GPL-3.0-or-later", ] +[g-exam."0.4.3"] +url = "https://packages.typst.org/preview/g-exam-0.4.3.tar.gz" +hash = "sha256-nQd4e5V6M8HSIzq5o7yDHrTljmVvFDzBteMCoSkM1qs=" +typstDeps = [ + "oxifmt_1_0_0", +] +description = "Create exams with student information, grade chart, score control, questions, and sub-questions" +license = [ + "MIT", +] +homepage = "https://github.com/MatheSchool/typst-g-exam" + [g-exam."0.4.2"] url = "https://packages.typst.org/preview/g-exam-0.4.2.tar.gz" hash = "sha256-PLlZ4+/CPccRlre8hTfe8/tNe/372pHPeX6ZuikuyCI=" @@ -7147,6 +8693,16 @@ license = [ ] homepage = "https://github.com/MatheSchool/typst-g-exam" +[gallus-hsg."1.0.0"] +url = "https://packages.typst.org/preview/gallus-hsg-1.0.0.tar.gz" +hash = "sha256-A747wV1XUbuIclmAC39vvZ2pBXlVR2R7evhuajKNV4I=" +typstDeps = [] +description = "Thesis at the University of St. Gallen (HSG" +license = [ + "MIT", +] +homepage = "https://github.com/joshuabeny1999/unisg-thesis-template-typst" + [game-theoryst."0.1.0"] url = "https://packages.typst.org/preview/game-theoryst-0.1.0.tar.gz" hash = "sha256-1FtNDcbP6TBXZQ9SlWzmHSrp6F8pTPEnjDKougnlCqI=" @@ -7159,6 +8715,18 @@ license = [ ] homepage = "https://github.com/connortwiegand/game-theoryst" +[gantty."0.4.0"] +url = "https://packages.typst.org/preview/gantty-0.4.0.tar.gz" +hash = "sha256-ySsKh1/9wrrAnUFGIW/x+MqtYxcRsRgJYavf5RIEp44=" +typstDeps = [ + "cetz_0_4_1", +] +description = "Create gantt charts using datetimes" +license = [ + "LGPL-3.0-only", +] +homepage = "https://gitlab.com/john_t/typst-gantty" + [gantty."0.3.0"] url = "https://packages.typst.org/preview/gantty-0.3.0.tar.gz" hash = "sha256-yfyaSGb3c8+ZnyJdF3gfI+faUbjhZI0qhYMXCRPh6nk=" @@ -7195,6 +8763,19 @@ license = [ ] homepage = "https://gitlab.com/john_t/typst-gantty" +[genealotree."0.3.0"] +url = "https://packages.typst.org/preview/genealotree-0.3.0.tar.gz" +hash = "sha256-zRq5Wn25rsrmFXiThlVhPhEQYU5/umgmJ5XK5tKoa34=" +typstDeps = [ + "cetz_0_4_1", + "t4t_0_4_3", +] +description = "A package to draw genealogical trees, based on CeTZ" +license = [ + "GPL-3.0-only", +] +homepage = "https://codeberg.org/drloiseau/genealogy" + [genealotree."0.2.0"] url = "https://packages.typst.org/preview/genealotree-0.2.0.tar.gz" hash = "sha256-RvKMkv1h5huYkLTNdGOijBi+wBMZxud93f24WDhJ28s=" @@ -7385,6 +8966,16 @@ license = [ ] homepage = "https://github.com/elegaanz/georges-yetyp" +[gloat."0.1.0"] +url = "https://packages.typst.org/preview/gloat-0.1.0.tar.gz" +hash = "sha256-n+56p2NjXlfa07rW0L4hNaH9nh6ATMBytQqZuS5RbU4=" +typstDeps = [] +description = "Academic CV for the natural sciences" +license = [ + "Unlicense", +] +homepage = "https://github.com/eweix/gloat" + [gloss-awe."0.0.5"] url = "https://packages.typst.org/preview/gloss-awe-0.0.5.tar.gz" hash = "sha256-DVVxTx6TN3oZjWy1W9VZdAj0ymLpoFtEIaS0RO3KkE4=" @@ -7415,6 +9006,36 @@ license = [ ] homepage = "https://github.com/RolfBremer/typst-glossary" +[glossarium."0.5.9"] +url = "https://packages.typst.org/preview/glossarium-0.5.9.tar.gz" +hash = "sha256-0dnDMC0jWETnlEouT/gTO1zF8bOe6fHREU0Op3VzpHI=" +typstDeps = [] +description = "Glossarium is a simple, easily customizable typst glossary" +license = [ + "MIT", +] +homepage = "https://github.com/typst-community/glossarium" + +[glossarium."0.5.8"] +url = "https://packages.typst.org/preview/glossarium-0.5.8.tar.gz" +hash = "sha256-sh1Dl2QJmVSBkbin5+LNUpRkFm9iTg16iKKQVcwo5C8=" +typstDeps = [] +description = "Glossarium is a simple, easily customizable typst glossary" +license = [ + "MIT", +] +homepage = "https://github.com/typst-community/glossarium" + +[glossarium."0.5.7"] +url = "https://packages.typst.org/preview/glossarium-0.5.7.tar.gz" +hash = "sha256-5+1SaEv+x4rXLNcuYQTgEegt7U1V8CWo4CY1ctM0LHA=" +typstDeps = [] +description = "Glossarium is a simple, easily customizable typst glossary" +license = [ + "MIT", +] +homepage = "https://github.com/typst-community/glossarium" + [glossarium."0.5.6"] url = "https://packages.typst.org/preview/glossarium-0.5.6.tar.gz" hash = "sha256-PSJistNVYaEt1VjLxTzieSrOCNKkdbl8x5JWrF/6qfM=" @@ -7777,6 +9398,22 @@ license = [ ] homepage = "https://github.com/swaits/typst-collection" +[gqe-lemoulon-presentation."0.0.6"] +url = "https://packages.typst.org/preview/gqe-lemoulon-presentation-0.0.6.tar.gz" +hash = "sha256-Zx1OqxAJaZd6yuONAGxyArJllT6HoaqMOsn3fXi7TE4=" +typstDeps = [ + "codly_1_3_0", + "showybox_2_0_4", + "tablem_0_3_0", + "tidy_0_4_3", + "touying_0_6_1", +] +description = "Quickly generate slides for a GQE-Le moulon presentation" +license = [ + "GPL-3.0-only", +] +homepage = "https://forge.inrae.fr/gqe-moulon/gqe-presentation.git" + [gqe-lemoulon-presentation."0.0.5"] url = "https://packages.typst.org/preview/gqe-lemoulon-presentation-0.0.5.tar.gz" hash = "sha256-EKRM2pcccly4vMbMWCTOQednyIpPBet5RBOzrsZGLs4=" @@ -7895,6 +9532,26 @@ license = [ ] homepage = "https://github.com/piepert/grape-suite" +[grayness."0.4.1"] +url = "https://packages.typst.org/preview/grayness-0.4.1.tar.gz" +hash = "sha256-Qb0zbsAe+VUjVqoH7MjMp0ZSswCoRaqW3Sa/1uk9KfQ=" +typstDeps = [] +description = "Simple image editing capabilities like converting to grayscale and cropping via a WASM plugin" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/nineff/grayness" + +[grayness."0.4.0"] +url = "https://packages.typst.org/preview/grayness-0.4.0.tar.gz" +hash = "sha256-U1+Mode80Wshk6IzB8N6hNG2MLkxydCWQS2drEgdZtU=" +typstDeps = [] +description = "Simple image editing capabilities like converting to grayscale and cropping via a WASM plugin" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/nineff/grayness" + [grayness."0.3.0"] url = "https://packages.typst.org/preview/grayness-0.3.0.tar.gz" hash = "sha256-0mZHo4t/5q/rVkaM7YqKs7ugPADWcofFvYa2eeU59K8=" @@ -8013,6 +9670,16 @@ license = [ ] homepage = "https://github.com/ssotoen/gridlock" +[grotesk-cv."1.0.5"] +url = "https://packages.typst.org/preview/grotesk-cv-1.0.5.tar.gz" +hash = "sha256-nlJgqKh/asgWSbgxDkg3lw/SduR0HNzcRguKOkwYsaM=" +typstDeps = [] +description = "A clean CV and cover letter template based on Brilliant-cv and fireside templates" +license = [ + "Unlicense", +] +homepage = "https://github.com/AsiSkarp/grotesk-cv" + [grotesk-cv."1.0.4"] url = "https://packages.typst.org/preview/grotesk-cv-1.0.4.tar.gz" hash = "sha256-NMRU0vPoGT5xrbG/lcGwMs0vsaV56rwEmacQ+1SF2iM=" @@ -8156,6 +9823,38 @@ license = [ ] homepage = "https://github.com/EdwinChang24/typst-gru" +[gruvy."2.1.0"] +url = "https://packages.typst.org/preview/gruvy-2.1.0.tar.gz" +hash = "sha256-xL9xd3Wvo+/Vz+2ZVatpmMhTtLgquETE2RvJe+7cvNc=" +typstDeps = [] +description = "Gruvbox colors" +license = [ + "MIT", +] +homepage = "https://github.com/arsmoriendy/typst-gruvy" + +[gruvy."2.0.0"] +url = "https://packages.typst.org/preview/gruvy-2.0.0.tar.gz" +hash = "sha256-yGk0DdmDsdE+wHsJJM5ZRzHA/ag2DPuVixFGBY3q/iM=" +typstDeps = [] +description = "Gruvbox colors" +license = [ + "MIT", +] +homepage = "https://github.com/arsmoriendy/typst-gruvy" + +[gruvy."1.0.0"] +url = "https://packages.typst.org/preview/gruvy-1.0.0.tar.gz" +hash = "sha256-BxizZJmkyRSf/lsZ0lqG+2F0+tBawBd1yYZ8gKhGSCw=" +typstDeps = [ + "valkyrie_0_2_2", +] +description = "Gruvbox colors" +license = [ + "MIT", +] +homepage = "https://github.com/arsmoriendy/typst-gruvy" + [guided-resume-starter-cgc."2.0.0"] url = "https://packages.typst.org/preview/guided-resume-starter-cgc-2.0.0.tar.gz" hash = "sha256-vj/U0MOVCQBsw/5EJPraeyl3ifjrvMsgpoE26NC1xqM=" @@ -8176,6 +9875,18 @@ license = [ ] homepage = "https://codeberg.org/Sekoia/gviz-typst" +[h-graph."0.1.0"] +url = "https://packages.typst.org/preview/h-graph-0.1.0.tar.gz" +hash = "sha256-GnjgPD5TP4tET7aV8YRK8IIlUs45NpD6WFon1zn28bM=" +typstDeps = [ + "fletcher_0_5_8", +] +description = "Draw image releted to graph theory with a very simple mark-up language" +license = [ + "MIT", +] +homepage = "https://github.com/fogsong233/h-graph" + [hagakiii."0.1.0"] url = "https://packages.typst.org/preview/hagakiii-0.1.0.tar.gz" hash = "sha256-cIJ562PgOM0flVEhS+7tyuMX+SH/2rxlifpqI5PBr+E=" @@ -8186,6 +9897,46 @@ license = [ ] homepage = "https://github.com/34j/typst-hagakiii" +[hallon."0.1.2"] +url = "https://packages.typst.org/preview/hallon-0.1.2.tar.gz" +hash = "sha256-SkgRu6hERjq7PAcOS9wfJJzzEFe1bcQWk4NoffonDKU=" +typstDeps = [] +description = "Utility functions for Typst" +license = [ + "0BSD", +] +homepage = "https://github.com/mewmew/hallon-typ" + +[hallon."0.1.1"] +url = "https://packages.typst.org/preview/hallon-0.1.1.tar.gz" +hash = "sha256-83Cg+Xbvx/We9jQw/wV0R2VHujKpdXpRJYMyTN/epBs=" +typstDeps = [] +description = "Utility functions for Typst" +license = [ + "0BSD", +] +homepage = "https://github.com/mewmew/hallon-typ" + +[hallon."0.1.0"] +url = "https://packages.typst.org/preview/hallon-0.1.0.tar.gz" +hash = "sha256-LqhTqD9TwYQrjft30iBBj+MDQHPk/z0+ct+1jH3wdWk=" +typstDeps = [] +description = "Utility functions for Typst" +license = [ + "0BSD", +] +homepage = "https://github.com/mewmew/hallon-typ" + +[hamnosys-includer."1.0.0"] +url = "https://packages.typst.org/preview/hamnosys-includer-1.0.0.tar.gz" +hash = "sha256-+HqWRYwCFPSfGwjKhMwt8RDytys/DN8767BuXiSYcek=" +typstDeps = [] +description = "For using HamNoSys in Typst" +license = [ + "LPPL-1.3c", +] +homepage = "https://github.com/TestTimothy/Typst-HamNoSys" + [hamnosys-includer."0.1.0"] url = "https://packages.typst.org/preview/hamnosys-includer-0.1.0.tar.gz" hash = "sha256-t1aYMwmrttYE9XPIMVKJbXw75tr8jy5dEaYK4T0aqJ8=" @@ -8235,6 +9986,16 @@ license = [ ] homepage = "https://github.com/yuegeao/hanzi-calligraphy" +[harvard-gsas-thesis-oat."0.1.5"] +url = "https://packages.typst.org/preview/harvard-gsas-thesis-oat-0.1.5.tar.gz" +hash = "sha256-hMBp9QOB4t0OC1Fpfem4bGMak9lQ1otHMTbPYhTbu1w=" +typstDeps = [] +description = "PhD Thesis template for Harvard GSAS (Graduate School of Arts and Sciences" +license = [ + "MIT", +] +homepage = "https://github.com/Moelf/harvard-gsas-thesis-oat" + [harvard-gsas-thesis-oat."0.1.4"] url = "https://packages.typst.org/preview/harvard-gsas-thesis-oat-0.1.4.tar.gz" hash = "sha256-yurD53i4zYGfYjTWd0NREli8bhRZZwvbBN8VZDBbyD4=" @@ -8285,6 +10046,26 @@ license = [ ] homepage = "https://github.com/Moelf/harvard-gsas-thesis-oat" +[haw-hamburg."0.6.1"] +url = "https://packages.typst.org/preview/haw-hamburg-0.6.1.tar.gz" +hash = "sha256-x/C4y3iCQugH81bEUUK+0OyZA3l1hRoVSzWeTa6zMDE=" +typstDeps = [] +description = "Unofficial template for writing a report or thesis in the HAW Hamburg department of Computer Science design" +license = [ + "MIT", +] +homepage = "https://github.com/LasseRosenow/HAW-Hamburg-Typst-Template" + +[haw-hamburg."0.6.0"] +url = "https://packages.typst.org/preview/haw-hamburg-0.6.0.tar.gz" +hash = "sha256-QIgvoMmKnqjrlY48C1g70JtoeYuOcUGCh9Z+bodFtB0=" +typstDeps = [] +description = "Unofficial template for writing a report or thesis in the HAW Hamburg department of Computer Science design" +license = [ + "MIT", +] +homepage = "https://github.com/LasseRosenow/HAW-Hamburg-Typst-Template" + [haw-hamburg."0.5.1"] url = "https://packages.typst.org/preview/haw-hamburg-0.5.1.tar.gz" hash = "sha256-B9r2CqFlw7129Ow8y9aOQXe6y2O3/GKm2YSDP5pHU6k=" @@ -8370,6 +10151,32 @@ license = [ ] homepage = "https://github.com/LasseRosenow/HAW-Hamburg-Typst-Template" +[haw-hamburg-bachelor-thesis."0.6.1"] +url = "https://packages.typst.org/preview/haw-hamburg-bachelor-thesis-0.6.1.tar.gz" +hash = "sha256-jbUnnOt0TODnD3Deh6zvIbswpaRP/fEQ0JxqtWTqUu8=" +typstDeps = [ + "glossarium_0_5_8", + "haw-hamburg_0_6_1", +] +description = "Unofficial template for writing a bachelor-thesis in the HAW Hamburg department of Computer Science design" +license = [ + "MIT", +] +homepage = "https://github.com/LasseRosenow/HAW-Hamburg-Typst-Template" + +[haw-hamburg-bachelor-thesis."0.6.0"] +url = "https://packages.typst.org/preview/haw-hamburg-bachelor-thesis-0.6.0.tar.gz" +hash = "sha256-FBXdCA+5kfzSsB01ipfq0eLY9wNgoob1g9bN12VH5io=" +typstDeps = [ + "glossarium_0_5_8", + "haw-hamburg_0_6_0", +] +description = "Unofficial template for writing a bachelor-thesis in the HAW Hamburg department of Computer Science design" +license = [ + "MIT", +] +homepage = "https://github.com/LasseRosenow/HAW-Hamburg-Typst-Template" + [haw-hamburg-bachelor-thesis."0.5.1"] url = "https://packages.typst.org/preview/haw-hamburg-bachelor-thesis-0.5.1.tar.gz" hash = "sha256-keM157SF7OS0FT0HGgFbhhZhA7lUqDMaRDmNHU6CIzE=" @@ -8448,6 +10255,32 @@ license = [ ] homepage = "https://github.com/LasseRosenow/HAW-Hamburg-Typst-Template" +[haw-hamburg-master-thesis."0.6.1"] +url = "https://packages.typst.org/preview/haw-hamburg-master-thesis-0.6.1.tar.gz" +hash = "sha256-ShHUj4JxP30JF2KDN7KiuDbRC7Rkmp263gTsgiv+ydM=" +typstDeps = [ + "glossarium_0_5_8", + "haw-hamburg_0_6_1", +] +description = "Unofficial template for writing a master-thesis in the HAW Hamburg department of Computer Science design" +license = [ + "MIT", +] +homepage = "https://github.com/LasseRosenow/HAW-Hamburg-Typst-Template" + +[haw-hamburg-master-thesis."0.6.0"] +url = "https://packages.typst.org/preview/haw-hamburg-master-thesis-0.6.0.tar.gz" +hash = "sha256-BvIj2dfhDdaWL5H/ys3LsEDztSNDZ5x7cHe42kZYN1M=" +typstDeps = [ + "glossarium_0_5_8", + "haw-hamburg_0_6_0", +] +description = "Unofficial template for writing a master-thesis in the HAW Hamburg department of Computer Science design" +license = [ + "MIT", +] +homepage = "https://github.com/LasseRosenow/HAW-Hamburg-Typst-Template" + [haw-hamburg-master-thesis."0.5.1"] url = "https://packages.typst.org/preview/haw-hamburg-master-thesis-0.5.1.tar.gz" hash = "sha256-UxzkkPmWO6frdPI57xxelpE3mqgnpZn9aobQAHBTjIQ=" @@ -8526,6 +10359,32 @@ license = [ ] homepage = "https://github.com/LasseRosenow/HAW-Hamburg-Typst-Template" +[haw-hamburg-report."0.6.1"] +url = "https://packages.typst.org/preview/haw-hamburg-report-0.6.1.tar.gz" +hash = "sha256-ADv7KuOYNegyKwBxKhvi3DZoJ2MvjfMDmngSzIr3dHU=" +typstDeps = [ + "glossarium_0_5_8", + "haw-hamburg_0_6_1", +] +description = "Unofficial template for writing a report in the HAW Hamburg department of Computer Science design" +license = [ + "MIT", +] +homepage = "https://github.com/LasseRosenow/HAW-Hamburg-Typst-Template" + +[haw-hamburg-report."0.6.0"] +url = "https://packages.typst.org/preview/haw-hamburg-report-0.6.0.tar.gz" +hash = "sha256-ilJne1VLW2RzqatnJpP9f2Ziy5yGqovkRX+DrW10xFw=" +typstDeps = [ + "glossarium_0_5_8", + "haw-hamburg_0_6_0", +] +description = "Unofficial template for writing a report in the HAW Hamburg department of Computer Science design" +license = [ + "MIT", +] +homepage = "https://github.com/LasseRosenow/HAW-Hamburg-Typst-Template" + [haw-hamburg-report."0.5.1"] url = "https://packages.typst.org/preview/haw-hamburg-report-0.5.1.tar.gz" hash = "sha256-wKWew9SRGfaI1bvZ2HUGsIGNUWWS9Jc2DydoEs+4i9k=" @@ -8644,6 +10503,45 @@ license = [ ] homepage = "https://github.com/hei-templates/hei-synd-report" +[hei-synd-thesis."0.2.2"] +url = "https://packages.typst.org/preview/hei-synd-thesis-0.2.2.tar.gz" +hash = "sha256-2NhNKIdJIFpWUyb9el7WzPvagXTm9Pwm16a07kBBySA=" +typstDeps = [ + "cheq_0_2_3", + "codelst_2_0_2", + "codly_1_3_0", + "codly-languages_0_1_8", + "fractusist_0_3_2", + "glossarium_0_5_8", + "icu-datetime_0_1_2", + "muchpdf_0_1_1", + "wordometer_0_1_4", +] +description = "A thesis template tailored to the Systems Engineering (Synd) program at the HEI-Vs School of Engineering, Sion, Switzerland" +license = [ + "MIT", +] +homepage = "https://github.com/hei-templates/hei-synd-thesis" + +[hei-synd-thesis."0.2.1"] +url = "https://packages.typst.org/preview/hei-synd-thesis-0.2.1.tar.gz" +hash = "sha256-lJzGweOwikQWH0Y+o/u+mFGCs23y9hzez94AqRPUeNI=" +typstDeps = [ + "cheq_0_2_2", + "codelst_2_0_2", + "codly_1_3_0", + "codly-languages_0_1_1", + "fractusist_0_3_2", + "glossarium_0_5_6", + "icu-datetime_0_1_2", + "wordometer_0_1_4", +] +description = "A thesis template tailored to the Systems Engineering (Synd) program at the HEI-Vs School of Engineering, Sion, Switzerland" +license = [ + "MIT", +] +homepage = "https://github.com/hei-templates/hei-synd-thesis" + [hei-synd-thesis."0.2.0"] url = "https://packages.typst.org/preview/hei-synd-thesis-0.2.0.tar.gz" hash = "sha256-GZCE71ji6RNfjeF4FSFkacMbo8p8sIdvoAU0/lM1w34=" @@ -8691,6 +10589,18 @@ license = [ ] homepage = "https://github.com/hei-templates/hei-synd-thesis" +[herodot."0.2.0"] +url = "https://packages.typst.org/preview/herodot-0.2.0.tar.gz" +hash = "sha256-qkKxherzKhwbczv54ZNpJhAKU+ysf0Q4ueBkM6yLK9o=" +typstDeps = [ + "cetz_0_4_1", +] +description = "A package for making linear timelines, inspired by chronology" +license = [ + "GPL-3.0-only", +] +homepage = "https://github.com/gnist-dev/herodot" + [herodot."0.1.0"] url = "https://packages.typst.org/preview/herodot-0.1.0.tar.gz" hash = "sha256-hZItUzNJe3TNxMjk2JiN7+wuI5AhGwUdx8p8HOUMnUI=" @@ -8713,6 +10623,20 @@ license = [ ] homepage = "https://github.com/jneug/typst-heroic" +[hetvid."0.1.0"] +url = "https://packages.typst.org/preview/hetvid-0.1.0.tar.gz" +hash = "sha256-UxljXgBDSIoKK5vBu7V6tU3OZPkx4Ps5BS+Hbqujnyk=" +typstDeps = [ + "cetz_0_4_1", + "fancy-units_0_1_1", + "metalogo_1_2_0", + "zebraw_0_5_5", +] +description = "A template for light notes" +license = [ + "MIT-0", +] + [hhn-unitylab-thesis-template."0.0.2"] url = "https://packages.typst.org/preview/hhn-unitylab-thesis-template-0.0.2.tar.gz" hash = "sha256-JaL4bV591+AiFXijkuQBFhoDGYhfU8ZwPyxrp0S9o08=" @@ -8874,6 +10798,38 @@ license = [ "MIT", ] +[hy-dro-gen."0.1.1"] +url = "https://packages.typst.org/preview/hy-dro-gen-0.1.1.tar.gz" +hash = "sha256-qm+YWpliV3QICQCwvCssTZlFBQeuqGXU+ptc8iLH2qU=" +typstDeps = [] +description = "Word hyphenation via bindings to typst/hypher" +license = [ + "MIT", +] +homepage = "https://github.com/Vanille-N/hy-dro-gen" + +[hy-dro-gen."0.1.0"] +url = "https://packages.typst.org/preview/hy-dro-gen-0.1.0.tar.gz" +hash = "sha256-dFXCI13tg4wcoH+UHHRZGSN37Jic/OEhOs6fzCvcBpQ=" +typstDeps = [] +description = "Word hyphenation via bindings to typst/hypher" +license = [ + "MIT", +] +homepage = "https://github.com/Vanille-N/hy-dro-gen" + +[hydra."0.6.2"] +url = "https://packages.typst.org/preview/hydra-0.6.2.tar.gz" +hash = "sha256-umnjqplojf5gpPh6JzgMwStBo0HDqVj++gTIWOh599Q=" +typstDeps = [ + "oxifmt_1_0_0", +] +description = "Query and display headings in your documents and templates" +license = [ + "MIT", +] +homepage = "https://github.com/tingerrr/hydra" + [hydra."0.6.1"] url = "https://packages.typst.org/preview/hydra-0.6.1.tar.gz" hash = "sha256-7gq7nGp7zzv4A0A1FbQWmDINEICEHps1HcbO+hi2GyA=" @@ -8990,6 +10946,46 @@ license = [ ] homepage = "https://github.com/tshort/hyperscript" +[i-am-acro."0.1.3"] +url = "https://packages.typst.org/preview/i-am-acro-0.1.3.tar.gz" +hash = "sha256-S/PHqBJIpNdCOnNs5mZliCd21r8DFzF2yOM2DeSfe68=" +typstDeps = [] +description = "Acronym package for typst, aiming for multilanguage support and feature richness" +license = [ + "MIT", +] +homepage = "https://github.com/etwasmitbaum/i-am-acro" + +[i-am-acro."0.1.2"] +url = "https://packages.typst.org/preview/i-am-acro-0.1.2.tar.gz" +hash = "sha256-vCcBQz0Ge4eBDSe2AGATRhn7f7mmfIAQHx0WYzORa3M=" +typstDeps = [] +description = "Acronym package for typst, aiming for multilanguage support and feature richness" +license = [ + "MIT", +] +homepage = "https://github.com/etwasmitbaum/i-am-acro" + +[i-am-acro."0.1.1"] +url = "https://packages.typst.org/preview/i-am-acro-0.1.1.tar.gz" +hash = "sha256-psTaDPrS+dfiI8wGYmI/fjwQYAwZDRBOmIr82ukRBlc=" +typstDeps = [] +description = "Acronym package for typst, aiming for multilanguage support and feature richness" +license = [ + "MIT", +] +homepage = "https://github.com/etwasmitbaum/i-am-acro" + +[i-am-acro."0.1.0"] +url = "https://packages.typst.org/preview/i-am-acro-0.1.0.tar.gz" +hash = "sha256-qutdVAEIbT1M+LSIq63fYFI0+QRf+DTkB58+UlH7SAI=" +typstDeps = [] +description = "Acronym package for typst, aiming for multilanguage support and feature richness" +license = [ + "MIT", +] +homepage = "https://github.com/etwasmitbaum/i-am-acro" + [i-figured."0.2.4"] url = "https://packages.typst.org/preview/i-figured-0.2.4.tar.gz" hash = "sha256-508q3J4Sj5QnxexJndtbrvekcBpuLjyv9Bkt7QgdkPk=" @@ -9162,6 +11158,16 @@ license = [ ] homepage = "https://github.com/Bi0T1N/typst-iconic-salmon-svg" +[icu-datetime."0.2.0"] +url = "https://packages.typst.org/preview/icu-datetime-0.2.0.tar.gz" +hash = "sha256-6CeuNilPvenD4jTYKWK2JY/IVOoz0nv7kF/vjK83xhE=" +typstDeps = [] +description = "Date and time formatting using ICU4X via WASM" +license = [ + "MIT", +] +homepage = "https://github.com/Nerixyz/icu-typ" + [icu-datetime."0.1.2"] url = "https://packages.typst.org/preview/icu-datetime-0.1.2.tar.gz" hash = "sha256-1dWi/4Cos6YwvR/6uUXIeXY5zREnJKWcpoS26va6jFs=" @@ -9524,6 +11530,16 @@ license = [ ] homepage = "https://github.com/JeppeKlitgaard/impressive-impression" +[in-dexter."0.7.2"] +url = "https://packages.typst.org/preview/in-dexter-0.7.2.tar.gz" +hash = "sha256-e2bO70xWHPBqaLd2GnN2tBuNHvrkQ4yus9orINknjYY=" +typstDeps = [] +description = "Create an 'hand picked' Index" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/RolfBremer/in-dexter" + [in-dexter."0.7.0"] url = "https://packages.typst.org/preview/in-dexter-0.7.0.tar.gz" hash = "sha256-yzRnJe14VYyYWSYAs3pEDDZLU8QfBfC2sK1OP0Bkc50=" @@ -9686,6 +11702,26 @@ license = [ ] homepage = "https://github.com/cecoeco/indic-numerals" +[intextual."0.1.0"] +url = "https://packages.typst.org/preview/intextual-0.1.0.tar.gz" +hash = "sha256-AuTGRdTIY9a8ETKXLiEv+ESUJFnF9UGDco/NfPB04Hw=" +typstDeps = [] +description = "Flushed left/right text and individual line tagging in equations" +license = [ + "MIT", +] +homepage = "https://github.com/euwbah/intextual" + +[invicta-thesis."1.0.0"] +url = "https://packages.typst.org/preview/invicta-thesis-1.0.0.tar.gz" +hash = "sha256-1Zo0/JKWkpWeOKGBoBT+iwyqP7GQ+lA9Da3HPFB9U4M=" +typstDeps = [] +description = "Master's thesis for Faculty of Engineering of University of Porto" +license = [ + "MIT", +] +homepage = "https://github.com/Tonevanda/invicta-thesis" + [invoice-maker."1.1.0"] url = "https://packages.typst.org/preview/invoice-maker-1.1.0.tar.gz" hash = "sha256-IT1P65mtzpgUUUHwOIDHoYG8x3GeP3MtSU+OzJFGFVs=" @@ -9728,6 +11764,174 @@ license = [ "MIT", ] +[isc-hei-bthesis."0.6.0"] +url = "https://packages.typst.org/preview/isc-hei-bthesis-0.6.0.tar.gz" +hash = "sha256-n3e2GMZHLKtnz8WqshHjbo32eK/TW5SrQDG+Ot7qkMI=" +typstDeps = [ + "acrostiche_0_6_0", + "codelst_2_0_2", + "datify_0_1_4", + "showybox_2_0_4", +] +description = "Official bachelor thesis at the 'Informatique et systèmes de communication' (ISC) bachelor degree programme, School of Engineering (HEI) in Sion, Switzerland" +license = [ + "MIT", +] +homepage = "https://github.com/ISC-HEI/isc-hei-student-templates" + +[isc-hei-bthesis."0.5.3"] +url = "https://packages.typst.org/preview/isc-hei-bthesis-0.5.3.tar.gz" +hash = "sha256-Fg91DRIus2eqYD9P4atooWdYWBla/pb2ciEhUhNpqVM=" +typstDeps = [ + "acrostiche_0_5_2", + "codelst_2_0_2", + "datify_0_1_4", + "showybox_2_0_4", +] +description = "Official bachelor thesis at the 'Informatique et systèmes de communication' (ISC) bachelor degree programme, School of Engineering (HEI) in Sion, Switzerland" +license = [ + "MIT", +] +homepage = "https://github.com/ISC-HEI/isc-hei-student-templates" + +[isc-hei-bthesis."0.5.2"] +url = "https://packages.typst.org/preview/isc-hei-bthesis-0.5.2.tar.gz" +hash = "sha256-QFljcFpF6rWq57HmIODOx2RqyHBGqufvluQB6I7qTOs=" +typstDeps = [ + "acrostiche_0_5_2", + "codelst_2_0_2", + "datify_0_1_4", + "showybox_2_0_4", +] +description = "Official bachelor thesis at the 'Informatique et systèmes de communication' (ISC) bachelor degree programme, School of Engineering (HEI) in Sion, Switzerland" +license = [ + "MIT", +] +homepage = "https://github.com/ISC-HEI/isc-hei-student-templates" + +[isc-hei-bthesis."0.5.0"] +url = "https://packages.typst.org/preview/isc-hei-bthesis-0.5.0.tar.gz" +hash = "sha256-G3ALq44SjUVAOZcGqwcQHwYLGuHEE4Rkhr151tg35oY=" +typstDeps = [ + "acrostiche_0_5_2", + "codelst_2_0_2", + "datify_0_1_4", + "showybox_2_0_4", +] +description = "Official bachelor thesis at the 'Informatique et systèmes de communication' (ISC) bachelor degree programme at the School of Engineering (HEI) in Sion, Switzerland" +license = [ + "MIT", +] +homepage = "https://github.com/ISC-HEI/ISC-report" + +[isc-hei-exec-summary."0.6.0"] +url = "https://packages.typst.org/preview/isc-hei-exec-summary-0.6.0.tar.gz" +hash = "sha256-SE0U10GbKFfHndhan6jH7vY6L0AZgjmya97j62XX1y0=" +typstDeps = [ + "cetz_0_4_0", + "cetz-plot_0_1_2", + "codelst_2_0_2", + "datify_0_1_4", + "showybox_2_0_4", +] +description = "Official executive summary for the bachelor thesis at the 'Informatique et systèmes de communication' (ISC) bachelor degree programme, School of Engineering (HEI) in Sion, Switzerland" +license = [ + "MIT", +] +homepage = "https://github.com/ISC-HEI/isc-hei-student-templates" + +[isc-hei-exec-summary."0.5.3"] +url = "https://packages.typst.org/preview/isc-hei-exec-summary-0.5.3.tar.gz" +hash = "sha256-QtKHrRjswcRY2aQMT9qFR+RN20qp8Er6x5sM+jQ4s48=" +typstDeps = [ + "cetz_0_4_0", + "cetz-plot_0_1_2", + "codelst_2_0_2", + "datify_0_1_4", + "showybox_2_0_4", +] +description = "Official executive summary for the bachelor thesis at the 'Informatique et systèmes de communication' (ISC) bachelor degree programme, School of Engineering (HEI) in Sion, Switzerland" +license = [ + "MIT", +] +homepage = "https://github.com/ISC-HEI/isc-hei-student-templates" + +[isc-hei-exec-summary."0.5.2"] +url = "https://packages.typst.org/preview/isc-hei-exec-summary-0.5.2.tar.gz" +hash = "sha256-8MoRA3ViivS4QW/+2gMSseLmbZswP1+xkz399JznKwM=" +typstDeps = [ + "cetz_0_4_0", + "cetz-plot_0_1_2", + "codelst_2_0_2", + "datify_0_1_4", + "showybox_2_0_4", +] +description = "Official executive summary for the bachelor thesis at the 'Informatique et systèmes de communication' (ISC) bachelor degree programme, School of Engineering (HEI) in Sion, Switzerland" +license = [ + "MIT", +] +homepage = "https://github.com/ISC-HEI/isc-hei-student-templates" + +[isc-hei-report."0.6.0"] +url = "https://packages.typst.org/preview/isc-hei-report-0.6.0.tar.gz" +hash = "sha256-26k85qM7WxpRdRJM+qQ8hC7jY17zIVsAIGyV0FKoC3s=" +typstDeps = [ + "acrostiche_0_6_0", + "codelst_2_0_2", + "datify_0_1_4", + "showybox_2_0_4", +] +description = "Official report at the 'Informatique et systèmes de communication' (ISC) bachelor degree programme, School of Engineering (HEI) in Sion, Switzerland" +license = [ + "MIT", +] +homepage = "https://github.com/ISC-HEI/isc-hei-student-templates" + +[isc-hei-report."0.5.3"] +url = "https://packages.typst.org/preview/isc-hei-report-0.5.3.tar.gz" +hash = "sha256-JUkPOj7yGYhsJM4eUInFhAYSagCBMZx2RUa197XkxGA=" +typstDeps = [ + "acrostiche_0_5_2", + "codelst_2_0_2", + "datify_0_1_4", + "showybox_2_0_4", +] +description = "Official report at the 'Informatique et systèmes de communication' (ISC) bachelor degree programme, School of Engineering (HEI) in Sion, Switzerland" +license = [ + "MIT", +] +homepage = "https://github.com/ISC-HEI/isc-hei-student-templates" + +[isc-hei-report."0.5.2"] +url = "https://packages.typst.org/preview/isc-hei-report-0.5.2.tar.gz" +hash = "sha256-YdPVkSIpD8kPzZEeuVlKMOLIzVZdglY69nJGJHeblYA=" +typstDeps = [ + "acrostiche_0_5_2", + "codelst_2_0_2", + "datify_0_1_4", + "showybox_2_0_4", +] +description = "Official report at the 'Informatique et systèmes de communication' (ISC) bachelor degree programme, School of Engineering (HEI) in Sion, Switzerland" +license = [ + "MIT", +] +homepage = "https://github.com/ISC-HEI/isc-hei-student-templates" + +[isc-hei-report."0.3.1"] +url = "https://packages.typst.org/preview/isc-hei-report-0.3.1.tar.gz" +hash = "sha256-y8D9d6HGCcgNzuLtp+4hdX1oUhMcduiqzPXgEf2e4rw=" +typstDeps = [ + "acrostiche_0_5_2", + "codelst_2_0_2", + "datify_0_1_4", + "showybox_2_0_4", +] +description = "Official report at the 'Informatique et systèmes de communication' (ISC) bachelor degree programme at the School of Engineering (HEI) in Sion, Switzerland" +license = [ + "MIT", +] +homepage = "https://github.com/ISC-HEI/ISC-report" + [isc-hei-report."0.2.0"] url = "https://packages.typst.org/preview/isc-hei-report-0.2.0.tar.gz" hash = "sha256-z+XY4IaAOqxAZxjKDLVb/aou/RVOFSnnrTowcRVua60=" @@ -9786,6 +11990,42 @@ license = [ ] homepage = "https://github.com/ISC-HEI/ISC-report" +[itemize."0.1.2"] +url = "https://packages.typst.org/preview/itemize-0.1.2.tar.gz" +hash = "sha256-odjgULdhQlhl9+mY4QATSguJ8egMxnTNcSoi1ptzzFA=" +typstDeps = [ + "elembic_1_1_1", +] +description = "An easy way to customize enum and list" +license = [ + "MIT", +] +homepage = "https://github.com/tianyi-smile/itemize" + +[itemize."0.1.1"] +url = "https://packages.typst.org/preview/itemize-0.1.1.tar.gz" +hash = "sha256-xODP6pJQ/3pt4ZZTnwUYjn2vwr7VaRkBMOeJtvSQ8II=" +typstDeps = [ + "elembic_1_1_1", +] +description = "An easy way to customize enum and list" +license = [ + "MIT", +] +homepage = "https://github.com/tianyi-smile/itemize" + +[itemize."0.1.0"] +url = "https://packages.typst.org/preview/itemize-0.1.0.tar.gz" +hash = "sha256-Ul4x4BpuHYAHHK8OsFUEPedWMDbCsmwc8r9oVUzIYFM=" +typstDeps = [ + "elembic_1_1_1", +] +description = "An easy way to customize enum and list" +license = [ + "MIT", +] +homepage = "https://github.com/tianyi-smile/itemize" + [its-scripted."0.1.0"] url = "https://packages.typst.org/preview/its-scripted-0.1.0.tar.gz" hash = "sha256-Q7zPoW9hjAoirl2xb5sG2/tY3ornofX1hq6B6OIQBHo=" @@ -9806,6 +12046,83 @@ license = [ ] homepage = "https://github.com/glpda/typst-iversymbols" +[jabiz."0.1.1"] +url = "https://packages.typst.org/preview/jabiz-0.1.1.tar.gz" +hash = "sha256-0lZChZ7XzZ1WUHD5zzUYPvMi8Hgu5LbnmLG73HKNhho=" +typstDeps = [ + "cjk-unbreak_0_1_1", +] +description = "Template for Japanese business documents. 日本語のビジネス文書テンプレート" +license = [ + "MIT-0", +] +homepage = "https://github.com/kimushun1101/typst-jabiz" + +[jabiz."0.1.0"] +url = "https://packages.typst.org/preview/jabiz-0.1.0.tar.gz" +hash = "sha256-3bNtG+KOksuICZeBpUFRenzEnclwKmqbJxxU3AhOp7Q=" +typstDeps = [] +description = "Template for Japanese business documents. 日本語のビジネス文書テンプレート" +license = [ + "MIT-0", +] +homepage = "https://github.com/kimushun1101/typst-jabiz" + +[jaconf."0.5.1"] +url = "https://packages.typst.org/preview/jaconf-0.5.1.tar.gz" +hash = "sha256-pTFqoSsvhXyq2zjwLwhPlQ/8pCf5bLzoEhO/49y5Zik=" +typstDeps = [ + "cjk-unbreak_0_1_1", + "codly_1_3_0", + "ctheorems_1_1_3", +] +description = "Template for Japanese academic conference papers. 日本語の学会論文テンプレート" +license = [ + "MIT-0", +] +homepage = "https://github.com/kimushun1101/typst-jp-conf-template" + +[jaconf."0.5.0"] +url = "https://packages.typst.org/preview/jaconf-0.5.0.tar.gz" +hash = "sha256-bjaYZJTPSx5wdqkYvnEm59dQjG6+ZHvqxPE/vzyTk4s=" +typstDeps = [ + "cjk-unbreak_0_1_1", + "codly_1_3_0", + "ctheorems_1_1_3", +] +description = "Template for Japanese academic conference papers. 日本語の学会論文テンプレート" +license = [ + "MIT-0", +] +homepage = "https://github.com/kimushun1101/typst-jp-conf-template" + +[jaconf."0.4.1"] +url = "https://packages.typst.org/preview/jaconf-0.4.1.tar.gz" +hash = "sha256-jEKMQvb/KMrwxEP2mBLoWrk+trKigKPVr5LpalW/+II=" +typstDeps = [ + "cjk-unbreak_0_1_1", + "codly_1_3_0", + "ctheorems_1_1_3", +] +description = "Template for Japanese academic conference papers. 日本語の学会論文テンプレート" +license = [ + "MIT-0", +] +homepage = "https://github.com/kimushun1101/typst-jp-conf-template" + +[jaconf."0.4.0"] +url = "https://packages.typst.org/preview/jaconf-0.4.0.tar.gz" +hash = "sha256-2pAoMSsqx5MuMfJfq3Wr45tORwlrcbbdxVrkZhq9M+M=" +typstDeps = [ + "codly_1_3_0", + "ctheorems_1_1_3", +] +description = "Template for Japanese academic conference papers. 日本語の学会論文テンプレート" +license = [ + "MIT-0", +] +homepage = "https://github.com/kimushun1101/typst-jp-conf-template" + [jaconf."0.3.0"] url = "https://packages.typst.org/preview/jaconf-0.3.0.tar.gz" hash = "sha256-b5um0HbkDzjEGf+4BQ0jl3/kzQ1K/WLnPM8Yf/ezEKU=" @@ -9871,6 +12188,16 @@ license = [ ] homepage = "https://github.com/kimushun1101/typst-jp-conf-template" +[jastylest."0.1.1"] +url = "https://packages.typst.org/preview/jastylest-0.1.1.tar.gz" +hash = "sha256-3b3jtsw3E6EIbsVyB7RE0dBibdjp1P6PHSYN+OAJyww=" +typstDeps = [] +description = "You can set up style templates for writing reports, papers, and slides in Japanese. It works similarly to LaTeX" +license = [ + "MIT-0", +] +homepage = "https://github.com/raygo0312/jastylest.git" + [jastylest."0.1.0"] url = "https://packages.typst.org/preview/jastylest-0.1.0.tar.gz" hash = "sha256-PCCVfomVgNn6R4R77vwK99tOV+0Dn618SJkPxnHTa4o=" @@ -9881,6 +12208,19 @@ license = [ ] homepage = "https://github.com/raygo0312/jastylest.git" +[jastylest-zh."0.1.1"] +url = "https://packages.typst.org/preview/jastylest-zh-0.1.1.tar.gz" +hash = "sha256-3uAg9oFE0K3dmNJqJHvVnreHTPmXPgsnmCPc1f8SfOQ=" +typstDeps = [ + "cjk-unbreak_0_1_1", + "pointless-size_0_1_1", +] +description = "Article optimized for Chinese typesetting" +license = [ + "MIT", +] +homepage = "https://github.com/mike-unk/jastylest-zh.git" + [jastylest-zh."0.1.0"] url = "https://packages.typst.org/preview/jastylest-zh-0.1.0.tar.gz" hash = "sha256-WHHkRwIGWcgm7ekFuTp5BoIs5DHosiPNj+ZMx8Zo/00=" @@ -10246,6 +12586,16 @@ license = [ "MIT", ] +[komet."0.1.0"] +url = "https://packages.typst.org/preview/komet-0.1.0.tar.gz" +hash = "sha256-Hy06Ct0OsvmBZJSK77d7EhGM3u4M/z/spqIt3sSU9CE=" +typstDeps = [] +description = "Selected high-performance computations for Typst" +license = [ + "MIT", +] +homepage = "https://github.com/Mc-Zen/komet" + [kouhu."0.2.0"] url = "https://packages.typst.org/preview/kouhu-0.2.0.tar.gz" hash = "sha256-Q5qLfexfuH7oRNDiyff1/moFN7QplvzkPYdxpjgkR1A=" @@ -10286,6 +12636,22 @@ license = [ ] homepage = "https://github.com/Harry-Chen/kouhu" +[kthesis."0.1.2"] +url = "https://packages.typst.org/preview/kthesis-0.1.2.tar.gz" +hash = "sha256-p8FiG2pRXHh1YCZJXOda4u5/1WXj+q0XWq4FkOfhCVA=" +typstDeps = [ + "glossarium_0_5_8", + "headcount_0_1_0", + "hydra_0_6_1", + "linguify_0_4_2", +] +description = "Unofficial thesis template for KTH Royal Institute of Technology" +license = [ + "MIT", + "MIT-0", +] +homepage = "https://github.com/RafDevX/kthesis-typst" + [kthesis."0.1.1"] url = "https://packages.typst.org/preview/kthesis-0.1.1.tar.gz" hash = "sha256-SEGkBuf1UtnO0/DA74gsbSH/BUkWjORsAj7UYb8EwEA=" @@ -10328,6 +12694,34 @@ license = [ ] homepage = "https://github.com/mbollmann/typst-kunskap" +[labtyp."0.1.0"] +url = "https://packages.typst.org/preview/labtyp-0.1.0.tar.gz" +hash = "sha256-moVnxeUgf+MwN0KJMxfARFVFg/LsZMciPL9unp992+s=" +typstDeps = [] +description = "Label text and extract to json using typst query" +license = [ + "MIT", +] +homepage = "https://github.com/evidlabel/labtyp" + +[lacy-ubc-math-project."0.2.0"] +url = "https://packages.typst.org/preview/lacy-ubc-math-project-0.2.0.tar.gz" +hash = "sha256-QPhVZOJm2s4ds8SLTrVQbbiGZkYaMc/mhwZlcenoaoU=" +typstDeps = [ + "cetz_0_4_0", + "cetz-plot_0_1_2", + "equate_0_3_2", + "lilaq_0_3_0", + "physica_0_9_5", + "showman_0_1_2", + "unify_0_7_1", +] +description = "A UBC MATH 100/101 group project template" +license = [ + "MIT", +] +homepage = "https://github.com/lace-wing/lacy-ubc-math-project" + [lacy-ubc-math-project."0.1.1"] url = "https://packages.typst.org/preview/lacy-ubc-math-project-0.1.1.tar.gz" hash = "sha256-F8BESXsANR3yQ3Rjm1yb4fgVSxuNt6WhHkB6StNydPU=" @@ -10406,6 +12800,34 @@ license = [ ] homepage = "https://github.com/yangwenbo99/typst-lasaveur" +[laskutys."1.1.0"] +url = "https://packages.typst.org/preview/laskutys-1.1.0.tar.gz" +hash = "sha256-Zm+E+QMAGJMMXZfJQT5WzcoK5ZH5dlhJZHbm8NxHkrs=" +typstDeps = [ + "linguify_0_4_2", + "oxifmt_1_0_0", + "tiaoma_0_3_0", +] +description = "Make invoices satisfying Finnish standards (VH/3634/00.01.00/2023) and with bank barcode and/or EPC QR code" +license = [ + "MIT-0", +] +homepage = "https://github.com/TheJiahao/laskutys" + +[laskutys."1.0.0"] +url = "https://packages.typst.org/preview/laskutys-1.0.0.tar.gz" +hash = "sha256-L2Gvc+S7m2LQdEb6VztrXPj/DulV0aRARUdKtYhYaTw=" +typstDeps = [ + "linguify_0_4_2", + "oxifmt_1_0_0", + "tiaoma_0_3_0", +] +description = "Make invoices satisfying Finnish standards (VH/3634/00.01.00/2023) and with bank barcode and/or EPC QR code" +license = [ + "MIT-0", +] +homepage = "https://github.com/TheJiahao/laskutys" + [latedef."0.1.0"] url = "https://packages.typst.org/preview/latedef-0.1.0.tar.gz" hash = "sha256-L1+lMDnYxw6IE6Gu3IOe7AmjUG0eAW/2fQ3MOJIFfo0=" @@ -10416,6 +12838,93 @@ license = [ ] homepage = "https://codeberg.org/T0mstone/typst-latedef" +[latex-lookalike."0.1.4"] +url = "https://packages.typst.org/preview/latex-lookalike-0.1.4.tar.gz" +hash = "sha256-jqdXb7WgAosPzNvbgJGm6cJPN66ogMbV5aRiIhRES28=" +typstDeps = [] +description = "LaTeX style for Typst" +license = [ + "0BSD", +] +homepage = "https://github.com/mewmew/latex-lookalike" + +[latex-lookalike."0.1.3"] +url = "https://packages.typst.org/preview/latex-lookalike-0.1.3.tar.gz" +hash = "sha256-HAiQuES9J57OxYuOtx7Bjj7vJWtCmzBMJQhsu0rh3Zo=" +typstDeps = [] +description = "LaTeX style for Typst" +license = [ + "0BSD", +] +homepage = "https://github.com/mewmew/latex-lookalike" + +[latex-lookalike."0.1.2"] +url = "https://packages.typst.org/preview/latex-lookalike-0.1.2.tar.gz" +hash = "sha256-XXzY7J1HhFffj+kXFerV5ft57vXmtGpxEF9TFDE3EtY=" +typstDeps = [] +description = "LaTeX style for Typst" +license = [ + "0BSD", +] +homepage = "https://github.com/mewmew/latex-lookalike" + +[latex-lookalike."0.1.1"] +url = "https://packages.typst.org/preview/latex-lookalike-0.1.1.tar.gz" +hash = "sha256-+DmDx5A9Jm5GmMM96e3Zt84ey4YYLx9Tez78M2YBELM=" +typstDeps = [] +description = "LaTeX style for Typst" +license = [ + "0BSD", +] +homepage = "https://github.com/mewmew/latex-lookalike" + +[latex-lookalike."0.1.0"] +url = "https://packages.typst.org/preview/latex-lookalike-0.1.0.tar.gz" +hash = "sha256-CbauKjElRLgWBt+pYRSbuKqEB6uDZqaP9qltrZaO+Dk=" +typstDeps = [] +description = "LaTeX style for Typst" +license = [ + "0BSD", +] +homepage = "https://github.com/mewmew/latex-lookalike" + +[latexlike-report."1.0.0"] +url = "https://packages.typst.org/preview/latexlike-report-1.0.0.tar.gz" +hash = "sha256-RGtMby3IkWGRbOI70BtfGyg93ntsOnC772t4NVyhDBM=" +typstDeps = [ + "chic-hdr_0_5_0", + "equate_0_3_2", +] +description = "A simple report for Typst with LaTeX style, fully customizable" +license = [ + "MIT", +] +homepage = "https://github.com/jorgexbeta/latexlike-report.git" + +[lavandula."0.1.1"] +url = "https://packages.typst.org/preview/lavandula-0.1.1.tar.gz" +hash = "sha256-AgN8aUYZNgReiUX1XJMrzzWGsSoE7wMMnJdDlZVBUS4=" +typstDeps = [ + "fontawesome_0_6_0", +] +description = "A modern, clean and customizable resume template" +license = [ + "MIT", +] +homepage = "https://github.com/face0xff/lavandula" + +[lavandula."0.1.0"] +url = "https://packages.typst.org/preview/lavandula-0.1.0.tar.gz" +hash = "sha256-Gc2DfwKzMA9unlIeMFGdEgHUKbREqVPl+iBghLCYeWs=" +typstDeps = [ + "fontawesome_0_6_0", +] +description = "A modern, clean and customizable resume template" +license = [ + "MIT", +] +homepage = "https://github.com/face0xff/lavandula" + [layout-ltd."0.1.0"] url = "https://packages.typst.org/preview/layout-ltd-0.1.0.tar.gz" hash = "sha256-opKfAj/Ax3WWsjqUE4li6EVESgY0I3bSGjnpk4MvRqU=" @@ -10586,6 +13095,16 @@ license = [ ] homepage = "https://github.com/LordBlacky/leonux" +[lets-go."0.1.0"] +url = "https://packages.typst.org/preview/lets-go-0.1.0.tar.gz" +hash = "sha256-j2s/szII6HdC5v2fU/GLIetLkm2+ftuT6EIP3Vy0u+Y=" +typstDeps = [] +description = "Draw go game boards easily, with some customization features" +license = [ + "MIT", +] +homepage = "https://github.com/nmielec/lets-go" + [letter-pro."3.0.0"] url = "https://packages.typst.org/preview/letter-pro-3.0.0.tar.gz" hash = "sha256-Ow22loLjb/wiiB3iSmdZirbtfDR2XIveWgFcnWctBtI=" @@ -10606,6 +13125,36 @@ license = [ ] homepage = "https://github.com/Sematre/typst-letter-pro" +[letterloom."1.0.0"] +url = "https://packages.typst.org/preview/letterloom-1.0.0.tar.gz" +hash = "sha256-f15LQT7JF0NxpkNHACNrbLO1fJtyIHVYxxFETEkvEVk=" +typstDeps = [] +description = "The letterloom package is a user-friendly and customizable template designed to streamline the creation of professional-looking letters" +license = [ + "Unlicense", +] +homepage = "https://github.com/nandac/letterloom" + +[letterloom."0.1.0"] +url = "https://packages.typst.org/preview/letterloom-0.1.0.tar.gz" +hash = "sha256-qum5YHiLRKG+lVUIiqAY82Eo7+07g9dErf6qEQRoob8=" +typstDeps = [] +description = "The letterloom package is a user-friendly, highly customizable template for creating professional letters with ease" +license = [ + "Unlicense", +] +homepage = "https://github.com/nandac/letterloom" + +[libra."0.1.0"] +url = "https://packages.typst.org/preview/libra-0.1.0.tar.gz" +hash = "sha256-gr7l1lW843DQsgbnD7NeqZ28PxlgHVl3Bv9aZGrAMkQ=" +typstDeps = [] +description = "Balance your lines" +license = [ + "GPL-3.0-or-later", +] +homepage = "https://github.com/mentonin/libra" + [light-cv."0.2.0"] url = "https://packages.typst.org/preview/light-cv-0.2.0.tar.gz" hash = "sha256-GYYEH6YzC+yWoItv6om5HruDMqe1DbhiCYQ65bV6VDc=" @@ -10655,6 +13204,34 @@ license = [ ] homepage = "https://github.com/sebastos1/light-report-uia" +[lilaq."0.5.0"] +url = "https://packages.typst.org/preview/lilaq-0.5.0.tar.gz" +hash = "sha256-C57XfnLsvVMqzkbyXN73Wa1vnuW1n3jbmt8PSstv1WA=" +typstDeps = [ + "elembic_1_1_1", + "tiptoe_0_3_1", + "zero_0_5_0", +] +description = "Scientific data visualization" +license = [ + "MIT", +] +homepage = "https://github.com/lilaq-project/lilaq" + +[lilaq."0.4.0"] +url = "https://packages.typst.org/preview/lilaq-0.4.0.tar.gz" +hash = "sha256-TIw0Ur2sFQgjGNby6ISK3ltlpPIQ3N+UbqciSMlS0o0=" +typstDeps = [ + "elembic_1_1_0", + "tiptoe_0_3_1", + "zero_0_4_0", +] +description = "Scientific data visualization" +license = [ + "MIT", +] +homepage = "https://github.com/lilaq-project/lilaq" + [lilaq."0.3.0"] url = "https://packages.typst.org/preview/lilaq-0.3.0.tar.gz" hash = "sha256-YdAsrkapRmN/U+CE5nEoxPlwjivgTCdWH8Lm9FW75xw=" @@ -10776,6 +13353,42 @@ license = [ ] homepage = "https://github.com/jomaway/typst-linguify" +[linkify."0.1.1"] +url = "https://packages.typst.org/preview/linkify-0.1.1.tar.gz" +hash = "sha256-UZ9ewiKMMs0hT3vR4NQ4SMJPlQzRwZ42iyHZDDradtU=" +typstDeps = [ + "based_0_2_0", + "percencode_0_1_0", +] +description = "Generate URLs and nicely formatted links to web media contents" +license = [ + "MIT", +] +homepage = "https://github.com/vanleefxp/linkify_typ" + +[linkify."0.1.0"] +url = "https://packages.typst.org/preview/linkify-0.1.0.tar.gz" +hash = "sha256-aCWY9t4msIBvFrYqK6kG/dR9IngrE2mtKTtEiBHj5zo=" +typstDeps = [ + "based_0_2_0", + "percencode_0_1_0", +] +description = "Generate URLs and nicely formatted links to web media contents" +license = [ + "MIT", +] + +[linkst."0.2.1"] +url = "https://packages.typst.org/preview/linkst-0.2.1.tar.gz" +hash = "sha256-52Sc5VFGry2OSR2Wuxk+wuPWDaGLlzJuS8hXsP8DXzc=" +typstDeps = [ + "cetz_0_4_0", +] +description = "A knot drawing package for knot theory" +license = [ + "MIT-0", +] + [linkst."0.1.0"] url = "https://packages.typst.org/preview/linkst-0.1.0.tar.gz" hash = "sha256-LVklnr/CcjK5TrZUlyWN8ovLsu33Oqn9RFhsn8X+DsE=" @@ -10787,6 +13400,25 @@ license = [ "MIT-0", ] +[linphon."0.1.0"] +url = "https://packages.typst.org/preview/linphon-0.1.0.tar.gz" +hash = "sha256-q6cIbvbh9jEEfKOfcd6bCZ7JEr01MKMH2AbT8G98X4k=" +typstDeps = [] +description = "Set phonological feature matrices, linear rewrite rules, and more" +license = [ + "MIT", +] +homepage = "https://github.com/thatfloflo/typst-linphon" + +[litfass."0.1.0"] +url = "https://packages.typst.org/preview/litfass-0.1.0.tar.gz" +hash = "sha256-Tzul9IqpXlDeMJ/z5WY+KOnu3hx1Nej+m2vRXZK952Y=" +typstDeps = [] +description = "A typst package to design content like posters based on a tiling layout" +license = [ + "MIT", +] + [lovelace."0.3.0"] url = "https://packages.typst.org/preview/lovelace-0.3.0.tar.gz" hash = "sha256-thSCDGxcTfykwUYjUsxBC7Xnei6dXiGybA8wyUoqKjo=" @@ -10843,6 +13475,16 @@ license = [ ] homepage = "https://github.com/daskol/typst-templates" +[lumen."0.1.2"] +url = "https://packages.typst.org/preview/lumen-0.1.2.tar.gz" +hash = "sha256-25ZXn7Fg1T7vav7oekne13JVyIJNwtBdram9OqRh3Sk=" +typstDeps = [] +description = "unofficial template of the Université libre de Bruxelles thesis front cover" +license = [ + "MIT-0", +] +homepage = "https://codeberg.org/mononym/typst-ulb-phd-cover" + [lumen."0.1.1"] url = "https://packages.typst.org/preview/lumen-0.1.1.tar.gz" hash = "sha256-mJv6jC/A4Ncnm+0BKwQuZ53e+EhuOrbRLg/lH73rWRw=" @@ -10863,6 +13505,16 @@ license = [ ] homepage = "https://codeberg.org/mononym/typst-ulb-phd-cover" +[lure."0.1.0"] +url = "https://packages.typst.org/preview/lure-0.1.0.tar.gz" +hash = "sha256-AhJHPrxXiptVvI2mvIbwyzQg1X10cmmCmGxsrriIrPI=" +typstDeps = [] +description = "Parse and normalize URLs, based on the WHATWG URL Standard, powered by rust-url and WebAssembly" +license = [ + "MIT", +] +homepage = "https://github.com/YDX-2147483647/typst-lure" + [lyceum."0.1.0"] url = "https://packages.typst.org/preview/lyceum-0.1.0.tar.gz" hash = "sha256-R9YJpG9Qh3Wfrad9kSZKLOJXMScffGX7adVigIb0mKs=" @@ -10872,6 +13524,18 @@ license = [ "MIT", ] +[m-jaxon."0.1.2"] +url = "https://packages.typst.org/preview/m-jaxon-0.1.2.tar.gz" +hash = "sha256-xeQSdBubE8ZYeQTslv3sj7/1o0LTkgyddBeZPtc1WCM=" +typstDeps = [ + "jogs_0_2_4", +] +description = "Render LaTeX equation in typst using MathJax" +license = [ + "MIT", +] +homepage = "https://github.com/Enter-tainer/m-jaxon" + [m-jaxon."0.1.1"] url = "https://packages.typst.org/preview/m-jaxon-0.1.1.tar.gz" hash = "sha256-ye2dPp64nLk+FOupkPEOwdN8u2x7C5lDsfx5NfmNtTc=" @@ -10930,6 +13594,18 @@ license = [ ] homepage = "https://codeberg.org/Andrew15-5/magnifying-glass" +[mahou-cv."0.1.0"] +url = "https://packages.typst.org/preview/mahou-cv-0.1.0.tar.gz" +hash = "sha256-kPyD4KWb2dMlFRnHKAFVsX5znpj6pEjNqnJxSHMHJNg=" +typstDeps = [ + "valkyrie_0_2_2", +] +description = "A clean and composable CV template" +license = [ + "MIT", +] +homepage = "https://github.com/NanamiNakano/typst-mahou-cv" + [mannot."0.3.0"] url = "https://packages.typst.org/preview/mannot-0.3.0.tar.gz" hash = "sha256-akdMPerbH8WpVQ1OACR9HOceZunKGTkj6jfh7s6ChFA=" @@ -11145,6 +13821,16 @@ license = [ ] homepage = "https://github.com/EpicEricEE/typst-marge" +[marginalia."0.2.3"] +url = "https://packages.typst.org/preview/marginalia-0.2.3.tar.gz" +hash = "sha256-MlRBH+5enH8cb+E2+8X0X4I9wuB8mgbH0k5SONdUN08=" +typstDeps = [] +description = "Configurable margin-notes and matching wide blocks" +license = [ + "Unlicense", +] +homepage = "https://github.com/nleanba/typst-marginalia" + [marginalia."0.2.2"] url = "https://packages.typst.org/preview/marginalia-0.2.2.tar.gz" hash = "sha256-WVRgVUXK3VK/vurr+8w0P0zf9kYoQ6PkLSI0QoLetWc=" @@ -11225,6 +13911,16 @@ license = [ ] homepage = "https://github.com/nleanba/typst-marginalia" +[marina-uol-thesis."1.0.0"] +url = "https://packages.typst.org/preview/marina-uol-thesis-1.0.0.tar.gz" +hash = "sha256-KgM63o/1npLcO3d62T534BXd3B7bCSyENEfCgvsaYXk=" +typstDeps = [] +description = "Unofficial thesis template for the University of Lincoln" +license = [ + "MIT", +] +homepage = "https://github.com/krisjdev/university-of-lincoln-thesis" + [markly."0.3.0"] url = "https://packages.typst.org/preview/markly-0.3.0.tar.gz" hash = "sha256-tOTkwsozXxUaOPFWUhiMjltd6yNjMaJskdb869AJjdU=" @@ -11269,6 +13965,34 @@ license = [ ] homepage = "https://github.com/OptimisticPeach/matset" +[may."0.1.1"] +url = "https://packages.typst.org/preview/may-0.1.1.tar.gz" +hash = "sha256-qXCnwn4gk5x3rsmTVdBitdU40dSi3/NC5IOc4w96SO8=" +typstDeps = [ + "physica_0_9_5", + "touying_0_6_1", + "wrap-it_0_1_1", +] +description = "A simple and elegant document template for multiple daily tasks" +license = [ + "MIT", +] +homepage = "https://github.com/Carlos-Mero/may" + +[may."0.1.0"] +url = "https://packages.typst.org/preview/may-0.1.0.tar.gz" +hash = "sha256-ABrAb/n3PYZy0gmm2z6unrVgxwDbKayywRjKmtCCQs0=" +typstDeps = [ + "physica_0_9_5", + "touying_0_6_1", + "wrap-it_0_1_1", +] +description = "A simple and elegant document template for multiple daily tasks" +license = [ + "MIT", +] +homepage = "https://github.com/Carlos-Mero/may" + [may."0.0.1"] url = "https://packages.typst.org/preview/may-0.0.1.tar.gz" hash = "sha256-wntZIT9ENZKZx4Vs50b6LrH6DGI7ZGQEpoQiF/P+XFk=" @@ -11306,6 +14030,46 @@ license = [ ] homepage = "https://github.com/sxdl/MCM-Typst-template" +[meander."0.2.2"] +url = "https://packages.typst.org/preview/meander-0.2.2.tar.gz" +hash = "sha256-IPJ9tcI5jF3WO6a8XKAUquipvmlAuob/GxkxzIoN0D8=" +typstDeps = [] +description = "Page layout engine with image wrap-around and text threading" +license = [ + "MIT", +] +homepage = "https://github.com/Vanille-N/meander.typ" + +[meander."0.2.1"] +url = "https://packages.typst.org/preview/meander-0.2.1.tar.gz" +hash = "sha256-rDPwBSOBxhbaaX7FmcyBSa7TjDSvob2x+VIUQVIc/uM=" +typstDeps = [] +description = "Page layout engine with image wrap-around and text threading" +license = [ + "MIT", +] +homepage = "https://github.com/Vanille-N/meander.typ" + +[meander."0.2.0"] +url = "https://packages.typst.org/preview/meander-0.2.0.tar.gz" +hash = "sha256-54ZKSim/kYPbn4/cs1IfCdwrC6+7g9aUuqo9uzTQJww=" +typstDeps = [] +description = "Page layout engine with image wrap-around and text threading" +license = [ + "MIT", +] +homepage = "https://github.com/Vanille-N/meander.typ" + +[meander."0.1.0"] +url = "https://packages.typst.org/preview/meander-0.1.0.tar.gz" +hash = "sha256-JXnvPC1K1LtYX4IqaY1qUCVzn0HkW6Feq331ib+7z5w=" +typstDeps = [] +description = "Page layout engine with image wrap-around and text threading" +license = [ + "MIT", +] +homepage = "https://github.com/Vanille-N/meander.typ" + [mechanical-system-cetz-34j."0.1.0"] url = "https://packages.typst.org/preview/mechanical-system-cetz-34j-0.1.0.tar.gz" hash = "sha256-PPoQ0Gy6Xh19JPPnL2uyGhVomZbOHOOUCFJDp/U/cTc=" @@ -11380,6 +14144,26 @@ license = [ ] homepage = "https://github.com/CL4R3T/meppp" +[mercator."0.1.1"] +url = "https://packages.typst.org/preview/mercator-0.1.1.tar.gz" +hash = "sha256-AL6pJCWLG5M2JnGy+mFIf03Xg33gWHj8Xji0xQd7AMI=" +typstDeps = [] +description = "🌎 Render GeoJSON in typst" +license = [ + "MIT", +] +homepage = "https://github.com/bernsteining/mercator/" + +[mercator."0.1.0"] +url = "https://packages.typst.org/preview/mercator-0.1.0.tar.gz" +hash = "sha256-PLhFjXTu7yky/a3RCsu2a/Kr/Jhp7cLthc+A9iAVNjU=" +typstDeps = [] +description = "Render GeoJSON in typst" +license = [ + "MIT", +] +homepage = "https://github.com/bernsteining/mercator/" + [messeji."0.3.0"] url = "https://packages.typst.org/preview/messeji-0.3.0.tar.gz" hash = "sha256-vqIQjUdm4KvrDNTr5SnWqzVwSkG/dRVvQy/0W6o0P/g=" @@ -11568,6 +14352,38 @@ license = [ ] homepage = "https://github.com/mayconfmelo/min-article" +[min-book."1.2.1"] +url = "https://packages.typst.org/preview/min-book-1.2.1.tar.gz" +hash = "sha256-5iCwJwBZmSfo6MbdHfnKd+lUrjyPWtzzBq8J+Sklcto=" +typstDeps = [] +description = "Simple and complete books without introducing new syntax" +license = [ + "MIT-0", +] +homepage = "https://github.com/mayconfmelo/min-book" + +[min-book."1.2.0"] +url = "https://packages.typst.org/preview/min-book-1.2.0.tar.gz" +hash = "sha256-UZyqmjP69EqrUX1QkVjlrh1KGMRGkjxzzg1ggopMi38=" +typstDeps = [] +description = "Simple and complete books without introducing new syntax" +license = [ + "MIT-0", +] +homepage = "https://github.com/mayconfmelo/min-book" + +[min-book."1.1.0"] +url = "https://packages.typst.org/preview/min-book-1.1.0.tar.gz" +hash = "sha256-r64D8Ie2A0b+swwRHmlD6RVSj8heW9Qk774e6NLML88=" +typstDeps = [ + "numbly_0_1_0", +] +description = "Simple and complete books without introducing new syntax" +license = [ + "MIT-0", +] +homepage = "https://github.com/mayconfmelo/min-book" + [min-book."1.0.0"] url = "https://packages.typst.org/preview/min-book-1.0.0.tar.gz" hash = "sha256-mw88Ui43I5pufLM8Uwvtjsd8J9kgwnCubg1iP3AFBCo=" @@ -11604,6 +14420,30 @@ license = [ ] homepage = "https://github.com/mayconfmelo/min-book" +[min-manual."0.2.1"] +url = "https://packages.typst.org/preview/min-manual-0.2.1.tar.gz" +hash = "sha256-vvJO5bd+LY7RCmkt0La008wKxNbQABewEs1zAepC6/c=" +typstDeps = [ + "pkg-name_0_4_2", +] +description = "Modern but sober manuals inspired by the manpages of old" +license = [ + "MIT-0", +] +homepage = "https://github.com/mayconfmelo/min-manual" + +[min-manual."0.2.0"] +url = "https://packages.typst.org/preview/min-manual-0.2.0.tar.gz" +hash = "sha256-aT5UEweCGWAGCWEtojE1KKALoEGWdvAivgAgixFa128=" +typstDeps = [ + "pkg-name_0_4_2", +] +description = "Modern but sober manuals inspired by the manpages of old" +license = [ + "MIT-0", +] +homepage = "https://github.com/mayconfmelo/min-manual" + [min-manual."0.1.0"] url = "https://packages.typst.org/preview/min-manual-0.1.0.tar.gz" hash = "sha256-jqwfu2iOgnoHPO3zvw8b/qo4Zq+dhoWcqFl0ljLoQg8=" @@ -11670,6 +14510,32 @@ license = [ ] homepage = "https://github.com/Dav1com/minerva-report-fcfm" +[minerva-thesis."0.2.0"] +url = "https://packages.typst.org/preview/minerva-thesis-0.2.0.tar.gz" +hash = "sha256-NgQzAXTwqHrYVe+h3q+MZbrKVBN44wjyRQ05QlDXcKU=" +typstDeps = [ + "abbr_0_2_3", + "alexandria_0_2_1", + "subpar_0_2_2", +] +description = "Doctoral and master's theses with both Ghent University specific and generic features" +license = [ + "MIT", +] +homepage = "https://github.com/lvandevelde/typst-minerva-thesis" + +[minerva-thesis."0.1.3"] +url = "https://packages.typst.org/preview/minerva-thesis-0.1.3.tar.gz" +hash = "sha256-GPwurX32A3rfFCLQ3O/TnzumCxBHwWhht5AWwdSJWnM=" +typstDeps = [ + "subpar_0_2_2", +] +description = "Theses following guidelines at Ghent University and with some additional functions and features" +license = [ + "MIT", +] +homepage = "https://github.com/lvandevelde/Typst-UGent-thesis" + [minideck."0.2.1"] url = "https://packages.typst.org/preview/minideck-0.2.1.tar.gz" hash = "sha256-UuH/zXlYpibGZaQgpiifTmmA/8swJ+OUAlgWkBghsYk=" @@ -11693,6 +14559,16 @@ license = [ "MIT", ] +[minimal-cv."0.2.0"] +url = "https://packages.typst.org/preview/minimal-cv-0.2.0.tar.gz" +hash = "sha256-SGHp8rtk125grQBOMH8LvS+PSOB8+SzKS4XE9QfQFfo=" +typstDeps = [] +description = "A clean and customizable CV template" +license = [ + "MIT-0", +] +homepage = "https://github.com/lelimacon/typst-minimal-cv" + [minimal-cv."0.1.0"] url = "https://packages.typst.org/preview/minimal-cv-0.1.0.tar.gz" hash = "sha256-YQrVb43sOKaG3kgNma2GVYT+xA5pmPlIfbrkAu/wtSA=" @@ -11703,6 +14579,28 @@ license = [ ] homepage = "https://github.com/lelimacon/typst-minimal-cv" +[minimal-note."0.10.0"] +url = "https://packages.typst.org/preview/minimal-note-0.10.0.tar.gz" +hash = "sha256-bipnk5hl+qg3ejVq2Qxfo8iuRRApjZxIVTK/28rBmkY=" +typstDeps = [ + "algorithmic_1_0_0", +] +description = "Notes with colorful minimalism" +license = [ + "MIT-0", +] +homepage = "https://github.com/Michel-Liao/minimal-note" + +[minimal-presentation."0.7.0"] +url = "https://packages.typst.org/preview/minimal-presentation-0.7.0.tar.gz" +hash = "sha256-Vory9li+8aMwQ8ceEmqTar8I9QqKXguu1LH2Lugf1/Y=" +typstDeps = [] +description = "A modern minimalistic presentation template ready to use" +license = [ + "MIT-0", +] +homepage = "https://github.com/flavio20002/typst-presentation-minimal-template" + [minimal-presentation."0.6.0"] url = "https://packages.typst.org/preview/minimal-presentation-0.6.0.tar.gz" hash = "sha256-OqITcVSkhql4T3oVctyE36f5Tm3eZ6JtrVYAYjvRl7M=" @@ -11763,6 +14661,58 @@ license = [ ] homepage = "https://github.com/flavio20002/typst-presentation-minimal-template" +[minimal-thesis-luebeck."0.8.0"] +url = "https://packages.typst.org/preview/minimal-thesis-luebeck-0.8.0.tar.gz" +hash = "sha256-OcV2RAzGpR2UNFeU3W7HM3n6M+t+viubK4r44NszJpk=" +typstDeps = [ + "abbr_0_2_3", + "hydra_0_6_2", +] +description = "A minimalistic template for writing a thesis" +license = [ + "MIT", +] +homepage = "https://github.com/fhemstra/minimal-thesis-luebeck" + +[minimal-thesis-luebeck."0.7.0"] +url = "https://packages.typst.org/preview/minimal-thesis-luebeck-0.7.0.tar.gz" +hash = "sha256-7QX4v57u/KQmkFO2BOI5xVnH18Noj/JUsq/VFREKYpc=" +typstDeps = [ + "abbr_0_2_3", + "hydra_0_6_1", +] +description = "A minimalistic template for writing a thesis" +license = [ + "MIT", +] +homepage = "https://github.com/fhemstra/minimal-thesis-luebeck" + +[minimal-thesis-luebeck."0.6.0"] +url = "https://packages.typst.org/preview/minimal-thesis-luebeck-0.6.0.tar.gz" +hash = "sha256-aDWKaMSpInSrpoNh09RQqjW8KJj5Uv7VCqayX7dJ618=" +typstDeps = [ + "abbr_0_2_3", + "hydra_0_6_1", +] +description = "A minimalistic template for writing a thesis" +license = [ + "MIT", +] +homepage = "https://github.com/fhemstra/minimal-thesis-luebeck" + +[minimal-thesis-luebeck."0.5.0"] +url = "https://packages.typst.org/preview/minimal-thesis-luebeck-0.5.0.tar.gz" +hash = "sha256-t8DVWepVFjOt1M8LcDbZGYizjrCunFNrCIbwJirM9YQ=" +typstDeps = [ + "abbr_0_2_3", + "hydra_0_6_1", +] +description = "A minimalistic template for writing a thesis" +license = [ + "MIT", +] +homepage = "https://github.com/fhemstra/minimal-thesis-luebeck" + [minimal-thesis-luebeck."0.4.0"] url = "https://packages.typst.org/preview/minimal-thesis-luebeck-0.4.0.tar.gz" hash = "sha256-p/r2Jf0T+64MEtL6oMSXo1lfeQgsGQe9iMOXYYtgRss=" @@ -11810,6 +14760,26 @@ license = [ "MIT", ] +[minimal-unilim-thesis."0.1.1"] +url = "https://packages.typst.org/preview/minimal-unilim-thesis-0.1.1.tar.gz" +hash = "sha256-6iEN4JnsL6p08knbDbpaFh9QionD3A2nX/A7hUuax10=" +typstDeps = [] +description = "Minimal example for a thesis at University of Limoges" +license = [ + "MIT", +] +homepage = "https://github.com/kawiluca/packages-unilim-thesis" + +[minimal-unilim-thesis."0.1.0"] +url = "https://packages.typst.org/preview/minimal-unilim-thesis-0.1.0.tar.gz" +hash = "sha256-70B6Z/FT8RXyCaGe6bNdcyTOTjnMKoIxsazL3aKH8pg=" +typstDeps = [] +description = "Minimal example for a thesis at University of Limoges" +license = [ + "MIT", +] +homepage = "https://github.com/kawiluca/template-typst-unilim" + [minimalbc."0.0.1"] url = "https://packages.typst.org/preview/minimalbc-0.0.1.tar.gz" hash = "sha256-JN6jgcnII6jPACdceOqtpnb9kx43fkyLK7Z21PmwvPg=" @@ -11966,6 +14936,19 @@ license = [ ] homepage = "https://github.com/OrangeX4/mitex" +[modern-acad-cv."0.1.4"] +url = "https://packages.typst.org/preview/modern-acad-cv-0.1.4.tar.gz" +hash = "sha256-FPgeJ02NPf8LJkluLdlus2oQCjQHtuqaKJB3ufjiOlo=" +typstDeps = [ + "fontawesome_0_5_0", + "use-academicons_0_1_0", +] +description = "A CV template for academics based on moderncv LaTeX package" +license = [ + "MIT", +] +homepage = "https://github.com/philkleer/typst-modern-acad-cv" + [modern-acad-cv."0.1.3"] url = "https://packages.typst.org/preview/modern-acad-cv-0.1.3.tar.gz" hash = "sha256-md1GRHWOxDNNy4iavFGqSmgpxMKJR8KGsT0pR2XAPso=" @@ -12071,6 +15054,20 @@ license = [ ] homepage = "https://github.com/mosrat/modern-bnu-thesis" +[modern-buaa-thesis."0.1.0"] +url = "https://packages.typst.org/preview/modern-buaa-thesis-0.1.0.tar.gz" +hash = "sha256-++OOFppMGyurhhbXBMtrIKVofN+ldhqcdYH3m+8g0aA=" +typstDeps = [ + "cuti_0_3_0", + "lovelace_0_3_0", + "subpar_0_2_2", +] +description = "A modern thesis template for BUAA" +license = [ + "MIT", +] +homepage = "https://github.com/wangjq4214/buaa-thesis" + [modern-cqut-thesis."0.1.0"] url = "https://packages.typst.org/preview/modern-cqut-thesis-0.1.0.tar.gz" hash = "sha256-75yWFP5K6VmsPKff/BvzKHK15Bch6CwRXEHsTIaZJYQ=" @@ -12239,6 +15236,19 @@ license = [ ] homepage = "https://github.com/Rsweater/cug-thesis-typst" +[modern-cv."0.9.0"] +url = "https://packages.typst.org/preview/modern-cv-0.9.0.tar.gz" +hash = "sha256-WDxVubQ1UYDUnjMgpYTwbQQ+0QoP7Ya9ZfyKPBfkWtI=" +typstDeps = [ + "fontawesome_0_6_0", + "linguify_0_4_2", +] +description = "A modern resume template based on the Awesome-CV Latex template" +license = [ + "MIT", +] +homepage = "https://github.com/DeveloperPaul123/modern-cv" + [modern-cv."0.8.0"] url = "https://packages.typst.org/preview/modern-cv-0.8.0.tar.gz" hash = "sha256-p8ZkhcYvO3vdidAYRYobapreiZSqE4Pihd0eEeLIQ24=" @@ -12354,6 +15364,26 @@ license = [ ] homepage = "https://github.com/DeveloperPaul123/modern-cv" +[modern-ecnu-thesis."0.3.0"] +url = "https://packages.typst.org/preview/modern-ecnu-thesis-0.3.0.tar.gz" +hash = "sha256-26L1M0A2j6+DNZq0/R+kjO8xDeI8oKGvvZpco0vl2yw=" +typstDeps = [ + "cuti_0_2_1", + "hydra_0_5_2", + "i-figured_0_1_0", + "i-figured_0_2_4", + "kouhu_0_1_0", + "outrageous_0_3_0", + "pinit_0_1_3", + "tablex_0_0_8", + "wordometer_0_1_4", +] +description = "华东师范大学本科 / 研究生学位论文模板。Modern East China Normal University Thesis Template" +license = [ + "MIT", +] +homepage = "https://github.com/jtchen2k/modern-ecnu-thesis" + [modern-ecnu-thesis."0.2.0"] url = "https://packages.typst.org/preview/modern-ecnu-thesis-0.2.0.tar.gz" hash = "sha256-d9JuuJUbBPELbgJ0KHVX+hcYzap41sd8CD023oPu1Jk=" @@ -12495,6 +15525,16 @@ license = [ ] homepage = "https://github.com/MrToWy/hsh-thesis" +[modern-iu-thesis."0.1.2"] +url = "https://packages.typst.org/preview/modern-iu-thesis-0.1.2.tar.gz" +hash = "sha256-D7f+z1GZAomGWR+DhcwXEC0vkj03GpCMmQoWuCdq6Cc=" +typstDeps = [] +description = "Modern Typst thesis template for Indiana University" +license = [ + "MIT", +] +homepage = "https://github.com/bojohnson5/modern-iu-thesis" + [modern-iu-thesis."0.1.1"] url = "https://packages.typst.org/preview/modern-iu-thesis-0.1.1.tar.gz" hash = "sha256-2ki23KYifJMk0zCVnFTu/KlJsmo5LeOT8UoCeuecsdQ=" @@ -12515,6 +15555,28 @@ license = [ ] homepage = "https://github.com/bojohnson5/modern-iu-thesis" +[modern-nenu-thesis."0.1.0"] +url = "https://packages.typst.org/preview/modern-nenu-thesis-0.1.0.tar.gz" +hash = "sha256-VTZxh33UXcUDsglbmskbTJNEeM21tga942QtJwYQf9U=" +typstDeps = [ + "cetz_0_4_2", + "codly_1_3_0", + "codly-languages_0_1_8", + "cuti_0_3_0", + "gentle-clues_1_2_0", + "i-figured_0_2_4", + "kouhu_0_2_0", + "lovelace_0_3_0", + "numbly_0_1_0", + "tablex_0_0_9", + "tidy_0_4_3", +] +description = "A thesis template for NENU students" +license = [ + "MIT", +] +homepage = "https://github.com/virgiling/NENU-Thesis-Typst" + [modern-nju-thesis."0.4.0"] url = "https://packages.typst.org/preview/modern-nju-thesis-0.4.0.tar.gz" hash = "sha256-3F1HXZfxlLgbcTNfe37YHIW5M/EY5zGy4thnlVFBfzU=" @@ -12803,6 +15865,31 @@ license = [ ] homepage = "https://github.com/XY-cpp/typst-shu-thesis" +[modern-sjtu-thesis."0.5.0"] +url = "https://packages.typst.org/preview/modern-sjtu-thesis-0.5.0.tar.gz" +hash = "sha256-mT20e+5dQeK6uq/kkVOp/VV69cPOBFcKxgqkCyzTTuE=" +typstDeps = [ + "codly_1_3_0", + "codly-languages_0_1_8", + "cuti_0_3_0", + "equate_0_3_2", + "fletcher_0_5_8", + "i-figured_0_2_4", + "itemize_0_1_2", + "lilaq_0_4_0", + "lovelace_0_3_0", + "numbly_0_1_0", + "suiji_0_4_0", + "theorion_0_4_0", + "unify_0_7_1", + "wordometer_0_1_4", +] +description = "上海交通大学学位论文 Typst 模板。Shanghai Jiao Tong University Thesis Typst Template" +license = [ + "MIT", +] +homepage = "https://github.com/tzhtaylor/modern-sjtu-thesis" + [modern-sjtu-thesis."0.4.1"] url = "https://packages.typst.org/preview/modern-sjtu-thesis-0.4.1.tar.gz" hash = "sha256-syG66QD8d+MNFNfmvhFHDU3OhvySr/Mk/+IWOfj8F9Y=" @@ -13152,6 +16239,36 @@ license = [ "MIT", ] +[modern-ucas-thesis."0.1.0"] +url = "https://packages.typst.org/preview/modern-ucas-thesis-0.1.0.tar.gz" +hash = "sha256-poI/Jg1TBlmKqGxGeXYqF63OjOuMsZxmh6cVkw6kQSc=" +typstDeps = [ + "cuti_0_3_0", + "i-figured_0_2_4", + "pinit_0_2_2", + "tablex_0_0_9", +] +description = "Master's or doctoral thesis at the University of Chinese Academy of Sciences" +license = [ + "MIT", +] +homepage = "https://github.com/WayneXuCN/modern-ucas-thesis" + +[modern-uestc-thesis."1.0.0"] +url = "https://packages.typst.org/preview/modern-uestc-thesis-1.0.0.tar.gz" +hash = "sha256-NjOkA1jp6Y0wBYIiaJ8bW5ZnGatK9RL3v+6bs/TxgNw=" +typstDeps = [ + "i-figured_0_2_4", + "muchpdf_0_1_0", + "numbly_0_1_0", + "pointless-size_0_1_2", + "zebraw_0_5_4", +] +description = "电子科技大学硕士学位论文模板.Modern UESTC Thesis Template" +license = [ + "MIT", +] + [modern-uit-thesis."0.1.6"] url = "https://packages.typst.org/preview/modern-uit-thesis-0.1.6.tar.gz" hash = "sha256-UyFBhs7rQwHYED4sV3Tnb+vqtq3ZDADn42Tu9qF4q+c=" @@ -13294,6 +16411,20 @@ license = [ ] homepage = "https://github.com/eduardz1/unito-typst-template" +[modern-ustc-proposal."0.0.1"] +url = "https://packages.typst.org/preview/modern-ustc-proposal-0.0.1.tar.gz" +hash = "sha256-T8Ww9uol1majaqFX1maCoEyakAse5lOX74dagYyihWU=" +typstDeps = [ + "cuti_0_3_0", + "diagraph_0_3_3", + "fontawesome_0_5_0", +] +description = "template for University of Science and Technology of China proposal 中国科学技术大学开题报告模板" +license = [ + "GPL-3.0-only", +] +homepage = "https://github.com/ustctug/modern-ustc-proposal" + [modern-whs-assignment."0.2.1"] url = "https://packages.typst.org/preview/modern-whs-assignment-0.2.1.tar.gz" hash = "sha256-uP8ZDJN5kFfUW/4ZlgQGYfUe9gnxZAvVv6hcwtoZkp0=" @@ -13404,6 +16535,16 @@ license = [ ] homepage = "https://github.com/alex289/whs-typst-templates" +[modern-wku-thesis."0.1.0"] +url = "https://packages.typst.org/preview/modern-wku-thesis-0.1.0.tar.gz" +hash = "sha256-tD2YKtR2PC68wKqtPrH7J2nI0uKsHiNadcRd51cUrmk=" +typstDeps = [] +description = "A Typst template for graduate thesis at Wenzhou-Kean University Computer Science and Mathematics department" +license = [ + "MIT", +] +homepage = "https://github.com/Timmycheng/wku-thesis" + [modern-xmu-thesis."0.2.1"] url = "https://packages.typst.org/preview/modern-xmu-thesis-0.2.1.tar.gz" hash = "sha256-Vb4HmFiK9iAsCKydWL286nxT0KVkr/YJnAyRXWbI+ok=" @@ -13639,6 +16780,20 @@ license = [ ] homepage = "https://github.com/ludwig-austermann/modpattern" +[moodular."0.1.0"] +url = "https://packages.typst.org/preview/moodular-0.1.0.tar.gz" +hash = "sha256-DdYByRv7l7idU6PCXSjmfwr/yVlZYn/U8yvLIE1Q470=" +typstDeps = [ + "bullseye_0_1_0", + "fontawesome_0_6_0", + "umbra_0_1_0", +] +description = "Use Typst's HTML export to generate content for your Moodle courses" +license = [ + "GPL-3.0-or-later", +] +homepage = "https://github.com/SillyFreak/typst-moodular" + [muchpdf."0.1.1"] url = "https://packages.typst.org/preview/muchpdf-0.1.1.tar.gz" hash = "sha256-E1ixacLZmArz2m9vPXEQDnvzqon2lsfyztMUOVxeNks=" @@ -13659,6 +16814,43 @@ license = [ ] homepage = "https://github.com/frozolotl/muchpdf" +[muw-community-templates."0.1.1"] +url = "https://packages.typst.org/preview/muw-community-templates-0.1.1.tar.gz" +hash = "sha256-cXOeiTlWHM7h4IGm/2SXT0wKYnVjfLW0rqdAgFYAqpg=" +typstDeps = [ + "polylux_0_4_0", +] +description = "Library of templates in MedUni Wien CD" +license = [ + "MIT", +] +homepage = "https://github.com/felixbd/muw-templates" + +[muw-community-templates."0.1.0"] +url = "https://packages.typst.org/preview/muw-community-templates-0.1.0.tar.gz" +hash = "sha256-EhT7izsoi3DX17CTiZPk7eOdaTXAldXL/fgexEauYYw=" +typstDeps = [ + "gru_0_1_0", + "polylux_0_4_0", +] +description = "Library of templates in MedUni Wien CD" +license = [ + "MIT", +] +homepage = "https://github.com/felixbd/muw-templates" + +[muw-touying-community."0.1.0"] +url = "https://packages.typst.org/preview/muw-touying-community-0.1.0.tar.gz" +hash = "sha256-gPTg7Cl6Gf9LGrbvFRyaQL3SZgzXZIU0BR3gKST/H5c=" +typstDeps = [ + "touying_0_6_1", +] +description = "Touying theme for Medical University of Vienna" +license = [ + "MIT", +] +homepage = "https://github.com/Emberwhirl/muw-touying-community" + [name-it."0.1.2"] url = "https://packages.typst.org/preview/name-it-0.1.2.tar.gz" hash = "sha256-Pdz3NnF03i37t8k7rmS29MEf4oRW2j0eqQPipyAmw7w=" @@ -13757,6 +16949,66 @@ license = [ ] homepage = "https://github.com/Haouo/NCKU-Thesis-Typst" +[neat-cv."0.4.0"] +url = "https://packages.typst.org/preview/neat-cv-0.4.0.tar.gz" +hash = "sha256-ffJa8JESI8+gr1QMcvSm+VmHea5HI0AANDlIFTjUjvA=" +typstDeps = [ + "fontawesome_0_6_0", +] +description = "A modern and elegant CV template for Typst, inspired by Awesome CV and simple-hisptercv" +license = [ + "MIT", +] +homepage = "https://github.com/dialvarezs/neat-cv" + +[neat-cv."0.3.1"] +url = "https://packages.typst.org/preview/neat-cv-0.3.1.tar.gz" +hash = "sha256-tGLhyoIDKtY32MSOLf/Ww890FMuUfTGJIdE3YaDErZo=" +typstDeps = [ + "fontawesome_0_6_0", +] +description = "A modern and elegant CV template for Typst, inspired by Awesome CV and simple-hisptercv" +license = [ + "MIT", +] +homepage = "https://github.com/dialvarezs/neat-cv" + +[neat-cv."0.3.0"] +url = "https://packages.typst.org/preview/neat-cv-0.3.0.tar.gz" +hash = "sha256-3DuZwfHdfIaRWszMLIix7CRYUiOUeV23PSBPwd11lb8=" +typstDeps = [ + "fontawesome_0_6_0", +] +description = "A modern and elegant CV template for Typst, inspired by Awesome CV and simple-hisptercv" +license = [ + "MIT", +] +homepage = "https://github.com/dialvarezs/neat-cv" + +[neat-cv."0.2.1"] +url = "https://packages.typst.org/preview/neat-cv-0.2.1.tar.gz" +hash = "sha256-sF7ju+g2yseovHua2TrkFM+lg3sHa6eB3EK0JOw9t4A=" +typstDeps = [ + "fontawesome_0_5_0", +] +description = "A modern and elegant CV template for Typst, inspired by Awesome CV and simple-hisptercv" +license = [ + "MIT", +] +homepage = "https://github.com/dialvarezs/neat-cv" + +[neat-cv."0.2.0"] +url = "https://packages.typst.org/preview/neat-cv-0.2.0.tar.gz" +hash = "sha256-tWDkOqJYgp1gQJjlKDPZ8s55sO0B3LsFbJQUm6CI32A=" +typstDeps = [ + "fontawesome_0_5_0", +] +description = "A modern and elegant CV template for Typst, inspired by Awesome CV and simple-hisptercv" +license = [ + "MIT", +] +homepage = "https://github.com/dialvarezs/neat-cv" + [neat-cv."0.1.0"] url = "https://packages.typst.org/preview/neat-cv-0.1.0.tar.gz" hash = "sha256-dyv9Doh1uUSSzRLKOvVSZDkv0uLL4OmiJLbPpG79XvI=" @@ -13769,6 +17021,16 @@ license = [ ] homepage = "https://github.com/dialvarezs/neat-cv" +[neat-timetable."0.1.0"] +url = "https://packages.typst.org/preview/neat-timetable-0.1.0.tar.gz" +hash = "sha256-y1M3UliR0UE1INZAPoaupG9mgmhiurw9y0JeWvtt1RU=" +typstDeps = [] +description = "Easily create 2-week (numerator/denominator) class schedule" +license = [ + "AGPL-3.0-only", +] +homepage = "https://codeberg.org/Andrew15-5/neat-timetable" + [neoplot."0.0.3"] url = "https://packages.typst.org/preview/neoplot-0.0.3.tar.gz" hash = "sha256-zkXZL1Ed9oBVGiuS+pMrT94XFmAFVBIHxdOa6NePXj4=" @@ -13799,6 +17061,26 @@ license = [ ] homepage = "https://github.com/KNnut/neoplot" +[nerd-icons."0.2.0"] +url = "https://packages.typst.org/preview/nerd-icons-0.2.0.tar.gz" +hash = "sha256-ZYGZNOectAUDm/CbhwVs2UsIhNm9yAOIe8EsO6O0j+M=" +typstDeps = [] +description = "Include seemlessly nerd font icons (10 000+ icons) in your documents" +license = [ + "LGPL-3.0-or-later", +] +homepage = "https://gitlab.com/TuTiuTe/typst-nerdfont" + +[nerd-icons."0.1.0"] +url = "https://packages.typst.org/preview/nerd-icons-0.1.0.tar.gz" +hash = "sha256-aCx/GtNPX/663zlXSgichvonyaKUB1C8mYlsdTgPnlM=" +typstDeps = [] +description = "Incldue seemlessly nerd font icons (10 000+ icons) in your documents" +license = [ + "LGPL-3.0-or-later", +] +homepage = "https://gitlab.com/TuTiuTe/typst-nerdfont" + [nifty-ntnu-thesis."0.1.3"] url = "https://packages.typst.org/preview/nifty-ntnu-thesis-0.1.3.tar.gz" hash = "sha256-GU/OcgxTdR4WgoOs6Sa9cmLT0emtGyci2dkhFXSViRg=" @@ -13851,6 +17133,42 @@ license = [ ] homepage = "https://github.com/saimnaveediqbal/thesis-NTNU-typst" +[nikonova."0.1.1"] +url = "https://packages.typst.org/preview/nikonova-0.1.1.tar.gz" +hash = "sha256-Mjo8nMuiGvz3ALHdiSaSgCHMLMK1+2h0/PkpDbanlJA=" +typstDeps = [ + "mannot_0_3_0", + "showybox_2_0_4", +] +description = "For Math exercises, with a unique dark theme" +license = [ + "0BSD", +] +homepage = "https://github.com/atraphaxia/nikonova" + +[nikonova."0.1.0"] +url = "https://packages.typst.org/preview/nikonova-0.1.0.tar.gz" +hash = "sha256-N45jfPZ1/aYbAPADwi/qgWd1YXmwXmRT4NCm8/2XXdI=" +typstDeps = [ + "mannot_0_3_0", + "showybox_2_0_4", +] +description = "For Math exercises, with a unique dark theme" +license = [ + "0BSD", +] +homepage = "https://github.com/atraphaxia/nikonova" + +[nine-patch."0.1.0"] +url = "https://packages.typst.org/preview/nine-patch-0.1.0.tar.gz" +hash = "sha256-105oQ2Ba+e7XT0iL59FkH9XaeqWh7TtPA+RxecmAb3U=" +typstDeps = [] +description = "Resizable Bitmap Plugin using the Android 9-patch technique" +license = [ + "MIT", +] +homepage = "https://github.com/PentaPhi/nine-patch" + [niram-css."0.1.0"] url = "https://packages.typst.org/preview/niram-css-0.1.0.tar.gz" hash = "sha256-PHcYJreCtl76p9OOPEGQlZ1IZV650rJAOvQnONFoFc4=" @@ -14193,6 +17511,19 @@ license = [ "MIT", ] +[nup."0.1.2"] +url = "https://packages.typst.org/preview/nup-0.1.2.tar.gz" +hash = "sha256-bfZ8olL7TCD6AibsnuWVLaooRl6LJlRBqrcbm2Hpats=" +typstDeps = [ + "muchpdf_0_1_1", + "shadowed_0_2_0", +] +description = "Preview multipage documents with a defined grid layout" +license = [ + "MPL-2.0", +] +homepage = "https://github.com/baptiste/nup" + [nup."0.1.1"] url = "https://packages.typst.org/preview/nup-0.1.1.tar.gz" hash = "sha256-UEG7L4KtOcMsILjhcNDZPrzrjFMDqYLTMWQQnjLmNWM=" @@ -14219,6 +17550,36 @@ license = [ ] homepage = "https://github.com/baptiste/nup" +[nutrition-label-nam."0.2.0"] +url = "https://packages.typst.org/preview/nutrition-label-nam-0.2.0.tar.gz" +hash = "sha256-56fGm87eiQLPvoUJ2dfbVcsW4IOmoSHfgxzwz6VSGEE=" +typstDeps = [] +description = "A configurable template to generate FDA-style nutrition fact labels" +license = [ + "MIT", +] +homepage = "https://github.com/alpharesearch/packages" + +[nutrition-label-nam."0.1.0"] +url = "https://packages.typst.org/preview/nutrition-label-nam-0.1.0.tar.gz" +hash = "sha256-I0vP8WtAwC2x+bZuEVu1PO1YV6AxscLRW0S41EoJlss=" +typstDeps = [] +description = "A configurable template to generate FDA-style nutrition fact labels" +license = [ + "MIT", +] +homepage = "https://github.com/alpharesearch/packages" + +[nutshell."0.1.1"] +url = "https://packages.typst.org/preview/nutshell-0.1.1.tar.gz" +hash = "sha256-eFq4hhtXPVVx13ABg/ULZaV78Ks/9ej4GAGgixtR7HI=" +typstDeps = [] +description = "Template for resumes" +license = [ + "MPL-2.0", +] +homepage = "https://github.com/baptiste/nutshell" + [nutshell."0.1.0"] url = "https://packages.typst.org/preview/nutshell-0.1.0.tar.gz" hash = "sha256-TXCxBWkva9PL3lDAkSRj8vObQtgeWtZOxRu6gSsXos4=" @@ -14229,6 +17590,16 @@ license = [ ] homepage = "https://github.com/baptiste/nutshell" +[oasis-align."0.3.0"] +url = "https://packages.typst.org/preview/oasis-align-0.3.0.tar.gz" +hash = "sha256-pzOzbLP3sjwDkGKefcqnPFkjyDdQ6s3nQQg3j2+l8QQ=" +typstDeps = [] +description = "Cleanly place content side by side with equal heights using automatic content sizing" +license = [ + "MIT", +] +homepage = "https://github.com/jdpieck/oasis-align" + [oasis-align."0.2.0"] url = "https://packages.typst.org/preview/oasis-align-0.2.0.tar.gz" hash = "sha256-XB8YyrcSP3+jHSik+aE8JybL8Pncju/2MKW3MC85TTA=" @@ -14274,6 +17645,16 @@ license = [ ] homepage = "https://github.com/l0drex/obsidius" +[octique."0.1.1"] +url = "https://packages.typst.org/preview/octique-0.1.1.tar.gz" +hash = "sha256-dH2yqqRFc4i+kYwSef/yEl5LKt2zXQ43eG3o+aDhoQI=" +typstDeps = [] +description = "GitHub Octicons for Typst" +license = [ + "MIT", +] +homepage = "https://github.com/0x6b/typst-octique" + [octique."0.1.0"] url = "https://packages.typst.org/preview/octique-0.1.0.tar.gz" hash = "sha256-rBU06k0iuTMRfSD4s+AsgdVyhvonKzKihh1OCGqvs1w=" @@ -14305,6 +17686,41 @@ license = [ "MIT-0", ] +[oicana."0.1.0"] +url = "https://packages.typst.org/preview/oicana-0.1.0.tar.gz" +hash = "sha256-+HPH7jSoXTSvTzxgwSiLcMJ6GCDZ3nVoHSIDu0JMofY=" +typstDeps = [] +description = "PDF templating across multiple platforms" +license = [ + "MIT", +] +homepage = "https://github.com/oicana/oicana" + +[olaii-upn-qr."0.0.2"] +url = "https://packages.typst.org/preview/olaii-upn-qr-0.0.2.tar.gz" +hash = "sha256-6xahh7zRL/QFM1xsfdgnFwBEooJULJe2R8+KOg+5AXc=" +typstDeps = [ + "based_0_2_0", + "tiaoma_0_3_0", +] +description = "Univerzalni plačilni nalog UPN QR (Obrazec UPN QR" +license = [ + "MIT", +] +homepage = "https://github.com/Olaii/olaii-upn-qr-typst-template" + +[olaii-upn-qr."0.0.1"] +url = "https://packages.typst.org/preview/olaii-upn-qr-0.0.1.tar.gz" +hash = "sha256-eOUoBPbatjKVu6Z3qEsiCiqoekL6yCJVfkCgTBeWwc0=" +typstDeps = [ + "tiaoma_0_3_0", +] +description = "Univerzalni plačilni nalog UPN QR (Obrazec UPN QR" +license = [ + "MIT", +] +homepage = "https://github.com/Olaii/olaii-upn-qr-typst-template" + [one-liner."0.2.0"] url = "https://packages.typst.org/preview/one-liner-0.2.0.tar.gz" hash = "sha256-bl5orWMBgaPJl9IGU+kPBCOGdtJC2AryB3351ZoJrWw=" @@ -14415,6 +17831,22 @@ license = [ ] homepage = "https://github.com/flavio20002/typst-orange-template" +[ori."0.2.3"] +url = "https://packages.typst.org/preview/ori-0.2.3.tar.gz" +hash = "sha256-OFOrz5bKfy8ch9kStWAZJTPi2fivOJXnH52+kQJMYOE=" +typstDeps = [ + "cmarker_0_1_6", + "mitex_0_2_5", + "numbly_0_1_0", + "tablem_0_3_0", + "theorion_0_4_0", +] +description = "Simple enough but expressive template for notes, reports, and documents in Chinese and English" +license = [ + "MIT", +] +homepage = "https://github.com/OrangeX4/typst-ori" + [ori."0.2.2"] url = "https://packages.typst.org/preview/ori-0.2.2.tar.gz" hash = "sha256-2MWM9GPjEyOQXpcAzDXrsEZxNtsaAvtGCm+cVOx5j9o=" @@ -14493,6 +17925,16 @@ license = [ ] homepage = "https://github.com/TobiBeh/HS-Emden-Leer-Typst-Template" +[ourchat."0.2.0"] +url = "https://packages.typst.org/preview/ourchat-0.2.0.tar.gz" +hash = "sha256-yajMT4z06lyWNGn4DCWFy8SIAyRwYWg3nXb4cnRvvLQ=" +typstDeps = [] +description = "Forge wonderful chat messages" +license = [ + "MIT", +] +homepage = "https://github.com/QuadnucYard/ourchat-typ" + [ourchat."0.1.0"] url = "https://packages.typst.org/preview/ourchat-0.1.0.tar.gz" hash = "sha256-2fY2FGTSaUD9HDdI1A3SSD20l0nKQKUzcc99z03/deg=" @@ -14653,6 +18095,26 @@ license = [ ] homepage = "https://github.com/TJ-CSCCG/tongji-undergrad-thesis-typst.git" +[paiagram."0.1.1"] +url = "https://packages.typst.org/preview/paiagram-0.1.1.tar.gz" +hash = "sha256-IUjn4Aoy5cEz6PpSMRnggYSSQEyBMxbU0AZpkDrS5yc=" +typstDeps = [] +description = "Draw transportation timetable diagrams" +license = [ + "MIT", +] +homepage = "https://github.com/wensimehrp/paiagram" + +[para-lipics."0.1.2"] +url = "https://packages.typst.org/preview/para-lipics-0.1.2.tar.gz" +hash = "sha256-jnhebK659+ANmZTBJ3E18lVPZohCTICbK788KxtHaeI=" +typstDeps = [] +description = "Unofficial Dagstuhl LIPIcs template" +license = [ + "MIT", +] +homepage = "https://github.com/para-lipics/para-lipics/" + [parcio-slides."0.1.1"] url = "https://packages.typst.org/preview/parcio-slides-0.1.1.tar.gz" hash = "sha256-iOXl+QEOSLYkGNzbHDVckikJGSLV4z/6f+625Gmwmfg=" @@ -14763,6 +18225,18 @@ license = [ ] homepage = "https://github.com/QuadnucYard/pavemat" +[payqr-swiss."0.3.0"] +url = "https://packages.typst.org/preview/payqr-swiss-0.3.0.tar.gz" +hash = "sha256-QPwRSwW0nxGZ3ZwTv1aV6r+GVepyjqdMrdOgjLk7N24=" +typstDeps = [ + "tiaoma_0_3_0", +] +description = "A Swiss QR bill generator for Typst" +license = [ + "LGPL-3.0-only", +] +homepage = "https://github.com/philippdrebes/typst-payqr-swiss" + [payqr-swiss."0.2.0"] url = "https://packages.typst.org/preview/payqr-swiss-0.2.0.tar.gz" hash = "sha256-AnkmEdX5z32FapkNuC1oLK3oRH2E1jkZ62hFhipTji4=" @@ -14787,6 +18261,36 @@ license = [ ] homepage = "https://github.com/philippdrebes/typst-payqr-swiss" +[pc-letter."0.2.0"] +url = "https://packages.typst.org/preview/pc-letter-0.2.0.tar.gz" +hash = "sha256-d0KtOAAXGm5rTa72AkOyzwaKQmQvLGMa/XpwL5j33JI=" +typstDeps = [] +description = "A simple letter template for personal correspondence" +license = [ + "MIT", +] +homepage = "https://github.com/thatfloflo/typst-pc-letter" + +[pc-letter."0.1.0"] +url = "https://packages.typst.org/preview/pc-letter-0.1.0.tar.gz" +hash = "sha256-Y8HLuqYfjdpUaaDoL382PbdVOFo16FiZaD8mwCDS4fI=" +typstDeps = [] +description = "A simple letter template for personal correspondence" +license = [ + "MIT", +] +homepage = "https://github.com/thatfloflo/typst-pc-letter" + +[pc-letter."0.0.1"] +url = "https://packages.typst.org/preview/pc-letter-0.0.1.tar.gz" +hash = "sha256-G8DguegLzNJaVU6QkUgxJ8gNEdDhRowDkxiLlH8MBVU=" +typstDeps = [] +description = "A simple letter template for personal correspondence" +license = [ + "MIT", +] +homepage = "https://github.com/thatfloflo/typst-pc-letter" + [peace-of-posters."0.5.6"] url = "https://packages.typst.org/preview/peace-of-posters-0.5.6.tar.gz" hash = "sha256-oFZwuAptnhscrFLeJ3cjaZsIs1gbAMrxjkxKwwoMGmg=" @@ -14887,6 +18391,16 @@ license = [ ] homepage = "https://github.com/jonaspleyer/peace-of-posters" +[penpo."0.1.0"] +url = "https://packages.typst.org/preview/penpo-0.1.0.tar.gz" +hash = "sha256-vrlqER4diWEetWCGrv8nNigwfzIjVBHF8HqBDyekuQY=" +typstDeps = [] +description = "ni li ken alasa e pakala lili, li ken sitelen e lipu sina | toki pona spellchecker and typesetter" +license = [ + "MIT", +] +homepage = "https://github.com/Vanille-N/penpo.typ" + [percencode."0.1.0"] url = "https://packages.typst.org/preview/percencode-0.1.0.tar.gz" hash = "sha256-uMSxUuO2bjAWwr8SQ+8jQIA4J/F0TetNAHr/MUYeqIE=" @@ -14899,6 +18413,48 @@ license = [ ] homepage = "https://github.com/Servostar/typst-percencode" +[pergamon."0.3.0"] +url = "https://packages.typst.org/preview/pergamon-0.3.0.tar.gz" +hash = "sha256-7LHGXM4oCRPxrvibuVtsvtKXlR7TnpWydi7CjEShNpE=" +typstDeps = [ + "citegeist_0_2_0", + "nth_1_0_1", + "oxifmt_1_0_0", +] +description = "Biblatex-style reference management for Typst" +license = [ + "MIT", +] +homepage = "https://github.com/alexanderkoller/pergamon" + +[pergamon."0.2.0"] +url = "https://packages.typst.org/preview/pergamon-0.2.0.tar.gz" +hash = "sha256-E1YLBDmbgDm5KH9Wquv+sIywWNyUxrp1IftmzEe+YYM=" +typstDeps = [ + "citegeist_0_1_0", + "nth_1_0_1", + "oxifmt_1_0_0", +] +description = "Biblatex-style reference management for Typst" +license = [ + "MIT", +] +homepage = "https://github.com/alexanderkoller/pergamon" + +[pergamon."0.1.0"] +url = "https://packages.typst.org/preview/pergamon-0.1.0.tar.gz" +hash = "sha256-5IjAaxyQS3K5M7bPOcVXZyt0tC8uH1UbQY1mSOGAxOM=" +typstDeps = [ + "citegeist_0_1_0", + "nth_1_0_1", + "oxifmt_1_0_0", +] +description = "Biblatex-style reference management for Typst" +license = [ + "MIT", +] +homepage = "https://github.com/alexanderkoller/pergamon" + [pesha."0.4.0"] url = "https://packages.typst.org/preview/pesha-0.4.0.tar.gz" hash = "sha256-IsYeDU+O7e4KSTl9+nWJiyRgki3QikYJdoDhZF3kYBQ=" @@ -15089,6 +18645,18 @@ license = [ ] homepage = "https://github.com/neuralpain/pigmentpedia" +[pillar."0.3.3"] +url = "https://packages.typst.org/preview/pillar-0.3.3.tar.gz" +hash = "sha256-h4ObyYmgodOLEK5bWk7HMnwq9bzX+dWhW/8umCv7P6o=" +typstDeps = [ + "zero_0_4_0", +] +description = "Faster column specifications for tables" +license = [ + "MIT", +] +homepage = "https://github.com/Mc-Zen/pillar" + [pillar."0.3.2"] url = "https://packages.typst.org/preview/pillar-0.3.2.tar.gz" hash = "sha256-2Wriav61AfMHQhvwAauKKsR13aR+9x45FK/JTSGIFOg=" @@ -15356,6 +18924,18 @@ license = [ ] homepage = "https://github.com/Pegacraft/typst-plotting" +[plotsy-3d."0.2.1"] +url = "https://packages.typst.org/preview/plotsy-3d-0.2.1.tar.gz" +hash = "sha256-AsOA01XIfSMuSBdQNClscGsMD8Vc3LBhEWMI4uR1YC4=" +typstDeps = [ + "cetz_0_4_1", +] +description = "3D plotting for surfaces and parametric equations using CeTZ similar to pgfplots for LaTeX" +license = [ + "LGPL-3.0-or-later", +] +homepage = "https://github.com/misskacie/plotsy-3d" + [plotsy-3d."0.2.0"] url = "https://packages.typst.org/preview/plotsy-3d-0.2.0.tar.gz" hash = "sha256-msL0DxwCBbdTKp7lSfqGCcjGD0PGjIA8GIgJOJaNZO0=" @@ -15380,9 +18960,19 @@ license = [ ] homepage = "https://github.com/misskacie/plotsy-3d" +[pointless-size."0.1.2"] +url = "https://packages.typst.org/preview/pointless-size-0.1.2.tar.gz" +hash = "sha256-4ONS8ENcA0agL+32H+SlKOHdpXpbmy25TdugHaVNGCU=" +typstDeps = [] +description = "中文字号的号数制及字体度量单位 Chinese size system (hào-system) and type-related measurements units" +license = [ + "MIT", +] +homepage = "https://github.com/YDX-2147483647/typst-pointless-size" + [pointless-size."0.1.1"] url = "https://packages.typst.org/preview/pointless-size-0.1.1.tar.gz" -hash = "sha256-vf1pBfUfnEk0d15uz+2qaVI8yP3aE9C/V+ePRfZa+ls=" +hash = "sha256-zVVSbnSsTLgbIBBHOycL9lv7WHKnCYyLWKGv6xxgCos=" typstDeps = [] description = "中文字号的号数制及字体度量单位 Chinese size system (hào-system) and type-related measurements units" license = [ @@ -15400,6 +18990,19 @@ license = [ ] homepage = "https://github.com/YDX-2147483647/typst-pointless-size" +[politemplate."0.1.0"] +url = "https://packages.typst.org/preview/politemplate-0.1.0.tar.gz" +hash = "sha256-vfQsAiCVy2mDhRE/Uab7WpvDM4dNZALaSSpi/OM2oXs=" +typstDeps = [ + "hydra_0_6_1", + "tablex_0_0_9", +] +description = "Report and assignment template for Poli-USP university" +license = [ + "Unlicense", +] +homepage = "https://github.com/AlanJs26/politemplate" + [polylux."0.4.0"] url = "https://packages.typst.org/preview/polylux-0.4.0.tar.gz" hash = "sha256-bhceuU/TCLHCItOw0EPWUIm/fraa4YzVZxbgvIlqYtk=" @@ -15440,6 +19043,30 @@ license = [ ] homepage = "https://github.com/dei-layborer/polytonoi" +[porygon."0.1.0"] +url = "https://packages.typst.org/preview/porygon-0.1.0.tar.gz" +hash = "sha256-10XdfmEyu2Qh5CeA+ihO6oPo7yIPe3awTv8G6RnUog0=" +typstDeps = [ + "fontawesome_0_6_0", +] +description = "Create a CV from a JSON file" +license = [ + "MIT", +] +homepage = "https://github.com/Its-Just-Nans/porygon" + +[poster-syndrome."0.1.0"] +url = "https://packages.typst.org/preview/poster-syndrome-0.1.0.tar.gz" +hash = "sha256-KjFn7wEIfESEPXZFgDGyv9f7vJrgF+q2QpTINOpz0jI=" +typstDeps = [ + "codetastic_0_2_2", +] +description = "A poster template with custom frame placement" +license = [ + "MPL-2.0", +] +homepage = "https://github.com/baptiste/poster-syndrome" + [postercise."0.1.0"] url = "https://packages.typst.org/preview/postercise-0.1.0.tar.gz" hash = "sha256-QMTn5TcAstahWnqU0OCCir2fU9NEd1nym/2gJk450Ec=" @@ -15460,6 +19087,16 @@ license = [ ] homepage = "https://github.com/jskaza/preprintx" +[prequery."0.2.0"] +url = "https://packages.typst.org/preview/prequery-0.2.0.tar.gz" +hash = "sha256-xgx/vctOHpWso2bKgfi2E+cUFJ/RrFEH46AHN+bemIM=" +typstDeps = [] +description = "library for extracting metadata for preprocessing from a typst document" +license = [ + "MIT", +] +homepage = "https://github.com/typst-community/prequery" + [prequery."0.1.0"] url = "https://packages.typst.org/preview/prequery-0.1.0.tar.gz" hash = "sha256-SgjfD/wSGavgRWXSG2iG+bu+4pBuf76a1oFYQyQkN7o=" @@ -15473,6 +19110,16 @@ license = [ ] homepage = "https://github.com/SillyFreak/typst-prequery" +[presentate."0.2.0"] +url = "https://packages.typst.org/preview/presentate-0.2.0.tar.gz" +hash = "sha256-wpyQQMJu35DTHR42MdIJaz70BUCXz6do6+xcbT5c+U0=" +typstDeps = [] +description = "A package to create slides with ease" +license = [ + "MIT", +] +homepage = "https://github.com/pacaunt/typst-presentate" + [presentate."0.1.0"] url = "https://packages.typst.org/preview/presentate-0.1.0.tar.gz" hash = "sha256-NyXpTM7rkHImpJ15UeQA1tiSIK6nTQDb33w1XDO4QOQ=" @@ -15483,6 +19130,30 @@ license = [ ] homepage = "https://github.com/pacaunt/typst-presentate" +[pretty-hdm-thesis."0.1.1"] +url = "https://packages.typst.org/preview/pretty-hdm-thesis-0.1.1.tar.gz" +hash = "sha256-wIT0YhzFOSCivAxr5Aij6ihClOQF9BAbGF552F/N93M=" +typstDeps = [ + "glossarium_0_5_9", +] +description = "Unofficial HdM Thesis Template inspired by the template by Prof. Dr. Dirk Heuzeroth" +license = [ + "MIT", +] +homepage = "https://github.com/miawinter98/hdm-thesis" + +[pretty-hdm-thesis."0.1.0"] +url = "https://packages.typst.org/preview/pretty-hdm-thesis-0.1.0.tar.gz" +hash = "sha256-cv0v+C5dn9D1Cfh8lormQBcJF9BKoBcxmkpbSblND4w=" +typstDeps = [ + "glossarium_0_5_7", +] +description = "Unofficial HdM Thesis Template inspired by the template by Prof. Dr. Dirk Heuzeroth" +license = [ + "MIT", +] +homepage = "https://github.com/miawinter98/hdm-thesis" + [prismath."0.1.0"] url = "https://packages.typst.org/preview/prismath-0.1.0.tar.gz" hash = "sha256-O7PaP1OUcba6j5MBMOmggdPAQDsQkJT5O8RgjP6qfjs=" @@ -15564,6 +19235,36 @@ license = [ ] homepage = "https://github.com/david-davies/typst-prooftree" +[proteograph."0.2.0"] +url = "https://packages.typst.org/preview/proteograph-0.2.0.tar.gz" +hash = "sha256-OWLh2tRcVqXeh2HxUH/k9gpydyWaMlCrVXgfceBuKQE=" +typstDeps = [ + "codly_1_3_0", + "fletcher_0_5_8", + "lilaq_0_4_0", + "tidy_0_4_3", + "tiptoe_0_3_1", +] +description = "A package to visualise proteomics data" +license = [ + "GPL-3.0-only", +] +homepage = "https://codeberg.org/olangella/proteograph" + +[proteograph."0.1.0"] +url = "https://packages.typst.org/preview/proteograph-0.1.0.tar.gz" +hash = "sha256-68bbmG66U38sACork4g7VSkh6JcbLIukGLhCy1iTYXU=" +typstDeps = [ + "lilaq_0_4_0", + "tidy_0_4_3", + "tiptoe_0_3_1", +] +description = "A package to visualise proteomics data" +license = [ + "GPL-3.0-only", +] +homepage = "https://codeberg.org/olangella/proteograph" + [psl-thesis."0.1.0"] url = "https://packages.typst.org/preview/psl-thesis-0.1.0.tar.gz" hash = "sha256-MxuFFtr0ZQ74qipJ4W9mRGBl03ehXeTXF2INoFaFOcY=" @@ -15614,6 +19315,18 @@ license = [ ] homepage = "https://github.com/curvenote/pubmatter" +[pull-eh."0.1.1"] +url = "https://packages.typst.org/preview/pull-eh-0.1.1.tar.gz" +hash = "sha256-u3ICsM79Vk1Vni1jQ4v5M2hqoHpe2Fm6zZhhtpYHgjs=" +typstDeps = [ + "cetz_0_4_0", +] +description = "Visualize pulleys with Typst and CeTZ" +license = [ + "MIT", +] +homepage = "https://github.com/SillyFreak/typst-pull-eh" + [pull-eh."0.1.0"] url = "https://packages.typst.org/preview/pull-eh-0.1.0.tar.gz" hash = "sha256-E6U+SrfTA0IZKkyjn34ZWHR4hh+RZqG+EmsVpw1o7w4=" @@ -15683,6 +19396,18 @@ license = [ ] homepage = "https://github.com/ludwig-austermann/qcm" +[qec-thrust."0.1.1"] +url = "https://packages.typst.org/preview/qec-thrust-0.1.1.tar.gz" +hash = "sha256-vc0ok9xMZ09m4hoQ8MgAg6uruH2ZMIVpPS1E12nw/LA=" +typstDeps = [ + "cetz_0_4_0", +] +description = "A package for drawing quantum error correction codes with Typst" +license = [ + "MIT", +] +homepage = "https://github.com/nzy1997/qec-thrust" + [qec-thrust."0.1.0"] url = "https://packages.typst.org/preview/qec-thrust-0.1.0.tar.gz" hash = "sha256-0Qofs0kXArco7PDC3iRU1Nnjm1hngYcA4tqxj/a1spo=" @@ -15695,6 +19420,22 @@ license = [ ] homepage = "https://github.com/nzy1997/qec-thrust" +[qooklet."0.6.1"] +url = "https://packages.typst.org/preview/qooklet-0.6.1.tar.gz" +hash = "sha256-K/X9tM4rcW1B3zuxPlj16fsZ65aL8wwIEko3E6D+2Bo=" +typstDeps = [ + "codly_1_3_0", + "codly-languages_0_1_8", + "hydra_0_6_1", + "physica_0_9_5", + "theorion_0_3_3", +] +description = "A quick start template for scientific booklets" +license = [ + "MIT", +] +homepage = "https://github.com/ivaquero/typst-qooklet.git" + [qooklet."0.6.0"] url = "https://packages.typst.org/preview/qooklet-0.6.0.tar.gz" hash = "sha256-CMs9EV6tZnxPSZEV5SbToEr9VONkB+I3HKiTYWU/z5U=" @@ -15884,6 +19625,16 @@ license = [ ] homepage = "https://github.com/FlorentCLMichel/quetta" +[quic-style."0.0.1"] +url = "https://packages.typst.org/preview/quic-style-0.0.1.tar.gz" +hash = "sha256-USSaHG1dqu2htQAkorD3CXELRRkBb/TQ8/4DqotKjRs=" +typstDeps = [] +description = "A cohesive Typst design template that can be used in various situations—daily life, research, and experiments" +license = [ + "Unlicense", +] +homepage = "https://github.com/taniiicom/typst-quic-style" + [quick-cards."0.1.1"] url = "https://packages.typst.org/preview/quick-cards-0.1.1.tar.gz" hash = "sha256-tXvD7cCih9ma1qhdNGzaPqqyA82p5YE1NIjUtDDSAgo=" @@ -16038,6 +19789,16 @@ license = [ ] homepage = "https://github.com/artomweb/Quick-Sip-Typst-Template" +[quill."0.7.2"] +url = "https://packages.typst.org/preview/quill-0.7.2.tar.gz" +hash = "sha256-LvDsUl4e8n9paScgV7rxMLMYBhLFw6kvHA84D980Ks0=" +typstDeps = [] +description = "Effortlessly create quantum circuit diagrams" +license = [ + "MIT", +] +homepage = "https://github.com/Mc-Zen/quill" + [quill."0.7.1"] url = "https://packages.typst.org/preview/quill-0.7.1.tar.gz" hash = "sha256-KNnmvvamKnCEGxTI6mytLk4D/Ntse1ethrP4ey6MlyM=" @@ -16145,6 +19906,29 @@ license = [ "MIT", ] +[railynx."0.1.0"] +url = "https://packages.typst.org/preview/railynx-0.1.0.tar.gz" +hash = "sha256-WrucV9+nwnSdKuxbry1n1/Itmtw145j0gY/0lA8/asU=" +typstDeps = [] +description = "Draw rail track diagrams with concise syntax" +license = [ + "MIT", +] +homepage = "https://github.com/yusancky/railynx" + +[realhats."0.1.0"] +url = "https://packages.typst.org/preview/realhats-0.1.0.tar.gz" +hash = "sha256-Ek0AqBU3af+tWe/JthyKtxuTpNRN8xZac2O20Aaik5g=" +typstDeps = [ + "jumble_0_0_1", + "physica_0_8_1", + "suiji_0_3_0", +] +description = "Put real hats on symbols instead of circumflexes" +license = [ + "MIT", +] + [red-agora."0.1.1"] url = "https://packages.typst.org/preview/red-agora-0.1.1.tar.gz" hash = "sha256-K35bSciizmhhCU9hHlkPg2+wR8VCsQeTvisO/kuwVOU=" @@ -16240,6 +20024,52 @@ license = [ ] homepage = "https://github.com/fky2015/resume-ng-typst" +[retrofit."0.1.2"] +url = "https://packages.typst.org/preview/retrofit-0.1.2.tar.gz" +hash = "sha256-pw/GkrP6An3P7hrX+2fkONXJKgs3L4AfLhmMpl+ibCk=" +typstDeps = [ + "tidy_0_4_3", +] +description = "Adds clickable backreferences to each bibliography entry, enabling custom formatting of all cited pages" +license = [ + "MIT", +] +homepage = "https://github.com/xkevio/retrofit" + +[retrofit."0.1.1"] +url = "https://packages.typst.org/preview/retrofit-0.1.1.tar.gz" +hash = "sha256-PMXi0muwObTgvc8Iw+muDTJUl0zn0HZ5NYN4BmEvhnE=" +typstDeps = [ + "tidy_0_4_3", +] +description = "Adds clickable backreferences to each bibliography entry, enabling custom formatting of all cited pages" +license = [ + "MIT", +] +homepage = "https://github.com/xkevio/retrofit" + +[retrofit."0.1.0"] +url = "https://packages.typst.org/preview/retrofit-0.1.0.tar.gz" +hash = "sha256-64rjgz7BbX5A2Sd3hk6HCz4dVJy0kmQJw3a3pyBS0lw=" +typstDeps = [ + "tidy_0_4_3", +] +description = "Adds clickable backreferences to each bibliography entry, enabling custom formatting of all cited pages" +license = [ + "MIT", +] +homepage = "https://github.com/xkevio/retrofit" + +[rexllent."0.3.4"] +url = "https://packages.typst.org/preview/rexllent-0.3.4.tar.gz" +hash = "sha256-vttv5PO3TNh0ESBwNZ31djSTY6VHawr2nVpSV36o+0A=" +typstDeps = [] +description = "Parsing xlsx file into a typst table, powered by wasm" +license = [ + "MIT", +] +homepage = "https://github.com/hongjr03/typst-rexllent" + [rexllent."0.3.3"] url = "https://packages.typst.org/preview/rexllent-0.3.3.tar.gz" hash = "sha256-XIkYNdCwH8R1ZuLb6fwz+CRMBltqjI81qPKlHAnSqQY=" @@ -16496,6 +20326,26 @@ license = [ ] homepage = "https://github.com/rose-pine/typst" +[rowmantic."0.5.0"] +url = "https://packages.typst.org/preview/rowmantic-0.5.0.tar.gz" +hash = "sha256-jisIDc09G3Us+O4wylU5WNypTTjRzJPfQebA48e0/2U=" +typstDeps = [] +description = "Define tables row-wise, with inline separators between cells" +license = [ + "EUPL-1.2", +] +homepage = "https://github.com/typst-community/rowmantic" + +[rowmantic."0.4.0"] +url = "https://packages.typst.org/preview/rowmantic-0.4.0.tar.gz" +hash = "sha256-HoXBo02YR97AS1v2VwPWPnMeBd8BDMHbX7bYJFv9KJY=" +typstDeps = [] +description = "Define tables row-wise, with inline separators between cells" +license = [ + "EUPL-1.2", +] +homepage = "https://github.com/typst-community/rowmantic" + [rowmantic."0.3.0"] url = "https://packages.typst.org/preview/rowmantic-0.3.0.tar.gz" hash = "sha256-CXibQEKW5URyH/xA0r7gZWbNB4l6CvK7oxnFJ9wvIHs=" @@ -16536,6 +20386,19 @@ license = [ ] homepage = "https://github.com/typst-community/rowmantic" +[rubber-article."0.5.0"] +url = "https://packages.typst.org/preview/rubber-article-0.5.0.tar.gz" +hash = "sha256-5IhFTrk1r9FXTA9IpvWejnxKpJlN3svKrDH2XD+9o30=" +typstDeps = [ + "hydra_0_6_1", + "pillar_0_3_3", +] +description = "A simple template recreating the look of the classic LaTeX article" +license = [ + "MIT", +] +homepage = "https://github.com/npikall/rubber-article.git" + [rubber-article."0.4.2"] url = "https://packages.typst.org/preview/rubber-article-0.4.2.tar.gz" hash = "sha256-eJ/R0evHL162/vEvn5wpbLzXMKhyqQGVtf7DpN+4yrE=" @@ -16707,6 +20570,16 @@ license = [ ] homepage = "https://github.com/swaits/typst-collection" +[rustycure."0.1.0"] +url = "https://packages.typst.org/preview/rustycure-0.1.0.tar.gz" +hash = "sha256-Yg9JuGPi8xDGJ1+ulXvJK43d3r0j6ZEHqf5Lok1n7XU=" +typstDeps = [] +description = "Generate QR codes fast" +license = [ + "EUPL-1.2", +] +homepage = "https://codeberg.org/fussgaenger/rustycure" + [s6t5-page-bordering."1.0.0"] url = "https://packages.typst.org/preview/s6t5-page-bordering-1.0.0.tar.gz" hash = "sha256-djet6k3bfA6oi+IpfoN6bsZ8sPkR0y2RVPB0bKKcgI4=" @@ -16809,6 +20682,16 @@ license = [ ] homepage = "https://github.com/augustebaum/epfl-thesis-typst" +[scholarly-tauthesis."0.16.3"] +url = "https://packages.typst.org/preview/scholarly-tauthesis-0.16.3.tar.gz" +hash = "sha256-WkhIH+VBCYAyYT7z5MuYyPwrt8Hs3DeF5EteTT0aXaM=" +typstDeps = [] +description = "A template for writing Tampere University theses" +license = [ + "MIT", +] +homepage = "https://gitlab.com/tuni-official/thesis-templates/tau-typst-thesis-template" + [scholarly-tauthesis."0.15.2"] url = "https://packages.typst.org/preview/scholarly-tauthesis-0.15.2.tar.gz" hash = "sha256-YLv4e/VxeKpS7TWRor4LMKmMd6u/UOpbxzzMkV5yIXk=" @@ -17119,6 +21002,25 @@ license = [ ] homepage = "https://github.com/Dregen-Yor/sdu-exp-report" +[sdu-touying-simpl."1.0.0"] +url = "https://packages.typst.org/preview/sdu-touying-simpl-1.0.0.tar.gz" +hash = "sha256-ZM2jkUisW5nCk2PTSX+eukmSOxnJg0h9e4VjxMb3PIA=" +typstDeps = [ + "codly_1_3_0", + "codly-languages_0_1_8", + "ctheorems_1_1_3", + "fletcher_0_5_8", + "gentle-clues_1_2_0", + "mitex_0_2_2", + "showybox_2_0_4", + "touying_0_6_1", +] +description = "An templete based on touying, " +license = [ + "GPL-3.0-only", +] +homepage = "https://github.com/Dregen-Yor/sdu-touying-simpl" + [sdu-touying-simpl."0.3.1"] url = "https://packages.typst.org/preview/sdu-touying-simpl-0.3.1.tar.gz" hash = "sha256-3QSKmhYF1Qj9RT3rHR+DW8miDX+3RIlpQRurt6JMQ+Y=" @@ -17363,6 +21265,36 @@ license = [ ] homepage = "https://github.com/shaneworld/HHU-Thesis-Template" +[sheetstorm."0.3.3"] +url = "https://packages.typst.org/preview/sheetstorm-0.3.3.tar.gz" +hash = "sha256-HDm3UT7rQzDvUIgE5v+cYxT6UPdx44prtNnP72PDAOU=" +typstDeps = [] +description = "A template for university exercise sheets" +license = [ + "MIT", +] +homepage = "https://github.com/rabuu/sheetstorm" + +[sheetstorm."0.2.0"] +url = "https://packages.typst.org/preview/sheetstorm-0.2.0.tar.gz" +hash = "sha256-0Kxp6+T8fojGg4I1RCvpj8z5/fyp/wj/bMlN8yHIAg8=" +typstDeps = [] +description = "A template for university exercise sheets" +license = [ + "MIT", +] +homepage = "https://github.com/rabuu/sheetstorm" + +[sheetstorm."0.1.0"] +url = "https://packages.typst.org/preview/sheetstorm-0.1.0.tar.gz" +hash = "sha256-J6WL95oE0eowdDCIYDFjYaPY71YJsx9X6hjhBbYih60=" +typstDeps = [] +description = "A template for university exercise sheets" +license = [ + "MIT", +] +homepage = "https://github.com/rabuu/sheetstorm" + [shiroa."0.2.3"] url = "https://packages.typst.org/preview/shiroa-0.2.3.tar.gz" hash = "sha256-Yb2tdrqI1j/hZDV0gBctZssJaj3b7qqVVfCQ6BhG5uY=" @@ -17725,6 +21657,26 @@ license = [ ] homepage = "https://github.com/VWWVVW/shuxuejuan" +[sicons."15.13.0"] +url = "https://packages.typst.org/preview/sicons-15.13.0.tar.gz" +hash = "sha256-injvgnY5RDBV5Ni4Y1FM8dicVeYgNoL6nJ8US0Cq6+4=" +typstDeps = [] +description = "Access High quality Simple Icons SVGs from Typst" +license = [ + "MIT", +] +homepage = "https://github.com/cscnk52/typst-sicons" + +[sicons."15.12.0"] +url = "https://packages.typst.org/preview/sicons-15.12.0.tar.gz" +hash = "sha256-CvfifVb4Qo5NCJFUcJpdYbGfYGE12Vg22e3r0z1mvEU=" +typstDeps = [] +description = "Access High quality Simple Icons SVGs from Typst" +license = [ + "MIT", +] +homepage = "https://github.com/cscnk52/typst-sicons" + [siddhi-syntax."0.1.0"] url = "https://packages.typst.org/preview/siddhi-syntax-0.1.0.tar.gz" hash = "sha256-fwiowLjoDTWvnY9d7k6AH4MmRpt6m94bSikczYxCX8o=" @@ -17735,6 +21687,19 @@ license = [ ] homepage = "https://github.com/mahgoh/typst-siddhi-syntax" +[siefken-syllabus."0.1.0"] +url = "https://packages.typst.org/preview/siefken-syllabus-0.1.0.tar.gz" +hash = "sha256-ryRf+u8wCUBfDdvEaGQIczBJgzAKlZFGvNEPbqYkFcg=" +typstDeps = [ + "elembic_1_1_1", +] +description = "Template for a syllabus originally designed for the University of Toronto" +license = [ + "MIT", + "Apache-2.0", +] +homepage = "https://github.com/siefkenj/typst-siefken-syllabus" + [sigfig."0.1.0"] url = "https://packages.typst.org/preview/sigfig-0.1.0.tar.gz" hash = "sha256-C/AoEPkroDYqtHr+r3rzQmdAvE8M9di0rE5EIcOWcsk=" @@ -17785,6 +21750,16 @@ license = [ ] homepage = "https://github.com/SkytAsul/INSA-Typst-Template" +[silky-report-insa."0.5.2"] +url = "https://packages.typst.org/preview/silky-report-insa-0.5.2.tar.gz" +hash = "sha256-Mr+8YvChHTKny7YZJ9s9dhYIs/7X1RBLm5o0IjIJzug=" +typstDeps = [] +description = "A template made for reports and other documents of INSA, a French engineering school" +license = [ + "MIT", +] +homepage = "https://github.com/SkytAsul/INSA-Typst-Template" + [silky-report-insa."0.5.1"] url = "https://packages.typst.org/preview/silky-report-insa-0.5.1.tar.gz" hash = "sha256-SnAuJ1qLZ3UE7CMSYO0Y8V+Dz9cYutJT4JksFFZ79AU=" @@ -17916,6 +21891,18 @@ license = [ "MIT", ] +[simple-bupt-report."0.1.1"] +url = "https://packages.typst.org/preview/simple-bupt-report-0.1.1.tar.gz" +hash = "sha256-BaR7WO5wwLjd6PlihGms1W9r/OKNs3zUqHzrg4FyZWk=" +typstDeps = [ + "cuti_0_3_0", +] +description = "一份简单的北邮实验报告模板 Simple BUPT Report" +license = [ + "MIT", +] +homepage = "https://github.com/zhao-leo/BUPT-Report-Typst" + [simple-bupt-report."0.1.0"] url = "https://packages.typst.org/preview/simple-bupt-report-0.1.0.tar.gz" hash = "sha256-GeL1I2NCqZItRhfDPHI1u0aXJtTGnaYmFzouZ0fIIvk=" @@ -17941,6 +21928,21 @@ license = [ ] homepage = "https://github.com/chillcicada/simple-handout-template" +[simple-ntnu-report."0.1.0"] +url = "https://packages.typst.org/preview/simple-ntnu-report-0.1.0.tar.gz" +hash = "sha256-nTqMzQDZGzBaFRjEBK3HFJkCy6XQE4w6MoyEKpZaE2E=" +typstDeps = [ + "icu-datetime_0_1_2", + "swank-tex_0_1_0", + "zero_0_3_3", +] +description = "Shorter academic reports at NTNU in Trondheim" +license = [ + "AGPL-3.0-or-later", + "MIT-0", +] +homepage = "https://github.com/torsteinnh/simple-ntnu-report" + [simple-preavis."0.1.0"] url = "https://packages.typst.org/preview/simple-preavis-0.1.0.tar.gz" hash = "sha256-x5dtbcF3MGGGkGjAYSLHphn7XcrCnmRsf1g27aAq3vI=" @@ -18001,6 +22003,18 @@ license = [ ] homepage = "https://github.com/VictuarVi/Template-Tesi-UniMi" +[simple-ve-thesis."0.1.0"] +url = "https://packages.typst.org/preview/simple-ve-thesis-0.1.0.tar.gz" +hash = "sha256-H4UmyPf1iLOLEYx+KhXyXWPylVXVGDO+91TXoWpMnOs=" +typstDeps = [ + "grayness_0_3_0", +] +description = "Unofficial thesis template for Ca' Foscari University of Venice" +license = [ + "MIT", +] +homepage = "https://github.com/biipo/typst-unive-template" + [simplebnf."0.1.1"] url = "https://packages.typst.org/preview/simplebnf-0.1.1.tar.gz" hash = "sha256-dGCrPJW/E4rRKwO8Q+M0g1+zuC5N58Y5nrp1l4Q/9W8=" @@ -18126,6 +22140,19 @@ license = [ "MIT", ] +[smartaref."0.1.0"] +url = "https://packages.typst.org/preview/smartaref-0.1.0.tar.gz" +hash = "sha256-sGf+wEKbA0jgsORdjYcBObyvObDQQU8+dQeNR5ScUZc=" +typstDeps = [ + "hallon_0_1_0", + "subpar_0_2_2", +] +description = "Smart handling of consecutive references (i.e. cleveref for Typst" +license = [ + "0BSD", +] +homepage = "https://github.com/mewmew/smartaref-typ" + [smooth-tmlr."0.4.0"] url = "https://packages.typst.org/preview/smooth-tmlr-0.4.0.tar.gz" hash = "sha256-qJ/+wPqqN/ZYYkTil4YIs8hUc+SustHn0ERBT7QX0sE=" @@ -18194,6 +22221,16 @@ license = [ ] homepage = "https://github.com/Bi0T1N/typst-socialhub-fa" +[solo-lu-df."0.1.0"] +url = "https://packages.typst.org/preview/solo-lu-df-0.1.0.tar.gz" +hash = "sha256-9dQYiOOm0SuXFoQ+uJKMNLj4n95Vxs95BrhDjvCc20E=" +typstDeps = [] +description = "Write qualification papers, bachelor’s theses, and master’s theses for University of Lativa, Computer Science programme" +license = [ + "MIT", +] +homepage = "https://github.com/kristoferssolo/LU-DF-Typst-Template" + [solving-physics."0.1.0"] url = "https://packages.typst.org/preview/solving-physics-0.1.0.tar.gz" hash = "sha256-aioIHCKBnf8BBlYvO1UtrQ27o1/oCEvRieY1I29V3Sg=" @@ -18216,6 +22253,37 @@ license = [ ] homepage = "https://codeberg.org/pfad.fr/typst-songbook" +[songting-book."0.0.4"] +url = "https://packages.typst.org/preview/songting-book-0.0.4.tar.gz" +hash = "sha256-+iCuTslAKUV1ZSChKFtYkpRPkTGRb1fRpsZDanF710c=" +typstDeps = [ + "hydra_0_6_1", + "i-figured_0_2_4", + "modern-nju-thesis_0_4_0", + "numbly_0_1_0", + "outrageous_0_4_0", +] +description = "Create Chinese-style books effortlessly using markup with built-in styling" +license = [ + "MIT", +] +homepage = "https://github.com/zhinenggongziliaoku/songting-book" + +[songting-book."0.0.3"] +url = "https://packages.typst.org/preview/songting-book-0.0.3.tar.gz" +hash = "sha256-PrzVgAnJxVDRqWrolTX/r/aUk/jJSkj419zZPZLu3lM=" +typstDeps = [ + "hydra_0_6_1", + "modern-nju-thesis_0_4_0", + "numbly_0_1_0", + "outrageous_0_4_0", +] +description = "Create Chinese-style books effortlessly using markup with built-in styling" +license = [ + "MIT", +] +homepage = "https://github.com/zhinenggongziliaoku/songting-book" + [songting-book."0.0.2"] url = "https://packages.typst.org/preview/songting-book-0.0.2.tar.gz" hash = "sha256-uNl6DIU8lxclkuDbwlEsmggUcS2ca6ZMVRWUJKtX3jg=" @@ -18246,6 +22314,30 @@ license = [ ] homepage = "https://github.com/zhinenggongziliaoku/songting-book" +[sos-ugent-style."0.2.0"] +url = "https://packages.typst.org/preview/sos-ugent-style-0.2.0.tar.gz" +hash = "sha256-NgcPW5AsXOFMaALkcrMATJeXK3JZQK4HrwPb/0NbsPg=" +typstDeps = [ + "drafting_0_2_2", +] +description = "Write documents, presentations and dissertations in the same, uniform UGent style. Unofficial template" +license = [ + "GPL-3.0-only", +] +homepage = "https://codeberg.org/th1j5/typst-sos-ugent-style" + +[sos-ugent-style."0.1.0"] +url = "https://packages.typst.org/preview/sos-ugent-style-0.1.0.tar.gz" +hash = "sha256-JJDKC25tBanY0psaxHRBOww7m8OYhvG17XSssJtkbSM=" +typstDeps = [ + "drafting_0_2_2", +] +description = "Write documents, presentations and dissertations in the same, uniform UGent style. Unofficial template" +license = [ + "GPL-3.0-only", +] +homepage = "https://codeberg.org/th1j5/typst-sos-ugent-style" + [sourcerer."0.2.1"] url = "https://packages.typst.org/preview/sourcerer-0.2.1.tar.gz" hash = "sha256-WrNizB+4ZYOoIOlJxiuzaWqaI7htDzuGjJ5ZsmfxiAA=" @@ -18276,6 +22368,18 @@ license = [ ] homepage = "https://github.com/miestrode/sourcerer" +[soviet-matrix."0.2.1"] +url = "https://packages.typst.org/preview/soviet-matrix-0.2.1.tar.gz" +hash = "sha256-Ky+Ldu/M7ITs0iLN1gesdND9kLCvdLRuKIyQ/kzTrGo=" +typstDeps = [ + "suiji_0_4_0", +] +description = "Tetris game in Typst" +license = [ + "MIT", +] +homepage = "https://github.com/YouXam/soviet-matrix" + [soviet-matrix."0.2.0"] url = "https://packages.typst.org/preview/soviet-matrix-0.2.0.tar.gz" hash = "sha256-8b/4OqWjlSVdGy1UlgIvqC4SEY81OPvNd1cvWPYmdKo=" @@ -18533,6 +22637,16 @@ license = [ ] homepage = "https://github.com/HPDell/typst-starter-journal-article" +[stash."0.1.0"] +url = "https://packages.typst.org/preview/stash-0.1.0.tar.gz" +hash = "sha256-gna1r70z+G7+qySDBN+75o7cfvX2ZOi6P9chWVEQ004=" +typstDeps = [] +description = "Stash content to display it later" +license = [ + "GPL-3.0-or-later", +] +homepage = "https://github.com/VanessB/typst-stash" + [statastic."1.0.0"] url = "https://packages.typst.org/preview/statastic-1.0.0.tar.gz" hash = "sha256-zAYUeBwLwXHhLVBdYenuEpcG0RTBh0lBbqAiPXDafoY=" @@ -18579,6 +22693,17 @@ license = [ ] homepage = "https://github.com/Riley719/typst-statementsp" +[stellar-iac."0.5.0"] +url = "https://packages.typst.org/preview/stellar-iac-0.5.0.tar.gz" +hash = "sha256-lZqPmrK+Mdip7bI8h5UwgoMjC91AEWkuhAKKcHjU/Cg=" +typstDeps = [] +description = "Template for the International Astronautical Congress (IAC) manuscript" +license = [ + "MIT", + "MIT-0", +] +homepage = "https://github.com/shunichironomura/iac-typst-template" + [stellar-iac."0.4.1"] url = "https://packages.typst.org/preview/stellar-iac-0.4.1.tar.gz" hash = "sha256-vxJ+YZEpi3w8pkFhmupmifPOI8G8A+tS8sJ+bGEsreM=" @@ -18610,6 +22735,18 @@ license = [ ] homepage = "https://github.com/coco33920/stonewall" +[storytiles."0.0.1"] +url = "https://packages.typst.org/preview/storytiles-0.0.1.tar.gz" +hash = "sha256-xVfQrBNh/7GsSvPSm2+Arvi2aweabNr1ETrwI9RclBI=" +typstDeps = [ + "cuti_0_3_0", +] +description = "4 images per slide, for group meeting" +license = [ + "MIT", +] +homepage = "https://github.com/xbttkunhao/storytiles" + [structogrammer."0.1.2"] url = "https://packages.typst.org/preview/structogrammer-0.1.2.tar.gz" hash = "sha256-q0/P9yStQHs2dQDT820EfLUHMtu0pdIgFa9xn+dLtnM=" @@ -19342,6 +23479,42 @@ license = [ ] homepage = "https://github.com/jneug/typst-tools4typst" +[tabbyterms."0.1.0"] +url = "https://packages.typst.org/preview/tabbyterms-0.1.0.tar.gz" +hash = "sha256-B0EYn1QlEbwrbR0FADO3ZRr2obD3l3QI0WW+7X83w2Y=" +typstDeps = [] +description = "Layout the term list as a table, even with multiple columns" +license = [ + "EUPL-1.2", +] +homepage = "https://github.com/typst-community/tabbyterms" + +[tableau-icons."0.334.1"] +url = "https://packages.typst.org/preview/tableau-icons-0.334.1.tar.gz" +hash = "sha256-lnJo0dJflKQJO1YFmJKwlUX7mhHXmUXBlPkm5KZLM3Y=" +typstDeps = [ + "shadowed_0_2_0", + "tidy_0_4_3", +] +description = "Tabler.io Icons v3.34.0 for Typst" +license = [ + "MIT", +] +homepage = "https://codeberg.org/joelvonrotz/tableau-icons" + +[tableau-icons."0.334.0"] +url = "https://packages.typst.org/preview/tableau-icons-0.334.0.tar.gz" +hash = "sha256-UiTdLTQN9xIWaTYBwfOmJCStm5V16ey+PGfkAeHHr3A=" +typstDeps = [ + "shadowed_0_2_0", + "tidy_0_4_2", +] +description = "Tabler.io Icons v3.34.0 for Typst" +license = [ + "MIT", +] +homepage = "https://codeberg.org/joelvonrotz/tableau-icons" + [tableau-icons."0.331.0"] url = "https://packages.typst.org/preview/tableau-icons-0.331.0.tar.gz" hash = "sha256-9ljNMcVEhP1eKUCdLITB4vFxRqDaT9KSptDGxjBOgXo=" @@ -19378,6 +23551,16 @@ license = [ ] homepage = "https://github.com/joelvonrotz/tableau-icons" +[tablem."0.3.0"] +url = "https://packages.typst.org/preview/tablem-0.3.0.tar.gz" +hash = "sha256-rAer99mHZDzgUqFI31j19JZglsLbAGWxCNG5UvVaiN8=" +typstDeps = [] +description = "Write markdown-like tables easily" +license = [ + "MIT", +] +homepage = "https://github.com/OrangeX4/typst-tablem" + [tablem."0.2.0"] url = "https://packages.typst.org/preview/tablem-0.2.0.tar.gz" hash = "sha256-xXsq6mh6lm2ZL8z9d9gQK+LYB8vHofHK+MfgcX5yWBY=" @@ -19633,6 +23816,44 @@ license = [ ] homepage = "https://github.com/maxcrees/tbl.typ" +[tblr."0.4.1"] +url = "https://packages.typst.org/preview/tblr-0.4.1.tar.gz" +hash = "sha256-W+ATn3TwrhVQIk/sEEijBwFiDHuM4qFo6qHUovYwu/Q=" +typstDeps = [ + "rowmantic_0_4_0", + "zero_0_3_0", +] +description = "Table generation and alignment helpers inspired by LaTeX's Tabularray package" +license = [ + "MIT", +] +homepage = "https://github.com/tshort/tblr" + +[tblr."0.4.0"] +url = "https://packages.typst.org/preview/tblr-0.4.0.tar.gz" +hash = "sha256-dTUzcfJEAlauek+HnkG3Rv22G2PCOy5S8vfvRQvCNP4=" +typstDeps = [ + "rowmantic_0_4_0", + "zero_0_3_0", +] +description = "Table generation and alignment helpers inspired by LaTeX's Tabularray package" +license = [ + "MIT", +] +homepage = "https://github.com/tshort/tblr" + +[tblr."0.3.2"] +url = "https://packages.typst.org/preview/tblr-0.3.2.tar.gz" +hash = "sha256-Jp0P3r7kovJ532O68oHxKaK+P6QAfEMaYbnWU6PUufo=" +typstDeps = [ + "zero_0_3_0", +] +description = "Table generation and alignment helpers inspired by LaTeX's Tabularray package" +license = [ + "MIT", +] +homepage = "https://github.com/tshort/tblr" + [tblr."0.3.1"] url = "https://packages.typst.org/preview/tblr-0.3.1.tar.gz" hash = "sha256-dIFBY7VHPz0n2LiyzTcUsCyEk0X1bDtxu/Dwitne1gk=" @@ -19711,6 +23932,18 @@ license = [ ] homepage = "https://github.com/chillcicada/typst-dotenv" +[tessera."0.1.0"] +url = "https://packages.typst.org/preview/tessera-0.1.0.tar.gz" +hash = "sha256-fiR/uD6HNyUeGGEdkQvJc9uufh9mdbt6IBdN/2kKRvA=" +typstDeps = [ + "elembic_1_1_1", +] +description = "A package for combining multiple images into masonry or matrix layout" +license = [ + "MIT", +] +homepage = "https://github.com/vanleefxp/tesselate_typ" + [text-dirr."1.0.0"] url = "https://packages.typst.org/preview/text-dirr-1.0.0.tar.gz" hash = "sha256-qn4cfK9i1f8ClTsrA0CM5+KLsEPVCUqgDEVUIQm4iqk=" @@ -19773,6 +24006,23 @@ license = [ ] homepage = "https://github.com/TGM-HIT/typst-protocol" +[tgm-hit-thesis."0.4.0"] +url = "https://packages.typst.org/preview/tgm-hit-thesis-0.4.0.tar.gz" +hash = "sha256-1oDjbsmMnO2UI2H9XdHeeuIB0nYFDYdSG+ZkWNUoFRw=" +typstDeps = [ + "alexandria_0_2_1", + "codly_1_3_0", + "datify_0_1_4", + "glossarium_0_5_9", + "hydra_0_6_2", + "linguify_0_4_2", +] +description = "Diploma thesis template for students of the HIT department at TGM Wien" +license = [ + "MIT", +] +homepage = "https://github.com/TGM-HIT/typst-diploma-thesis" + [tgm-hit-thesis."0.3.1"] url = "https://packages.typst.org/preview/tgm-hit-thesis-0.3.1.tar.gz" hash = "sha256-9lHo3QhUG7AnjwhRBf+NLBJb9PmHvzsh9XOCgCo49TM=" @@ -19896,6 +24146,18 @@ license = [ ] homepage = "https://github.com/nleanba/typst-theoretic" +[theorion."0.4.0"] +url = "https://packages.typst.org/preview/theorion-0.4.0.tar.gz" +hash = "sha256-jRF5VEUHq9OHi9t5UtnOtvzlpPr/zcIVnxqIdSeh4Og=" +typstDeps = [ + "showybox_2_0_4", +] +description = "Out-of-the-box, customizable and multilingual theorem environment package" +license = [ + "MIT", +] +homepage = "https://github.com/OrangeX4/typst-theorion" + [theorion."0.3.3"] url = "https://packages.typst.org/preview/theorion-0.3.3.tar.gz" hash = "sha256-JXD+gEwf78Cnt0RkRWvtKjdt1nMGU2/OVxRg6pDXNQc=" @@ -20032,6 +24294,16 @@ license = [ ] homepage = "https://github.com/tfachada/thesist" +[thmbox."0.3.0"] +url = "https://packages.typst.org/preview/thmbox-0.3.0.tar.gz" +hash = "sha256-aW9tioGuSpnGNSFhSm/Svc/j4ChFhQ+AnLWajgFnjIA=" +typstDeps = [] +description = "Creating beautiful theorem environments in typst with ease" +license = [ + "MIT", +] +homepage = "https://github.com/s15n/typst-thmbox" + [thmbox."0.2.0"] url = "https://packages.typst.org/preview/thmbox-0.2.0.tar.gz" hash = "sha256-2k4K8b5E1jkEm7lhCb9UeADUBqK3jZxTougU2SD2KQ0=" @@ -20102,6 +24374,15 @@ license = [ ] homepage = "https://github.com/Enter-tainer/zint-wasi" +[tidbit-uoc."0.1.0"] +url = "https://packages.typst.org/preview/tidbit-uoc-0.1.0.tar.gz" +hash = "sha256-ak5zPsWhBxQFo+MluIzcem72GvuW6FqS/byVAPpg+tw=" +typstDeps = [] +description = "Academic reports at the UOC with APA styling" +license = [ + "MIT", +] + [tidy."0.4.3"] url = "https://packages.typst.org/preview/tidy-0.4.3.tar.gz" hash = "sha256-3F4nBSvietpAevp+EgZIFoLfv4GRMLjSyGD+7RCYjjg=" @@ -20170,6 +24451,28 @@ license = [ "MIT", ] +[tiefletter."0.1.3"] +url = "https://packages.typst.org/preview/tiefletter-0.1.3.tar.gz" +hash = "sha256-BZER3U5LIYvGdlk63Gi0Pylx2xhs9cTK29YXjm7HJ2Y=" +typstDeps = [ + "tiaoma_0_3_0", +] +description = "Invoice and offer template for Austrian freelancers" +license = [ + "MIT", +] + +[tiefletter."0.1.2"] +url = "https://packages.typst.org/preview/tiefletter-0.1.2.tar.gz" +hash = "sha256-qX7SXHWZTlSAxHIa/03RDejAK/puIPf7ZRIAj8oNE4I=" +typstDeps = [ + "tiaoma_0_3_0", +] +description = "Invoice and offer template for Austrian freelancers" +license = [ + "MIT", +] + [tiefletter."0.1.1"] url = "https://packages.typst.org/preview/tiefletter-0.1.1.tar.gz" hash = "sha256-536tEljAru3xi7OaK53ehX3WeK5cdHyQkuwfQEeD580=" @@ -20192,6 +24495,33 @@ license = [ "MIT", ] +[tieflied."0.2.0"] +url = "https://packages.typst.org/preview/tieflied-0.2.0.tar.gz" +hash = "sha256-u7FwEuClg+OW82StKG0Q4JM2IY9L/JrGuPR71mPJquU=" +typstDeps = [] +description = "Song book template (Liederbuch" +license = [ + "MIT", +] + +[tieflied."0.1.1"] +url = "https://packages.typst.org/preview/tieflied-0.1.1.tar.gz" +hash = "sha256-+lqJuaewHr45Y83wRZ6/gzB93PzjEwyfs8JH4fqo/eA=" +typstDeps = [] +description = "Song book template (Liederbuch" +license = [ + "MIT", +] + +[tieflied."0.1.0"] +url = "https://packages.typst.org/preview/tieflied-0.1.0.tar.gz" +hash = "sha256-sLP7vBYIu3wswGhFIvcLkhD9NWL8n5tI/PszvV/RNxE=" +typstDeps = [] +description = "Song book (Liederbuch" +license = [ + "MIT", +] + [tierpist."0.1.0"] url = "https://packages.typst.org/preview/tierpist-0.1.0.tar.gz" hash = "sha256-p9EUIa5z1f22OlPbJtdUojsnE3Kb2BDAwivkh3himQg=" @@ -20204,6 +24534,19 @@ license = [ ] homepage = "https://github.com/bastienvoirin/tierpist" +[timeliney."0.4.0"] +url = "https://packages.typst.org/preview/timeliney-0.4.0.tar.gz" +hash = "sha256-atAcyhjup40j1YQgVE80wk3FNbTS5oxovEDz56yb+pQ=" +typstDeps = [ + "cetz_0_4_1", + "mantys_0_1_4", +] +description = "Create Gantt charts in Typst" +license = [ + "MIT", +] +homepage = "https://github.com/pta2002/typst-timeliney" + [timeliney."0.3.0"] url = "https://packages.typst.org/preview/timeliney-0.3.0.tar.gz" hash = "sha256-k5psWk1IImnwZlg3s/6JH9hZLPlBesq5TAt8bKVnBmw=" @@ -20338,6 +24681,15 @@ license = [ ] homepage = "https://gitlab.com/SolidTux/titleize" +[tlacuache-thesis-fc-unam."0.1.2"] +url = "https://packages.typst.org/preview/tlacuache-thesis-fc-unam-0.1.2.tar.gz" +hash = "sha256-/ykgKoHTmgAT1jSsaBV9ewCHfnxQwz5aBN/tMiZn2qM=" +typstDeps = [] +description = "Template para escribir una tesis para la facultad de ciencias" +license = [ + "MIT", +] + [tlacuache-thesis-fc-unam."0.1.1"] url = "https://packages.typst.org/preview/tlacuache-thesis-fc-unam-0.1.1.tar.gz" hash = "sha256-skc0agrYuWNsDTToeI/SM8u+37NVfvySkoY6D58QZ4w=" @@ -20347,6 +24699,48 @@ license = [ "MIT", ] +[tntt."0.3.4"] +url = "https://packages.typst.org/preview/tntt-0.3.4.tar.gz" +hash = "sha256-TZwGr69ghMVQXIebK6Uf5ahe0i6xg7MEoNMBUZcFW+s=" +typstDeps = [ + "cuti_0_3_0", + "i-figured_0_2_4", + "lovelace_0_3_0", +] +description = "Tntt is Not a Tex Thesis Template for Tsinghua university" +license = [ + "MIT", +] +homepage = "https://github.com/chillcicada/tntt" + +[tntt."0.3.3"] +url = "https://packages.typst.org/preview/tntt-0.3.3.tar.gz" +hash = "sha256-AQeb++fU24YbX3Kb5B2RtfLBX6utR7FhP3f1Ku3sNKE=" +typstDeps = [ + "cuti_0_3_0", + "i-figured_0_2_4", + "lovelace_0_3_0", +] +description = "Tntt is Not a Tex Thesis Template for Tsinghua university" +license = [ + "MIT", +] +homepage = "https://github.com/chillcicada/tntt" + +[tntt."0.3.2"] +url = "https://packages.typst.org/preview/tntt-0.3.2.tar.gz" +hash = "sha256-SHg1t53CtwGpmMfu/Hd7gK/E1EdWfz2oOD6Uk6qqIW4=" +typstDeps = [ + "cuti_0_3_0", + "i-figured_0_2_4", + "lovelace_0_3_0", +] +description = "Tntt is Not a Tex Thesis Template for Tsinghua university" +license = [ + "MIT", +] +homepage = "https://github.com/chillcicada/tntt" + [tntt."0.3.1"] url = "https://packages.typst.org/preview/tntt-0.3.1.tar.gz" hash = "sha256-nw8c2BeoQe0/oeVvB9F9kINqOJiLllWUZSpOPa1GKYs=" @@ -20401,6 +24795,36 @@ license = [ ] homepage = "https://github.com/chillcicada/tntt" +[tonguetoquill-usaf-memo."0.1.0"] +url = "https://packages.typst.org/preview/tonguetoquill-usaf-memo-0.1.0.tar.gz" +hash = "sha256-ZUQ6RZfSbFDzDIP9JJ+uL0/t9GhKOKGzCOGA9HAqBDA=" +typstDeps = [] +description = "Typeset memos that are fully compliant with AFH 33-337 'The Tongue and Quill" +license = [ + "MIT", +] +homepage = "https://github.com/SnpM/tonguetoquill-usaf-memo" + +[tonguetoquill-usaf-memo."0.0.2"] +url = "https://packages.typst.org/preview/tonguetoquill-usaf-memo-0.0.2.tar.gz" +hash = "sha256-CicYLmS4DxFJ4dsrbq7xgx78tbsf88Gyy2QdTuP8Cbo=" +typstDeps = [] +description = "Typeset memos that are fully compliant with AFH 33-337 'The Tongue and Quill" +license = [ + "MIT", +] +homepage = "https://github.com/SnpM/tonguetoquill-usaf-memo" + +[tonguetoquill-usaf-memo."0.0.1"] +url = "https://packages.typst.org/preview/tonguetoquill-usaf-memo-0.0.1.tar.gz" +hash = "sha256-f3mD3aPQok9fgSu/lOOG7DHrQxgxjzQb2q9ySLFIJuE=" +typstDeps = [] +description = "Typeset memos that are fully compliant with AFH 33-337 'The Tongue and Quill" +license = [ + "MIT", +] +homepage = "https://github.com/SnpM/tonguetoquill-usaf-memo" + [touying."0.6.1"] url = "https://packages.typst.org/preview/touying-0.6.1.tar.gz" hash = "sha256-AutRIIoJa75hrDTQVyoVAxajm1nmkypFLwYkmAyp39A=" @@ -20989,6 +25413,19 @@ license = [ ] homepage = "https://github.com/Quaternijkon/Typst_USTC_CS" +[touying-quarto-clean."0.1.2"] +url = "https://packages.typst.org/preview/touying-quarto-clean-0.1.2.tar.gz" +hash = "sha256-VjH0PkaGedpLOnrCo9Qofv3hE2bEXrTNliSpztMkibI=" +typstDeps = [ + "fontawesome_0_5_0", + "touying_0_6_1", +] +description = "A Clean Slide Theme for Touying" +license = [ + "MIT", +] +homepage = "https://github.com/kazuyanagimoto/quarto-clean-typst" + [touying-quarto-clean."0.1.1"] url = "https://packages.typst.org/preview/touying-quarto-clean-0.1.1.tar.gz" hash = "sha256-9zYawo4SimWNIrJCKUe27CHJq3er23/YEJa4iTGesrw=" @@ -21015,6 +25452,22 @@ license = [ ] homepage = "https://github.com/kazuyanagimoto/quarto-clean-typst" +[touying-quick."0.2.1"] +url = "https://packages.typst.org/preview/touying-quick-0.2.1.tar.gz" +hash = "sha256-hNiiAXKpfd5JX4MKN9rf7HxA5MKUfqTQ5z2opV7w+VA=" +typstDeps = [ + "codly_1_3_0", + "codly-languages_0_1_8", + "physica_0_9_5", + "theorion_0_3_3", + "touying_0_6_1", +] +description = "A quick-start template based on touying for academic reports" +license = [ + "MIT", +] +homepage = "https://github.com/ivaquero/touying-quick.git" + [touying-quick."0.2.0"] url = "https://packages.typst.org/preview/touying-quick-0.2.0.tar.gz" hash = "sha256-KJ4P2LudaxyIs9uCqAbMK6+Cn9OwLr0d1NqXBM+Y7RA=" @@ -21084,6 +25537,20 @@ license = [ ] homepage = "https://github.com/maxchang3/touying-simpl-cau" +[touying-simpl-hkustgz."0.1.2"] +url = "https://packages.typst.org/preview/touying-simpl-hkustgz-0.1.2.tar.gz" +hash = "sha256-KAfxpNi8hLwlscFZvc2yFSdeagvmNFquuQHxit3NWwk=" +typstDeps = [ + "cetz_0_3_3", + "fletcher_0_5_5", + "touying_0_6_1", +] +description = "Touying Slide Theme for HKUST(GZ" +license = [ + "MIT", +] +homepage = "https://github.com/exAClior/touying-simpl-hkustgz" + [touying-simpl-hkustgz."0.1.1"] url = "https://packages.typst.org/preview/touying-simpl-hkustgz-0.1.1.tar.gz" hash = "sha256-hPzAv/zrLYdniHhKcXhiw4NqivEzu/MH0NO7utaIv/Q=" @@ -21112,6 +25579,30 @@ license = [ ] homepage = "https://github.com/exAClior/touying-simpl-hkustgz" +[touying-simpl-sjtu."0.1.0"] +url = "https://packages.typst.org/preview/touying-simpl-sjtu-0.1.0.tar.gz" +hash = "sha256-cMHpV1gcDaxYeNXuvNmuMSCDKTbNMwPNPCdNxAsLC9A=" +typstDeps = [ + "touying_0_6_1", +] +description = "上海交通大学 Touying 幻灯片主题 (Touying Slide Theme for SJTU" +license = [ + "MIT", +] +homepage = "https://github.com/tzhTaylor/touying-sjtu" + +[touying-unistra-pristine."1.4.2"] +url = "https://packages.typst.org/preview/touying-unistra-pristine-1.4.2.tar.gz" +hash = "sha256-EudAdb0VLoAgUUJX5Hwyfd/9xE3RG7NjSeqF2d+VRTg=" +typstDeps = [ + "touying_0_6_1", +] +description = "Touying theme adhering to the core principles of the style guide of the University of Strasbourg, France" +license = [ + "MIT", +] +homepage = "https://github.com/spidersouris/touying-unistra-pristine" + [touying-unistra-pristine."1.4.1"] url = "https://packages.typst.org/preview/touying-unistra-pristine-1.4.1.tar.gz" hash = "sha256-4X1Wh/8oPbTfMtjmjo3ACJXsltkh2Jnlib5JTGJpMGU=" @@ -21206,6 +25697,16 @@ license = [ ] homepage = "https://github.com/yangwenbo99/touying2video" +[toy-cv."0.1.0"] +url = "https://packages.typst.org/preview/toy-cv-0.1.0.tar.gz" +hash = "sha256-nU26DfZ3HvwhF0S6RBykDgQjaHGU2E0bi8zHFP1nkUw=" +typstDeps = [] +description = "✨ Colorful and elegant 2-column CV and cover letter template. Simple to use and adapt to your needs" +license = [ + "MIT-0", +] +homepage = "https://github.com/ToyHugs/toy-cv" + [tracl."0.6.1"] url = "https://packages.typst.org/preview/tracl-0.6.1.tar.gz" hash = "sha256-YdVxUtfyTrXQxgMuMm1Vju/Oi4cCaf/xAPy/n7rOrYk=" @@ -21268,6 +25769,36 @@ license = [ ] homepage = "https://github.com/coli-saar/tracl" +[transl."0.1.1"] +url = "https://packages.typst.org/preview/transl-0.1.1.tar.gz" +hash = "sha256-J2fZLflEpddplzgUsOxPyYuYHr+R7VetwkVJT7QXTiw=" +typstDeps = [] +description = "Easy and simple translations for words and expressions, with support for localization" +license = [ + "MIT-0", +] +homepage = "https://github.com/mayconfmelo/transl" + +[transl."0.1.0"] +url = "https://packages.typst.org/preview/transl-0.1.0.tar.gz" +hash = "sha256-ZTNCsWelFOHHPVLgNNKLI5g8o2scG34mkm1QEw3iWSw=" +typstDeps = [] +description = "Easy and simple translations for words and expressions, with support for localization" +license = [ + "MIT-0", +] +homepage = "https://github.com/mayconfmelo/transl" + +[treet."1.0.0"] +url = "https://packages.typst.org/preview/treet-1.0.0.tar.gz" +hash = "sha256-D2pntfQqe2yN1i+FNmz1iy5WmWanHcMF5UrIh8MiChA=" +typstDeps = [] +description = "Create tree lists easily" +license = [ + "MIT", +] +homepage = "https://github.com/8LWXpg/typst-treet" + [treet."0.1.1"] url = "https://packages.typst.org/preview/treet-0.1.1.tar.gz" hash = "sha256-tBOgW6NB5MAU+LHRAOHkRxq+vKpmkkh2vh/VnBbMEJ0=" @@ -21702,6 +26233,37 @@ license = [ "Unlicense", ] +[twig."0.1.0"] +url = "https://packages.typst.org/preview/twig-0.1.0.tar.gz" +hash = "sha256-H/N3bFJq0GdMFYtdBrF7ku4898SGqZMDdUxgP3w4qtc=" +typstDeps = [ + "cetz_0_4_0", +] +description = "Creates trees from lists using Cetz" +license = [ + "GPL-3.0-only", +] +homepage = "https://github.com/QuantumRange/twig" + +[tyipa."0.1.0"] +url = "https://packages.typst.org/preview/tyipa-0.1.0.tar.gz" +hash = "sha256-DYIL0JnmjvxNTFj5XFHYuWPrbcbp+R8vSSE6cx4gVtw=" +typstDeps = [] +description = "Write phonetic transcriptions using the IPA" +license = [ + "MIT", +] + +[tyniverse."0.2.3"] +url = "https://packages.typst.org/preview/tyniverse-0.2.3.tar.gz" +hash = "sha256-bOYQNeJ5XgAMdt3EwJsb3QRwrjyHnYhXmhz1gfT/fiE=" +typstDeps = [] +description = "A collection of templates for homeworks, cheatpapers and more" +license = [ + "MIT", +] +homepage = "https://github.com/Fr4nk1inCs/tyniverse" + [typ2anki."0.1.0"] url = "https://packages.typst.org/preview/typ2anki-0.1.0.tar.gz" hash = "sha256-J/BOFlowljl2P7FQVklS0YXlI0bf9XzWYZ/NwIZp1m8=" @@ -21814,6 +26376,16 @@ license = [ ] homepage = "https://github.com/remigerme/typst-polytechnique" +[typographix-polytechnique-slides."0.1.0"] +url = "https://packages.typst.org/preview/typographix-polytechnique-slides-0.1.0.tar.gz" +hash = "sha256-WTLeE7ShtnExt5X54pP04rvn6AHWwpoYJTm3b5HP92Q=" +typstDeps = [] +description = "A presentation slide template for Polytechnique students (from TypographiX" +license = [ + "MIT", +] +homepage = "https://github.com/remigerme/typst-polytechnique" + [typpuccino."0.1.0"] url = "https://packages.typst.org/preview/typpuccino-0.1.0.tar.gz" hash = "sha256-UgXOQCLOv27dB78K7m271A7HZkDyWi+LoR3uqxrEnH4=" @@ -21834,6 +26406,18 @@ license = [ ] homepage = "https://github.com/Glomzzz/typsite" +[typsium."0.3.0"] +url = "https://packages.typst.org/preview/typsium-0.3.0.tar.gz" +hash = "sha256-xIjBM7z34QJ8iTbc5LldXBkyee4r/Nie1hHy7A50b4s=" +typstDeps = [ + "elembic_1_1_0", +] +description = "Typeset chemical formulas and reactions" +license = [ + "MIT", +] +homepage = "https://github.com/Typsium/typsium" + [typsium."0.2.0"] url = "https://packages.typst.org/preview/typsium-0.2.0.tar.gz" hash = "sha256-6regfP95XRjL1cRahkIjTR0FM+z0bfaVAJFtOkN4oz8=" @@ -22003,6 +26587,43 @@ license = [ ] homepage = "https://github.com/ShapeLayer/ucpc-solutions__typst" +[ucph-nielsine-touying."0.1.1"] +url = "https://packages.typst.org/preview/ucph-nielsine-touying-0.1.1.tar.gz" +hash = "sha256-WkQME/KmiF9QlBoKmJWX/NEys+sM583sPEoP7qsYYRQ=" +typstDeps = [ + "theorion_0_3_3", + "touying_0_6_1", +] +description = "Slide template built on Touying for the University of Copenhagen" +license = [ + "MIT", +] +homepage = "https://github.com/jorgenhost/ucph-nielsine-touying" + +[ucph-nielsine-touying."0.1.0"] +url = "https://packages.typst.org/preview/ucph-nielsine-touying-0.1.0.tar.gz" +hash = "sha256-7YE6KZQjAIaV42cJpAyU5DYRlKLzhtlO/Vb7rnF2xFk=" +typstDeps = [ + "touying_0_6_1", +] +description = "Slide template built on Touying for the University of Copenhagen" +license = [ + "MIT", +] +homepage = "https://github.com/jorgenhost/ucph-nielsine-touying" + +[umbra."0.1.1"] +url = "https://packages.typst.org/preview/umbra-0.1.1.tar.gz" +hash = "sha256-jWwsmOcVIPdlYkTHHCkViz4NqPM8KjqfHnQUQZxgiPQ=" +typstDeps = [ + "suiji_0_3_0", +] +description = "Basic shadows for Typst" +license = [ + "MIT", +] +homepage = "https://github.com/davystrong/umbra" + [umbra."0.1.0"] url = "https://packages.typst.org/preview/umbra-0.1.0.tar.gz" hash = "sha256-DabsDQMs5r76fU9Jil2bgwDunZdcYJaYRNcbEQLrel0=" @@ -22578,6 +27199,16 @@ license = [ ] homepage = "https://github.com/pdcxs/unofficial-tyut-thesis" +[unofficial-ukim-thesis."0.1.0"] +url = "https://packages.typst.org/preview/unofficial-ukim-thesis-0.1.0.tar.gz" +hash = "sha256-D8YIx6C3FfZ87rfuJXXNbyYxNnQ3w82GDllLmCkNu8Q=" +typstDeps = [] +description = "Unofficial thesis style for the University of St. Cyril and Methodius in Skopje" +license = [ + "MIT", +] +homepage = "https://github.com/nikkelo/unofficial-ukim-thesis" + [untypsignia."0.1.1"] url = "https://packages.typst.org/preview/untypsignia-0.1.1.tar.gz" hash = "sha256-skdLt8VjBpWG4eWHArBgPnAxOPcknFrYHCNw7aeiBOE=" @@ -22741,6 +27372,26 @@ license = [ ] homepage = "https://github.com/bpkleer/typst-academicons" +[use-tabler-icons."0.15.0"] +url = "https://packages.typst.org/preview/use-tabler-icons-0.15.0.tar.gz" +hash = "sha256-NsBCnHiP99sxUp3jufF+QyhMeYxHwXsPzPXCmnntIg0=" +typstDeps = [] +description = "Tabler Icons for Typst using webfont" +license = [ + "MIT", +] +homepage = "https://github.com/zyf722/typst-tabler-icons" + +[use-tabler-icons."0.14.0"] +url = "https://packages.typst.org/preview/use-tabler-icons-0.14.0.tar.gz" +hash = "sha256-/wwxXUBVsJBiww5DfhbAUXd6dgfcGr4Wg/zMnICb1LA=" +typstDeps = [] +description = "Tabler Icons for Typst using webfont" +license = [ + "MIT", +] +homepage = "https://github.com/zyf722/typst-tabler-icons" + [use-tabler-icons."0.13.0"] url = "https://packages.typst.org/preview/use-tabler-icons-0.13.0.tar.gz" hash = "sha256-gVqEG2sGy2vJb8Vc45PTN2W6vfT/rVRvekrXtWxG+98=" @@ -23007,6 +27658,30 @@ license = [ ] homepage = "https://github.com/sardorml/vantage-typst" +[vartable."0.2.2"] +url = "https://packages.typst.org/preview/vartable-0.2.2.tar.gz" +hash = "sha256-suByQvM/FxOSZv50ww7+NOviuxXsqLEatJeWqrv3xcY=" +typstDeps = [ + "cetz_0_4_1", +] +description = "A simple package to make variation table" +license = [ + "MIT", +] +homepage = "https://github.com/Le-foucheur/Typst-VarTable" + +[vartable."0.2.1"] +url = "https://packages.typst.org/preview/vartable-0.2.1.tar.gz" +hash = "sha256-WU1N5jsAdyn0224Cs46c7klAdlcYr7mc7omILuTn668=" +typstDeps = [ + "cetz_0_4_1", +] +description = "A simple package to make variation table" +license = [ + "MIT", +] +homepage = "https://github.com/Le-foucheur/Typst-VarTable" + [vartable."0.2.0"] url = "https://packages.typst.org/preview/vartable-0.2.0.tar.gz" hash = "sha256-nPJw1lKOeCWb03tm4l5MBn8Se7nW8PGt4ELD/9wB+iE=" @@ -23097,6 +27772,26 @@ license = [ ] homepage = "https://github.com/elegaanz/vercanard" +[versatile-apa."7.1.4"] +url = "https://packages.typst.org/preview/versatile-apa-7.1.4.tar.gz" +hash = "sha256-Je3xSXgoaRqALJa+9n7nO5sszNnzI2scohZTQEWY4kE=" +typstDeps = [] +description = "Comprehensive APA 7th Edition Style Template for Typst, suitable for both student and professional papers" +license = [ + "MIT-0", +] +homepage = "https://github.com/jassielof/typst-templates" + +[versatile-apa."7.1.3"] +url = "https://packages.typst.org/preview/versatile-apa-7.1.3.tar.gz" +hash = "sha256-o7FPeu6sfuUV3k+ZW+JiSZnz3DxOuxKUebSz7kZhF9I=" +typstDeps = [] +description = "Comprehensive APA 7th Edition Style Template for Typst, suitable for both student and professional papers" +license = [ + "MIT-0", +] +homepage = "https://github.com/jassielof/typst-templates" + [versatile-apa."7.1.2"] url = "https://packages.typst.org/preview/versatile-apa-7.1.2.tar.gz" hash = "sha256-g0w9jFsBSyeCjVWGp4/Tu++4VQ5KqRWZt6v8zpDh5k8=" @@ -23256,6 +27951,55 @@ license = [ ] homepage = "https://github.com/ShinoYumi/typst-vlna/" +[volt-internship-ensea."0.1.2"] +url = "https://packages.typst.org/preview/volt-internship-ensea-0.1.2.tar.gz" +hash = "sha256-+i0DVS/3DG4ds6sutcMcO6IPiHgwfh2kMKaVns+irfE=" +typstDeps = [ + "glossy_0_8_0", + "hydra_0_6_2", +] +description = "Unofficial template for internship reports at ENSEA, a French engineering school" +license = [ + "MIT", +] +homepage = "https://github.com/Dawod-G/ENSEA_Typst-Template" + +[volt-internship-ensea."0.1.1"] +url = "https://packages.typst.org/preview/volt-internship-ensea-0.1.1.tar.gz" +hash = "sha256-hGd+Ta6yhLBkVtLvqefBGrj58uHvL0fKkxRah0WoO8s=" +typstDeps = [ + "glossy_0_8_0", + "hydra_0_6_2", +] +description = "Unofficial template for internship reports at ENSEA, a French engineering school" +license = [ + "MIT", +] +homepage = "https://github.com/Dawod-G/ENSEA_Typst-Template" + +[volt-internship-ensea."0.1.0"] +url = "https://packages.typst.org/preview/volt-internship-ensea-0.1.0.tar.gz" +hash = "sha256-dNTpyGRy4H7HET1K7dM4d6BX7FyWMOAuBhump5PwlmA=" +typstDeps = [ + "glossy_0_8_0", + "hydra_0_6_2", +] +description = "Unofficial Typst template for internship reports at ENSEA, a French engineering school" +license = [ + "MIT", +] +homepage = "https://github.com/Dawod-G/ENSEA_Typst-Template" + +[volt-lab-ensea."0.1.0"] +url = "https://packages.typst.org/preview/volt-lab-ensea-0.1.0.tar.gz" +hash = "sha256-WlKSxCRZJwuUoC6M9PJdJeNaWKYCy7lrqcEdh2YksBg=" +typstDeps = [] +description = "Unofficial Typst template for lab reports at ENSEA, a French engineering school" +license = [ + "MIT", +] +homepage = "https://github.com/Dawod-G/ENSEA_Typst-Template" + [vonsim."0.2.0"] url = "https://packages.typst.org/preview/vonsim-0.2.0.tar.gz" hash = "sha256-c/0A2Z8JkEbmQulQ5PkBMVfM8pzWHbhauyOMkZ9iPnc=" @@ -23330,6 +28074,19 @@ license = [ "MIT", ] +[wenyuan-campaign."0.1.2"] +url = "https://packages.typst.org/preview/wenyuan-campaign-0.1.2.tar.gz" +hash = "sha256-8cEG8eSoCFZYH/UqBYAcvz4dWCr1t1cpz8Bw6WiGPy4=" +typstDeps = [ + "droplet_0_3_1", + "tidy_0_4_3", +] +description = "Easily write DnD 5e style campaign documents" +license = [ + "Apache-2.0", +] +homepage = "https://github.com/yanwenywan/typst-packages/tree/master/wenyuan-campaign" + [wenyuan-campaign."0.1.1"] url = "https://packages.typst.org/preview/wenyuan-campaign-0.1.1.tar.gz" hash = "sha256-Hcf+rRsW5rw6giD5SjdkjLs0Gyl4ejA2CBd1xsNRfBA=" @@ -23411,6 +28168,16 @@ license = [ ] homepage = "https://github.com/ZaninDavide/wicked" +[wonderous-book."0.1.2"] +url = "https://packages.typst.org/preview/wonderous-book-0.1.2.tar.gz" +hash = "sha256-05BbnYMtnaHePyE72ZUr5GUWKdm8rnRdgD7PnDAwdUs=" +typstDeps = [] +description = "A fiction book template with running headers and serif typography" +license = [ + "MIT-0", +] +homepage = "https://github.com/typst/templates" + [wonderous-book."0.1.1"] url = "https://packages.typst.org/preview/wonderous-book-0.1.1.tar.gz" hash = "sha256-r4JxV3GBOJjX+7kYZUCeB/MlBGiKGu1Mqo5V0gb359c=" @@ -23431,6 +28198,18 @@ license = [ ] homepage = "https://github.com/typst/templates" +[wordometer."0.1.5"] +url = "https://packages.typst.org/preview/wordometer-0.1.5.tar.gz" +hash = "sha256-8641l2B26RMq4aNzNnFHjJeTzqH0JD/utjOHnn81RS8=" +typstDeps = [ + "tidy_0_4_3", +] +description = "Word counts and document statistics" +license = [ + "MIT", +] +homepage = "https://github.com/Jollywatt/typst-wordometer" + [wordometer."0.1.4"] url = "https://packages.typst.org/preview/wordometer-0.1.4.tar.gz" hash = "sha256-H3h8Dq2SZrRWwOGJkfYq/d4cz1hyZ3iQoExGZ1OyBok=" @@ -23521,6 +28300,42 @@ license = [ ] homepage = "https://github.com/ntjess/wrap-it" +[wut-thesis."0.1.1"] +url = "https://packages.typst.org/preview/wut-thesis-0.1.1.tar.gz" +hash = "sha256-cAIU5KyyPqwwjITWBx0hgMl/dzPXpYU+nC/N01hJ4MU=" +typstDeps = [ + "cheq_0_2_2", + "drafting_0_2_2", + "glossarium_0_5_8", + "hydra_0_6_1", + "linguify_0_4_2", + "lovelace_0_3_0", + "wrap-it_0_1_1", +] +description = "Official thesis template for the Warsaw University of Technology" +license = [ + "MIT-0", +] +homepage = "https://github.com/fuine/wut-thesis-typst" + +[wut-thesis."0.1.0"] +url = "https://packages.typst.org/preview/wut-thesis-0.1.0.tar.gz" +hash = "sha256-1Oc3LTtrWq6tZRhtjHNDz2jtrRq45vM8mqdu6I4mJ2Q=" +typstDeps = [ + "cheq_0_2_2", + "drafting_0_2_2", + "glossarium_0_5_7", + "hydra_0_6_1", + "linguify_0_4_2", + "lovelace_0_3_0", + "wrap-it_0_1_1", +] +description = "Official thesis template for the Warsaw University of Technology" +license = [ + "MIT-0", +] +homepage = "https://github.com/fuine/wut-thesis-typst" + [xarrow."0.3.1"] url = "https://packages.typst.org/preview/xarrow-0.3.1.tar.gz" hash = "sha256-5DdscbcplvUldzNiGpVCbutM23uVmm+zniXHM3ayN+E=" @@ -23571,6 +28386,16 @@ license = [ ] homepage = "https://codeberg.org/loutr/typst-xarrow/" +[xyznote."0.4.0"] +url = "https://packages.typst.org/preview/xyznote-0.4.0.tar.gz" +hash = "sha256-XTTZF60IxFdXkd3O9qMvR01PkNjgqLmRPVfYJNIP2ZY=" +typstDeps = [] +description = "Simple and Functional Typst Note Template" +license = [ + "GPL-3.0-only", +] +homepage = "https://github.com/wardenxyz/xyznote" + [xyznote."0.3.0"] url = "https://packages.typst.org/preview/xyznote-0.3.0.tar.gz" hash = "sha256-L0nzab7cGaw7/ZPUgWorAah/tBnitnAREpsZA4VB65w=" @@ -23642,6 +28467,16 @@ license = [ ] homepage = "https://github.com/0warning0error/typst-yats" +[yi."0.1.0"] +url = "https://packages.typst.org/preview/yi-0.1.0.tar.gz" +hash = "sha256-aqMg2N5/v9EUnJPxnKmeop33n3F57r99ARWSwgADStk=" +typstDeps = [] +description = "简单、快速地绘制卦象图 Draw Gua easily" +license = [ + "MIT", +] +homepage = "https://github.com/JWangL5/Yi-typst" + [yinsh-record."1.0.0"] url = "https://packages.typst.org/preview/yinsh-record-1.0.0.tar.gz" hash = "sha256-yQIzG8lsIla11JRKuP5hwnM4KET3hX553UraaUWLuYI=" @@ -23665,6 +28500,42 @@ license = [ ] homepage = "https://github.com/visika/yuan-resume" +[zap."0.4.0"] +url = "https://packages.typst.org/preview/zap-0.4.0.tar.gz" +hash = "sha256-UX6zBUjNEGrH+fDwRfYV8ROTpoQz06TJpPILelCD/eU=" +typstDeps = [ + "cetz_0_4_2", +] +description = "A package to draw amazing electronic circuits using CeTZ superpowers" +license = [ + "LGPL-3.0-or-later", +] +homepage = "https://github.com/l0uisgrange/zap" + +[zap."0.3.0"] +url = "https://packages.typst.org/preview/zap-0.3.0.tar.gz" +hash = "sha256-OesUnBYIIIPVL/08IE4ekhfOQAdrmCW6MTuaZCdXJPU=" +typstDeps = [ + "cetz_0_4_1", +] +description = "A package to draw amazing electronic circuits using CeTZ superpowers" +license = [ + "LGPL-3.0-or-later", +] +homepage = "https://github.com/l0uisgrange/zap" + +[zap."0.2.1"] +url = "https://packages.typst.org/preview/zap-0.2.1.tar.gz" +hash = "sha256-Iq8JjxAlzrIitSfobcijxRQNYBORRI5v0cF8Aob42Pk=" +typstDeps = [ + "cetz_0_4_0", +] +description = "A package to draw amazing electronic circuits using CeTZ superpowers" +license = [ + "LGPL-3.0-or-later", +] +homepage = "https://github.com/l0uisgrange/zap" + [zap."0.2.0"] url = "https://packages.typst.org/preview/zap-0.2.0.tar.gz" hash = "sha256-JpQv3gBoSOjYSfIi8eeCDllRCJIC7hFALoJvxUBs1QE=" @@ -23895,6 +28766,26 @@ license = [ ] homepage = "https://github.com/tomeichlersmith/zen-zine" +[zero."0.5.0"] +url = "https://packages.typst.org/preview/zero-0.5.0.tar.gz" +hash = "sha256-mvS4ZMl0XdpL9W0gn5C2iQhTQSjBDmiYzwTI36wBeIM=" +typstDeps = [] +description = "Advanced scientific number formatting" +license = [ + "MIT", +] +homepage = "https://github.com/Mc-Zen/zero" + +[zero."0.4.0"] +url = "https://packages.typst.org/preview/zero-0.4.0.tar.gz" +hash = "sha256-1XXifJ71lNdvoK0VmDJE6kcEjekeArmeXaM+m6VIJE8=" +typstDeps = [] +description = "Advanced scientific number formatting" +license = [ + "MIT", +] +homepage = "https://github.com/Mc-Zen/zero" + [zero."0.3.3"] url = "https://packages.typst.org/preview/zero-0.3.3.tar.gz" hash = "sha256-Th64GzjLyStvOax85IQXUpAuZxU3p3ZdAJDGsDzQEyg="