repo
stringlengths
26
115
file
stringlengths
54
212
language
stringclasses
2 values
license
stringclasses
16 values
content
stringlengths
19
1.07M
https://github.com/Karolinskis/KTU-typst
https://raw.githubusercontent.com/Karolinskis/KTU-typst/main/lib.typ
typst
#let apply_custom_figure_settings(body) = { show figure: it => block({ if it.kind == table { if it.has("caption") { show figure.caption: caption => { set align(left) set text(font: "Arial") [] if caption.numbering !=...
https://github.com/faria-s/CV
https://raw.githubusercontent.com/faria-s/CV/main/twentysecondcv.typ
typst
/* * Twenty Seconds Curriculum Vitae in Typst * Author: <NAME> * Date: 2023-08-04 * License: MIT (see included file LICENSE) */ #import "@preview/fontawesome:0.1.0": * #let headercolor = gray #let pblue = rgb("#0395DE") #let gray80 = rgb("#333333") // \color{black!80} #let sidecolor = rgb("#E7E7E7") #let mainblu...
https://github.com/DashieTM/ost-5semester
https://raw.githubusercontent.com/DashieTM/ost-5semester/main/blockchain/weeks/week11.typ
typst
#import "../../utils.typ": * #section("")
https://github.com/typst/packages
https://raw.githubusercontent.com/typst/packages/main/packages/preview/cetz-plot/0.1.0/src/plot/legend.typ
typst
Apache License 2.0
#import "/src/cetz.typ" #import cetz: draw, styles #import draw: group #import "mark.typ": draw-mark-shape #let default-style = ( orientation: ttb, default-position: "north-east", layer: 1, // Legend layer fill: rgb(255,255,255,200), // Legend background stroke: black, // Legend border padding: ....
https://github.com/RaphGL/ElectronicsFromBasics
https://raw.githubusercontent.com/RaphGL/ElectronicsFromBasics/main/DC/chap1/5_resistance.typ
typst
Other
#import "../../core/core.typ" === Resistance The circuit in the previous section is not a very practical one. In fact, it can be quite dangerous to build (directly connecting the poles of a voltage source together with a single piece of wire). The reason it is dangerous is because the magnitude of electric current ma...
https://github.com/Myriad-Dreamin/typst.ts
https://raw.githubusercontent.com/Myriad-Dreamin/typst.ts/main/fuzzers/corpora/layout/page-style_01.typ
typst
Apache License 2.0
#import "/contrib/templates/std-tests/preset.typ": * #show: test-page // Empty with styles and then pagebreak // Should result in two forest-colored pages. #set page(fill: forest) #pagebreak()
https://github.com/fenjalien/metro
https://raw.githubusercontent.com/fenjalien/metro/main/src/defs/units.typ
typst
Apache License 2.0
// Used to define kilogram #let gram = $g$ // SI units #let ampere = $A$ #let candela = $c d$ #let kelvin = $kelvin$ #let kilogram = $k#gram$ #let metre = $m$ #let meter = metre #let mole = $m o l$ #let second = $s$ // Derived units #let becquerel = $B q$ #let degreeCelsius = $degree.c$ #let coulomb = $C$ #let farad...
https://github.com/BeiyanYunyi/resume
https://raw.githubusercontent.com/BeiyanYunyi/resume/main/personalInfo.example.typ
typst
#let personalInfo = ( github: "YajuSenpai", phone: "+86 114 5141 9198", email: "<EMAIL>", // linkedin: "johndoe", //custom-1: (icon: "", text: "example", link: "https://example.com"), //gitlab: "mintyfrankie", // homepage: "blog.coat.com", //orcid: "0000-0000-0000-0000", //researchgate: "John-Doe", ...
https://github.com/taooceros/CV
https://raw.githubusercontent.com/taooceros/CV/main/modules_en/research.typ
typst
// Imports #import "@preview/brilliant-cv:2.0.2": cvSection, cvEntry #let metadata = toml("../metadata.toml") #let cvSection = cvSection.with(metadata: metadata) #let cvEntry = cvEntry.with(metadata: metadata) #cvSection("Research Experience") #cvEntry( title: [Advisor: <NAME>], society: [Research Intern], dat...
https://github.com/polarkac/MTG-Stories
https://raw.githubusercontent.com/polarkac/MTG-Stories/master/stories/051%20-%20March%20of%20the%20Machine/010_Eldraine%3A%20The%20Adventures%20of%20Rankle%2C%20Master%20of%20Love.typ
typst
#import "@local/mtgstory:0.2.0": conf #show: doc => conf( "Eldraine: The Adventures of Rankle, Master of Love", set_name: "March of the Machine", story_date: datetime(day: 22, month: 04, year: 2023), author: "<NAME>", doc ) Rankle swaggered into the clearing, his pockets stuffed with stones and mag...
https://github.com/a-kkiri/SimpleNote
https://raw.githubusercontent.com/a-kkiri/SimpleNote/main/content/chapter1.typ
typst
Apache License 2.0
#import "../template.typ": * = 模板说明 #link("https://github.com/a-kkiri/SimpleNote")[SimpleNote] #cite(<SimpleNote>) 修改自 #link("https://github.com/jskherman/jsk-lecnotes")[jsk-lecnotes],是一个简单的 Typst 模板。本模板主要适用于编写课程笔记,默认页边距为2.5cm,默认使用的中文字体为 Noto Sans CJK SC,英文字体为 Linux Libertine,字号为12pt(小四),你可以根据自己的需求进行更改,如需使用伪粗体或伪斜体,可以...
https://github.com/DamienFlury/summaries
https://raw.githubusercontent.com/DamienFlury/summaries/main/OOP2/main.typ
typst
#import "@preview/ctheorems:1.1.2": * #show: thmrules #let info = thmbox("info", "Info", fill: rgb("#eeeeff")).with(numbering: none) #set page(flipped: true, margin: 10pt, columns: 3) #set text(lang: "de", size: 7pt) #set par(justify: true) #show raw: set text(font: "Monaspace Neon") #set heading(numbering: "1.1") ...
https://github.com/Jollywatt/typst-fletcher
https://raw.githubusercontent.com/Jollywatt/typst-fletcher/master/src/marks.typ
typst
MIT License
#import "utils.typ": * #import "deps.typ": cetz #import cetz.draw #import "default-marks.typ": * #let MARK_REQUIRED_DEFAULTS = ( rev: false, flip: false, scale: 100%, extrude: (0,), tip-end: 0, tail-end: 0, tip-origin: 0, tail-origin: 0, ) /// For a given mark, determine where that the stroke should terminat...
https://github.com/mem-courses/calculus
https://raw.githubusercontent.com/mem-courses/calculus/main/homework-2/homework5.typ
typst
#import "../template.typ": * #show: project.with( course: "Calculus II", course_fullname: "Calculus (A) II", course_code: "821T0160", title: "Homework #5: 矢量与立体几何", authors: (( name: "<NAME>", email: "<EMAIL>", id: "#198" ),), semester: "Spring-Summer 2024", date: "April 3, 2024", ) #let pp = math.bold(...
https://github.com/typst-doc-cn/tutorial
https://raw.githubusercontent.com/typst-doc-cn/tutorial/main/typ/typst-meta/docs.typ
typst
Apache License 2.0
#let iterate-scope(env, scope, belongs) = { let p = (..scope.path, scope.name).join(".") scope.insert("belongs", belongs) env.scoped-items.insert(p, scope) if "scope" in scope { let belongs = (kind: "scope", name: scope.name) for c in scope.scope { env = iterate-scope(env, c, belongs) } ...
https://github.com/gongke6642/tuling
https://raw.githubusercontent.com/gongke6642/tuling/main/布局/pagebreak/pagebreak.typ
typst
= pagebreak 手动分页符。 不得在任何容器内使用。 == 例 #image("屏幕截图 2024-04-16 164734.png") #image("屏幕截图 2024-04-16 164844.png")
https://github.com/fenjalien/metro
https://raw.githubusercontent.com/fenjalien/metro/main/tests/qty/separate-uncertainty/test.typ
typst
Apache License 2.0
#import "/src/lib.typ": qty, metro-setup #set page(width: auto, height: auto) #qty(12.3, "kg", pm: 0.4) #qty(12.3, "kg", pm: 0.4, separate-uncertainty: "repeat") #qty(12.3, "kg", pm: 0.4, separate-uncertainty: "single")
https://github.com/typst/packages
https://raw.githubusercontent.com/typst/packages/main/packages/preview/mino/0.1.0/README.md
markdown
Apache License 2.0
# [Mino](https://github.com/Enter-tainer/mino) Render tetris [fumen](https://harddrop.com/fumen/) in typst! ![](mino.svg) ````typ #import "typst-package/lib.typ": decode-fumen, render-field // Uncomment the following line to use the mino from the official package registry // #import "@preview/mino:0.1.0": decode-fu...
https://github.com/typst/packages
https://raw.githubusercontent.com/typst/packages/main/packages/preview/jogs/0.1.0/examples/fib.typ
typst
Apache License 2.0
#set page(height: auto, width: auto, fill: black, margin: 1em) #set text(fill: white) #import "../lib.typ": * #show raw.where(lang: "jogs"): it => eval-js(it) ```jogs let a = {a: 0, c: 1, b: "123"} let res = [] function fib(n) { if (n < 2) return n return fib(n - 1) + fib(n - 2) } for (let i = 0; i < 10; i++) { ...
https://github.com/Myriad-Dreamin/tinymist
https://raw.githubusercontent.com/Myriad-Dreamin/tinymist/main/crates/tinymist-query/src/fixtures/call_info/builtin_poly.typ
typst
Apache License 2.0
#(/* position after */ rgb(255, 255, 255))
https://github.com/feiyangyy/Learning
https://raw.githubusercontent.com/feiyangyy/Learning/main/linear_algebra/线性齐次方程组.typ
typst
#set text( font: "New Computer Modern", size: 6pt ) #set page( paper: "a6", margin: (x: 1.8cm, y: 1.5cm), ) #set par( justify: true, leading: 0.52em, ) = 线性齐次方程组 常数项为0的方程组,称为齐次方程组,对应的增广矩阵的最后一列全为0,如: $ mat( a_1^0, a_1^1, ..., a_n^n 0; a_2^0, a_2^1, ..., a_2^n 0; a_r^0, a_r^1, ..., a_r^n 0; ) $ 显而易见$(0...
https://github.com/loqusion/typix
https://raw.githubusercontent.com/loqusion/typix/main/docs/recipes/using-typst-packages.md
markdown
MIT License
# Using Typst packages > If none of the advice on this page works for you, and there are no [open > issues][github-open-issues] related to your problem, feel free to [open an > issue][github-new-issue]. [github-new-issue]: https://github.com/loqusion/typix/issues/new?assignees=&labels=typst+packages&projects=&templat...
https://github.com/yasemitee/Teoria-Informazione-Trasmissione
https://raw.githubusercontent.com/yasemitee/Teoria-Informazione-Trasmissione/main/2023-11-07.typ
typst
= Derivanti dell'entropia == Entropia congiunta Siano $XX$ e $YY$ due variabili casuali con valori in insiemi finiti $Chi$ e $Y$, detta $p$ la loro distribuzione congiunta $p(x,y) = P(XX = x, YY = y)$, definiamo l'entropia congiunta $H(XX,YY)$ come $ H(XX,YY) = sum_(x in Chi) sum_(y in Y) p(x,y) log_2 1/ (p (x,y)) $ P...
https://github.com/VisualFP/docs
https://raw.githubusercontent.com/VisualFP/docs/main/SA/project_documentation/content/project_method.typ
typst
= Project Management Method Using Scrum for this project isn't an option since that would require a massive amount of meetings that don't make sense for a project with just two people. The waterfall model seems suitable since the project must be completed within a fixed timeframe. To account for the conceptual nature ...
https://github.com/CHHC-L/ciapo
https://raw.githubusercontent.com/CHHC-L/ciapo/master/examples/long-example-1/main.typ
typst
MIT License
#import "template.typ": diapo, transition, longpage, mcolor, bf, refpage #import "@preview/tablex:0.0.6": tablex, rowspanx, colspanx #show: diapo.with( title: "ENGR151 Final RC\nPart 4\nRevision Guide: e3r", author: ((name:"wtfisthis", email:"<EMAIL>"), (name:"mynameismrCCC", email:"<EMAIL>")), date: "2023...
https://github.com/typst/packages
https://raw.githubusercontent.com/typst/packages/main/packages/preview/unichar/0.1.0/ucd/block-1D00.typ
typst
Apache License 2.0
#let data = ( ("LATIN LETTER SMALL CAPITAL A", "Ll", 0), ("LATIN LETTER SMALL CAPITAL AE", "Ll", 0), ("LATIN SMALL LETTER TURNED AE", "Ll", 0), ("LATIN LETTER SMALL CAPITAL BARRED B", "Ll", 0), ("LATIN LETTER SMALL CAPITAL C", "Ll", 0), ("LATIN LETTER SMALL CAPITAL D", "Ll", 0), ("LATIN LETTER SMALL CAPIT...
https://github.com/YunkaiZhang233/a-level-further-maths-topic-questions-david-game
https://raw.githubusercontent.com/YunkaiZhang233/a-level-further-maths-topic-questions-david-game/main/template.typ
typst
#let problem_counter = counter("problem") #let setup_doc = { set enum(numbering: "a)") set heading(numbering: "1.1.") outline() pagebreak(weak: false) problem_counter.update(0) } #let prob(source, body) = { // let current_problem = problem_counter.step() block(fill:rgb(250, 255, 250), wi...
https://github.com/YouXam/kobe_numbers
https://raw.githubusercontent.com/YouXam/kobe_numbers/main/main.typ
typst
MIT License
#import "./kobe_numbers.typ": kobe_numbers #show: kobe_numbers #let width = 15cm #set page(height: width, width: width, margin: 0.5in) #set par(justify: true, leading: 4em) 你的素养很差,我现在每天玩原神都能赚150原石,每个月差不多5000原石的收入, 也就是现实生活中每个月5000美元的收入水平,换算过来最少也30000人民币,虽然我只有14岁,但是已经超越了中国绝大多数人(包括你)
https://github.com/ludwig-austermann/typst-din-5008-letter
https://raw.githubusercontent.com/ludwig-austermann/typst-din-5008-letter/main/letter.typ
typst
MIT License
#import "lib/default-blocks.typ" #import "lib/helpers.typ" #import "lib/envelope.typ" /// A convinience function to provide styling options with defaults. #let letter-styling( theme-color: navy, text-params: (size: 12pt, font: "Source Sans Pro"), page-margin-right: ...
https://github.com/TypstApp-team/typst
https://raw.githubusercontent.com/TypstApp-team/typst/master/tests/typ/layout/pagebreak-weak.typ
typst
Apache License 2.0
// Test page breaks on basically empty pages. --- // After place // Should result in three pages. First #pagebreak(weak: true) #place(right)[placed A] #pagebreak(weak: true) Third --- // After only ignorables & invisibles // Should result in two pages. First #pagebreak(weak: true) #counter(page).update(1) #metadata("...
https://github.com/505000677/Apply4Job
https://raw.githubusercontent.com/505000677/Apply4Job/main/resumeEN.typ
typst
#import "chicv.typ": * #show: chicv = <NAME> #fa[#envelope] <EMAIL> | #fa[#github] #link("https://github.com/505000677")[github.com/505000677] | == Education Background #cventry( tl: [*University of Pittsburgh*, USA], tr: [2023/08 - 2025/05 (Expected)], bl: [Master of Science in Computer Science], br: [Pitt...
https://github.com/Myriad-Dreamin/typst.ts
https://raw.githubusercontent.com/Myriad-Dreamin/typst.ts/main/fuzzers/corpora/math/cancel_04.typ
typst
Apache License 2.0
#import "/contrib/templates/std-tests/preset.typ": * #show: test-page // Resized and styled #set page(width: 200pt, height: auto) $a + cancel(x, length: #200%) - cancel(x, length: #50%, stroke: #(red + 1.1pt))$ $ b + cancel(x, length: #150%) - cancel(a + b + c, length: #50%, stroke: #(blue + 1.2pt)) $
https://github.com/liuzhuan/reading-list
https://raw.githubusercontent.com/liuzhuan/reading-list/master/books/deno-manual.md
markdown
# Deno Manual ## 项目状态/免责声明 Deno 目前正处于原型开发阶段,不能用于正式项目。(2020-01-28) API 可能随时会变,发现 Bug 可以[提交 issue][2]。[v1.0][3] 正在紧锣密鼓的进行中,但尚未确定上线时间。 ## 介绍 Deno 是一个 JavaScript/TypeScript 运行时,默认开启安全选项,并且有很棒的开发体验。 它基于 V8, Rust 和 [Tokio][4] 构建。 > Tokio is the asynchronous run-time for the Rust programming language. ### 亮点 - 默认开启安全...
https://github.com/veilkev/jvvslead
https://raw.githubusercontent.com/veilkev/jvvslead/Typst/files/5_operators.typ
typst
#import "../sys/packages.typ": * #import "../sys/sys.typ": * #import "../sys/header.typ": * #v(170pt) #set text(12pt) = Operators #note[ Operators are 3-digit numbers used to uniquely identify a partner, register, or entity. ] #v(10pt) #subhead("Registers") // With content. #columns(8)[ #rect[ #align(c...
https://github.com/maxlambertini/troika-srd-typst
https://raw.githubusercontent.com/maxlambertini/troika-srd-typst/main/chap06.typ
typst
#import "@preview/tablex:0.0.6": tablex, cellx #let chap06_title=[= Tables <tables> ] #let chap06=[ #columns(2, gutter: 6mm, [ === Melee Weapons <melee-weapons> #align(center)[#tablex( stroke: 0.1pt, auto-vlines: false, columns: 8, header-rows: 1, align: (col, row) => (auto,auto,auto,auto,auto,auto,auto,aut...
https://github.com/xiaodong-hu/typst-note-template
https://raw.githubusercontent.com/xiaodong-hu/typst-note-template/main/README.md
markdown
MIT License
# Example Usage ```typst #import "./note_template.typ": * #show: document => note( title: [Notes for blablabla], authors: ( // array to support multiple authors ( name: [author one], affiliations: (1,) // array to support multiple affiliations ), ( name: [author two], affiliati...
https://github.com/TJ-CSCCG/tongji-slides-typst
https://raw.githubusercontent.com/TJ-CSCCG/tongji-slides-typst/main/README-EN.md
markdown
MIT License
# tongji-slides-typst :page_facing_up: Tongji slides template | Typst 中文 | [English](README-EN.md) > [!CAUTION] > Since the Typst project is still in the development stage and support for some features is not perfect, there may be some issues with this template. If you encounter problems while using it, please feel f...
https://github.com/TGM-HIT/typst-thesis-workshop
https://raw.githubusercontent.com/TGM-HIT/typst-thesis-workshop/main/slides/typst-workshop.typ
typst
#import "@preview/touying:0.5.2": * #import "theme.typ": * #import "@preview/tiaoma:0.2.0" #import "utils.typ": * #import "assets/mod.typ" as assets #set document(date: none) #show: metropolis-theme.with( aspect-ratio: "16-9", config-info( title: [ Diplomarbeit schreiben mit Typst #h(1fr) ...
https://github.com/typst/packages
https://raw.githubusercontent.com/typst/packages/main/packages/preview/unichar/0.1.0/ucd/block-DB80.typ
typst
Apache License 2.0
#let data = ( "0": ("<Private Use High Surrogate, First>", "Cs", 0), "7f": ("<Private Use High Surrogate, Last>", "Cs", 0), )
https://github.com/jneug/schule-typst
https://raw.githubusercontent.com/jneug/schule-typst/main/src/themes/classic.typ
typst
MIT License
/********************************\ * Variables and some functions * * for setting a common theme * \********************************/ #let typst-text = text // General colors #let primary = luma(20%) #let secondary = luma(50%) #let muted = luma(88%) // General backgrounds #let bg = ( primary: primary.lighten(9...
https://github.com/LDemetrios/Typst4k
https://raw.githubusercontent.com/LDemetrios/Typst4k/master/src/test/resources/suite/math/text.typ
typst
// Test that setting font features in math.equation has an effect. --- math-font-fallback --- // Test font fallback. $ よ and 🏳️‍🌈 $ --- math-text-color --- // Test text properties. $text(#red, "time"^2) + sqrt("place")$ --- math-font-features --- $ nothing $ $ "hi ∅ hey" $ $ sum_(i in NN) 1 + i $ #show math.equati...
https://github.com/polarkac/MTG-Stories
https://raw.githubusercontent.com/polarkac/MTG-Stories/master/stories/033%20-%20Rivals%20of%20Ixalan/001_The%20Flood.typ
typst
#import "@local/mtgstory:0.2.0": conf #show: doc => conf( "The Flood", set_name: "Rivals of Ixalan", story_date: datetime(day: 10, month: 01, year: 2018), author: "<NAME>, <NAME> & <NAME>", doc ) = KUMENA Shaper Kumena dashed through the undergrowth, his heart pounding. He was barely using his mag...
https://github.com/ClazyChen/Table-Tennis-Rankings
https://raw.githubusercontent.com/ClazyChen/Table-Tennis-Rankings/main/history/2006/WS-06.typ
typst
#set text(font: ("Courier New", "NSimSun")) #figure( caption: "Women's Singles (1 - 32)", table( columns: 4, [Ranking], [Player], [Country/Region], [Rating], [1], [ZHANG Yining], [CHN], [3019], [2], [GUO Yue], [CHN], [2669], [3], [GUO Yan], [CHN], [2641], [4], [LI Xiaoxia], [C...
https://github.com/tingerrr/typst-test
https://raw.githubusercontent.com/tingerrr/typst-test/main/docs/book/src/quickstart/install.md
markdown
MIT License
# Installation To install `typst-test` on your PC, you must, for the time being, compile it from source. Once `typst-test` reaches 0.1.0, this restriction will be lifted and each release will provide precompiled binaries for major operating systems (Windows, Linux and macOS). ## Installation From Source To install `ty...
https://github.com/coljac/toki-pona-poster
https://raw.githubusercontent.com/coljac/toki-pona-poster/main/README.md
markdown
The Unlicense
# My poster ![Pic of poster](pic.png) Typst project [here](https://typst.app/project/rotSbWKUrjSv3YlKKOlRnv) For printing and putting on my wall. This poster summarizes the 120 words in the core language [book](https://www.tokipona.org/), "Toki Pona: The language of Good" by Sonja Lang. The poster is made with [Typ...
https://github.com/zenor0/FZU-report-typst-template
https://raw.githubusercontent.com/zenor0/FZU-report-typst-template/main/fzu-report/parts/abstract-report-fn.typ
typst
MIT License
#import "../utils/fonts.typ": 字体, 字号 #let abstract-conf( cnabstract: none, cnkeywords: none, enabstract: none, enkeywords: none, ) = { // 摘要使用罗马字符的页码 set page(numbering: "I", number-align: center) counter(page).update(1) set text(font: 字体.宋体, size: 字号.小四) set par(first-line-indent: 2em, leading: 1...
https://github.com/TypstApp-team/typst
https://raw.githubusercontent.com/TypstApp-team/typst/master/tests/typ/bugs/clamp-panic.typ
typst
Apache License 2.0
#set page(height: 20pt, margin: 0pt) #v(22pt) #block(fill: red, width: 100%, height: 10pt, radius: 4pt)
https://github.com/sysu/better-thesis
https://raw.githubusercontent.com/sysu/better-thesis/main/.gitlab/merge_request_templates/release.md
markdown
MIT License
## 发布版本 这是一个发版新版本的 Merge Request,请确认已经完成以下操作: - [ ] 通过 `git cliff --bumped-version` 命令生成新版本号 `$BUMPED_VERSION`: ```sh BUMPED_VERSION=$(git cliff --bumped-version) ``` - [ ] 已更新 `typst.toml` 的版本为 `$BUMPED_VERSION`, 并添加到最后的提交中: ```sh # Powershell # sd 'version = ".*"' "version = `"$BUMPED_VERSION`...
https://github.com/SaifOwleN/resume
https://raw.githubusercontent.com/SaifOwleN/resume/master/resume.typ
typst
#import "./temp.typ": * #show: resume.with( author: "<NAME>-<NAME>", position:"Software Developer " , location: "6th of October, Giza", contacts: ( [#link("mailto:<EMAIL>")[Email]], [#link("https://saifowlen.github.io/Portfolio/")[Website]], [#link("https://github.com/saifowlen")[GitHub]], [#lin...
https://github.com/DieracDelta/presentations
https://raw.githubusercontent.com/DieracDelta/presentations/master/07_12_24/main.typ
typst
#import "polylux/polylux.typ": * #import themes.metropolis: * #import "common.typ": * #show: metropolis-theme.with( footer: [#logic.logical-slide.display() / #utils.last-slide-number] ) #set text(font: font, weight: wt, size: 25pt) #show math.equation: set text(font: "Fira Math") #set strong(delta: 100) #set par(ju...
https://github.com/QijingLi/resume-template-in-typst
https://raw.githubusercontent.com/QijingLi/resume-template-in-typst/main/README.md
markdown
MIT License
## Typst template for multi-page resume [Typst](https://github.com/typst/typst?tab=readme-ov-file#example) is as easy to use as Markdown and as powerful as LaTeX. Built it with [Bare-bones Typst CV](https://github.com/caffeinatedgaze/bare-bones-cv) as a baseline and edited heavily to fit my needs. This template was ...
https://github.com/lucannez64/Notes
https://raw.githubusercontent.com/lucannez64/Notes/master/Tangent%20plane.typ
typst
#import "template.typ": * // Take a look at the file `template.typ` in the file panel // to customize this template and discover how it works. #show: project.with( title: "Tangent plane", authors: ( "<NAME>", ), date: "30 Octobre, 2023", ) #set heading(numbering: "1.1.") = Tangent Plane <tangent-plane> =...
https://github.com/kdog3682/mathematical
https://raw.githubusercontent.com/kdog3682/mathematical/main/0.1.0/src/examples/fletcher-cetz.typ
typst
#set page(width: auto, height: auto) #import "@preview/fletcher:0.5.0" as fletcher: diagram, node, edge, cetz #let canvas-length = 1cm #let circ(p) = { cetz.draw.circle(p, radius: 0.25/4, fill: black) } #let higher(p) = { (p.at(0), p.at(1) + 0.2) } #let rectangle(w, h) = { let a = (0, 0) let b = (0, h) let ...
https://github.com/LDemetrios/Typst4k
https://raw.githubusercontent.com/LDemetrios/Typst4k/master/src/test/resources/suite/introspection/here.typ
typst
--- here-position --- // Test `context` + `here`. #context test(here().position().y, 10pt)
https://github.com/Critik-V/resume-tmpl-typst
https://raw.githubusercontent.com/Critik-V/resume-tmpl-typst/main/README.md
markdown
MIT License
# DESCRIPTION This project provides a customizable resume template written in the Typst language, designed for generating high-quality PDFs. Leveraging the Typst compiler, the template allows users to easily create professional resumes tailored to their needs. ![resume example](example.jpg) ## Project Structure - `...
https://github.com/r4ai/typst-code-info
https://raw.githubusercontent.com/r4ai/typst-code-info/main/tests/fixtures/code-block.typ
typst
MIT License
#import "../../plugin.typ": init-code-info, code-info, parse-diff-code #show: init-code-info.with() #code-info( caption: [code block with line numbers], show-line-numbers: true, ) ```rust pub fn add(a: i32, b: i32) -> i32 { a + b } ``` #code-info( diff: true, show-line-numbers: true, highlighted-lines:...
https://github.com/rickysixx/unimore-informatica
https://raw.githubusercontent.com/rickysixx/unimore-informatica/main/cyber-physical-security/riassunto_cpsec.typ
typst
#set par(leading: 0.55em, justify: true, linebreaks: "optimized") #set text(font: "New Computer Modern", lang: "en") #set heading(numbering: "1. ") #show raw: set text(font: "Courier New", size: 11pt) #show raw.where(block: false): box.with( fill: luma(240), inset: (x: 3pt, y: 0pt), outset: (y: 3pt), radius: 2p...
https://github.com/Starlight0798/typst-nku-lab-template
https://raw.githubusercontent.com/Starlight0798/typst-nku-lab-template/main/demo.typ
typst
MIT License
#import "template.typ": * #import "@preview/treet:0.1.1": * #import "@preview/iconic-salmon-fa:1.0.0": * #import "@preview/tablex:0.0.8": tablex, rowspanx, colspanx #import "@preview/pinit:0.1.4": * #import "@preview/colorful-boxes:1.3.1": * #import "@preview/showybox:2.0.1": * #import "@preview/conchord:0.2.0": * #imp...
https://github.com/Skimmeroni/Appunti
https://raw.githubusercontent.com/Skimmeroni/Appunti/main/Metodi%20Algebrici/Codici/Sindrome.typ
typst
Creative Commons Zero v1.0 Universal
#import "../Metodi_defs.typ": * Sia $C$ un codice lineare in $ZZ_(p)^(n)$ di dimensione $k$, e sia $H$ una matrice di controllo per $C$. Dato un vettore $x in ZZ_(p)^(n)$, il vettore $s = x(H^(t)) in ZZ_(p)^(n − k)$ viene detta *sindrome* di $x$. Si noti come se il vettore $x$ ha per sindrome il vettore nullo, si ric...
https://github.com/csimide/cuti
https://raw.githubusercontent.com/csimide/cuti/master/README.md
markdown
MIT License
# Cuti Cuti (/kjuːti/) is a package that simulates fake bold / fake italic. This package is typically used on fonts that do not have a `bold` weight, such as "SimSun". ## Usage Please refer to the [English Demo & Doc](./demo-and-doc/demo-and-doc.pdf) located in the `demo-and-doc` directory for details. 本 Package 提供...
https://github.com/jonaspleyer/peace-of-posters
https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/main/boxes.typ
typst
MIT License
#import "themes.typ": * #import "layouts.typ": * #let _calculate-width(b1, b2) = { // Get positions and width of box let p1 = b1.location().position() let p2 = b2.location().position() let width = p2.at("x") - p1.at("x") width } #let _calculate-vertical-distance(current-position, box, spacing) = { let p =...
https://github.com/alberto-lazari/computer-science
https://raw.githubusercontent.com/alberto-lazari/computer-science/main/type-theory/theory-exercises/common.typ
typst
#import "typst-prooftree/prooftree.typ": * #let prooftree = prooftree.with(label: (padding: 0.3em)) #let pi-enum(list) = { set enum(full: true, numbering: (..nums) => { let num = nums.pos() .map(str) .join[.] $pi_#num)$ }) list } #let a-enum(list) = { set enum(number...
https://github.com/horaoen/note
https://raw.githubusercontent.com/horaoen/note/main/8gu.typ
typst
Apache License 2.0
#import "./typstempl/note.typ": note #show: doc => note( title: "Java基础", doc ) = 一、Java和C++主要区别有哪些?各有哪些优缺点? == Java和C++分别代表了两种类型的语言: + C++是编译型语言(首先将源代码编译生成机器语言,再由机器运行机器码),执行速度快、效率高;依赖编译器、跨平台性差些。 + Java是解释型语言(源代码不是直接翻译成机器语言,而是先翻译成中间代码,再由解释器对中间代码进行解释运行。),执行速度慢、效率低;依赖解释器、跨平台性好。 PS:也有人说Java是半编译、半解释型语言。Java 编译器(java...
https://github.com/gabrielluizep/typst-ifsc
https://raw.githubusercontent.com/gabrielluizep/typst-ifsc/main/examples/assignment.example.typ
typst
Creative Commons Zero v1.0 Universal
#import "../templates/assignment.typ": *
https://github.com/jgm/typst-hs
https://raw.githubusercontent.com/jgm/typst-hs/main/test/typ/compiler/recursion-01.typ
typst
Other
// Test with unnamed function. // Error: 17-18 unknown variable: f #let f = (n) => f(n - 1) #f(10)
https://github.com/CarloSchafflik12/typst-ez-today
https://raw.githubusercontent.com/CarloSchafflik12/typst-ez-today/main/examples/example.typ
typst
MIT License
#import "../ez-today.typ" // Default output #ez-today.today() // Custom format with English months #ez-today.today(lang: "en", format: "M-d-Y") // Defining some custom names #let my-months = ("Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec") // Get current date with custom names #ez...
https://github.com/gumelarme/nuist-master-thesis-proposal
https://raw.githubusercontent.com/gumelarme/nuist-master-thesis-proposal/main/pages/notes.typ
typst
#import "/strings/zh.typ" as lang #box(width: 100%)[ #set text(size: 1.3em) #set align(center) = #lang.notes-title ] #v(2em) #lang.notes-content #pagebreak()
https://github.com/BeiyanYunyi/resume
https://raw.githubusercontent.com/BeiyanYunyi/resume/main/metadata.typ
typst
// NOTICE: Copy this file to your root folder. #import "./personalInfo.typ": * /* Personal Information */ #let firstName = "北雁云依" #let lastName = "Doe" /* Language-specific */ // Add your own languages while the keys must match the varLanguage variable #let headerQuoteInternational = ( "": [Experienced Data Analy...
https://github.com/bkorecic/enunciado-facil-fcfm
https://raw.githubusercontent.com/bkorecic/enunciado-facil-fcfm/main/lib/departamentos.typ
typst
MIT License
#let adh = ( nombre: "Área de Humanidades", logo: move(dy: 5pt, image("logos/adh.svg", height: 50pt)), ) #let das = ( nombre: "Departamento de Astronomía", logo: move(dy: 5pt, image("logos/das.svg", height: 50pt)), ) #let dcc = ( nombre: "Departamento de Ciencias de la Computación", logo: move...
https://github.com/Kasci/LiturgicalBooks
https://raw.githubusercontent.com/Kasci/LiturgicalBooks/master/CSL_old/oktoich/0_all/1hlas.typ
typst
#import "/styleMenlive.typ": * #import "/CSL/texts.typ": * = #translation.at("HLAS") 1 #import "../Hlas1/0_Nedela.typ" as Ne: * #import "../Hlas1/1_Pondelok.typ" as Po: * #import "../Hlas1/2_Utorok.typ" as Ut: * #import "../Hlas1/3_Streda.typ" as Sr: * #import "../Hlas1/4_Stvrtok.typ" as St: * #import "../Hlas1/5_Pia...
https://github.com/HernandoR/lz-brilliant-cv
https://raw.githubusercontent.com/HernandoR/lz-brilliant-cv/main/modules/skills.typ
typst
Apache License 2.0
#import "../brilliant-CV/template.typ": * #cvSection("Skills") #cvSkill(..languageSwitch(( "en":( type: [Languages], info: [English - Professional fluent #hBar() Mandarin - Native] ), "zh":( type: [Languages], info: [英语 - 专业流利 #hBar() 中文 - 母语] ) ))) #cvSkill(..languageSwitch(( "en":( ty...
https://github.com/kotfind/hse-se-2-notes
https://raw.githubusercontent.com/kotfind/hse-se-2-notes/master/os/lectures/2024-10-21.typ
typst
#import "/utils/math.typ": * == Функции ОС и Hardware - Отображение логического адресного пространства процесса на физическое адресное пространство - Распределение физической памяти между конкурирующими процессами - Контроль доступа к адресным пространствам процессов - Выгрузка процессов (целиком или частично) во вн...
https://github.com/Toniolo-Marco/git-for-dummies
https://raw.githubusercontent.com/Toniolo-Marco/git-for-dummies/main/slides/advanced/interactive-staging.typ
typst
#import "@preview/touying:0.5.2": * #import themes.university: * #import "@preview/numbly:0.1.0": numbly #import "@preview/fletcher:0.5.1" as fletcher: node, edge #let fletcher-diagram = touying-reducer.with(reduce: fletcher.diagram, cover: fletcher.hide) #import "/src/components/gh-button.typ": gh_button #import "/s...
https://github.com/typst/packages
https://raw.githubusercontent.com/typst/packages/main/packages/preview/note-me/0.1.1/example.typ
typst
Apache License 2.0
// Import from @preview namespace is suggested // #import "@preview/note-me:0.1.1": * // Import from @local namespace is only for debugging purpose #import "@local/note-me:0.1.1": * #note[ Highlights information that users should take into account, even when skimming. ] #tip[ Optional information to help a user be m...
https://github.com/SWATEngineering/Docs
https://raw.githubusercontent.com/SWATEngineering/Docs/main/src/2_RTB/PianoDiProgetto/meta.typ
typst
MIT License
#let title = "Piano di Progetto"
https://github.com/Jollywatt/typst-fletcher
https://raw.githubusercontent.com/Jollywatt/typst-fletcher/master/tests/mark-math-mode/test.typ
typst
MIT License
#set page(width: auto, height: auto, margin: 1em) #import "/src/exports.typ" as fletcher: diagram, node, edge #table( columns: 4, align: horizon, [Math], [Unicode], [Mark], [Diagram], ..( $->$, $-->$, $<-$, $<->$, $<-->$, $->>$, $<<-$, $>->$, $<-<$, $=>$, $==>$, $<==$, $<=>$, $<==>$, $|->$, $|=>$, $~>$...
https://github.com/Kasci/LiturgicalBooks
https://raw.githubusercontent.com/Kasci/LiturgicalBooks/master/CSL_old/minea/0_vseob/02_ProrokJeden.typ
typst
#let V = ( "HV": ( ("", 4, "Zvannyj svýše", "Iže zarjú bohonačálňijšaho sijánija priím, umá čistotóju, i božéstvennych slovés provozvístnik i proznámenateľ, i prorok božéstvennyj byv, ustá bohodvížimaja javílsja jesí Dúcha, jáže ot Neho tebí pokazújemaja propovíduja, í skazúja vsim jazýkom dajémoje spasén...
https://github.com/LeoColomb/dotdocs
https://raw.githubusercontent.com/LeoColomb/dotdocs/main/packages/leocolomb/cv/1.0.0/template/main.typ
typst
MIT License
#import "@leocolomb/cv:1.0.0": template, term, date #show: template.with( name: [<NAME>], links: ( (name: "home", display: "Earth, ALL"), (name: "email", link: "mailto:<EMAIL>"), (name: "phone", link: "tel:+AB 123 456 789"), (name: "website", link: "https://example.com/", display: "example.com"), ...
https://github.com/tingerrr/typst-test
https://raw.githubusercontent.com/tingerrr/typst-test/main/README.md
markdown
MIT License
# typst test `typst-test` is a test runner for [Typst] projects. It helps you worry less about regressions and speeds up your development. ## Features Out of the box `typst-test` supports the following features: - locate the project it is invoked in - collect and manage test scripts and references - compile and run te...
https://github.com/polarkac/MTG-Stories
https://raw.githubusercontent.com/polarkac/MTG-Stories/master/stories/052_March%20of%20the%20Machine%3A%20The%20Aftermath.typ
typst
#import "@local/mtgset:0.1.0": conf #show: doc => conf("March of the Machine: The Aftermath", doc) #include "./052 - March of the Machine: The Aftermath/001_She Who Breaks the World.typ" #include "./052 - March of the Machine: The Aftermath/002_Beyond Repair.typ"
https://github.com/jgm/typst-hs
https://raw.githubusercontent.com/jgm/typst-hs/main/test/typ/compiler/label-04.typ
typst
Other
// Test that label ignores parbreak. #show <hide>: none _Hidden_ <hide> _Hidden_ <hide> _Visible_
https://github.com/donabe8898/typst-slide
https://raw.githubusercontent.com/donabe8898/typst-slide/main/test/main.typ
typst
MIT License
#set text(font: "0xProto Nerd Font",weight: "light", size: 18pt) 🦀
https://github.com/Myriad-Dreamin/tinymist
https://raw.githubusercontent.com/Myriad-Dreamin/tinymist/main/crates/tinymist-query/src/fixtures/completion/base.typ
typst
Apache License 2.0
// contains: aa,aab,aac,aabc #let aa() = 1; #let aab() = 1; #let aac() = 1; #let aabc() = 1; #aac(/* range -2..0 */);
https://github.com/msakuta/typst-test
https://raw.githubusercontent.com/msakuta/typst-test/master/README.md
markdown
# typst-test A test repository to store [typst](https://typst.app/) source code examples and its products. Check an example output PDFs: * [Euler-Lagrange equation](https://github.com/msakuta/typst-test/blob/gh-pages/euler-lagrange.pdf), ([source](euler-lagrange.typ)) * [Neural Networks](https://github.com/msakuta/ty...
https://github.com/OrangeX4/vscode-typst-sync
https://raw.githubusercontent.com/OrangeX4/vscode-typst-sync/main/CHANGELOG.md
markdown
MIT License
# Change Log ### 0.2.0 - add command `Import Typst Package` - add command `Import Typst Local Package` - add command `Create Typst Local Package` - add command `Open Typst Local Package` - add command `Push Typst Repo` - add command `Pull Typst Repo` - add command `Typst Sync`
https://github.com/Kasci/LiturgicalBooks
https://raw.githubusercontent.com/Kasci/LiturgicalBooks/master/CSL_old/oktoich/Hlas5/2_Utorok.typ
typst
#let V = ( "HV": ( ("","Rádujsja póstnikom","Uvý mňí prohňívavšemu ťá, mílostivaho Bóha mojehó i Hóspoda! Kolíždy obiščáchsja pokájatisja Christé, i lóž obritóchsja nesmýslennyj! Pérvuju úbo kreščénija okaľách odéždu, zavít že mój, íže k tebí, ostávich: i vtoróje sijé páki zaviščánije, jéže ispovídach tí pred ánh...
https://github.com/goshakowska/Typstdiff
https://raw.githubusercontent.com/goshakowska/Typstdiff/main/tests/test_working_types/sub_script/sub_script_deleted.typ
typst
First Normal text Second#sub[second sub text]
https://github.com/katamyra/Notes
https://raw.githubusercontent.com/katamyra/Notes/main/Compiled%20School%20Notes/CS1332/Modules/Trees.typ
typst
#import "../../..//template.typ": * #import "@preview/syntree:0.2.0": syntree = Trees Trees are the first *non linear* data structure that we look at. #note[ *Characteristics of Trees* + No cycles, so you can't reach a node using itself + Highly recursive + Usually implemented with linked lists rather tha...
https://github.com/joshuabeny1999/unisg-thesis-template-typst
https://raw.githubusercontent.com/joshuabeny1999/unisg-thesis-template-typst/main/content/02_content.typ
typst
Other
= Heading 1 == Heading 2 === Heading 3 ==== Heading 4
https://github.com/lxl66566/my-college-files
https://raw.githubusercontent.com/lxl66566/my-college-files/main/信息科学与工程学院/算法导论/树.typ
typst
The Unlicense
#import "../template.typ": * #import "@preview/algorithmic:0.1.0" #import algorithmic: algorithm #show: project.with( title: "2", authors: ( "absolutex", ) ) = 2 树 // == 需要为数据库构建range index(区域索引)。该区域索引要求:(1)单次插入时间低于O(n),以满足Web程序的高负载特性;(2)能够快速获得index里的最大值、最小值,即这两个操作均需小于O(n)的计算复杂度。假如采用了习题2里的数据结构,请问插入的算法复杂度是 ...
https://github.com/francescoo22/masters-thesis
https://raw.githubusercontent.com/francescoo22/masters-thesis/main/chapters/4-Annotations-Kotlin.typ
typst
#pagebreak(to:"odd") = Uniqueness in Kotlin<cap:annotations-kt> This chapter introduces a uniqueness system for Kotlin that takes inspiration from the systems described in @cap:control-alias-unique. The following subsections provide an overview of this system, with formal rules defined in @cap:annotation-system. == O...
https://github.com/duskmoon314/THU_AMA
https://raw.githubusercontent.com/duskmoon314/THU_AMA/main/docs/ch3/3-特殊环.typ
typst
Creative Commons Attribution 4.0 International
#import "/book.typ": * #show: thmrules #show: book-page.with(title: "特殊环: 整环、多项式环") = 特殊环: 整环、多项式环 == 整环及几类特殊整环 #figure( align(center)[#table( columns: 3, align: (col, row) => (center, center, center).at(col), inset: 6pt, [$bb(Z)$], [$F lr([x])$], [$D$(整环)], [整除性], [], [但$U lr((D))$致...
https://github.com/rowanc1/typst-book
https://raw.githubusercontent.com/rowanc1/typst-book/main/book.typ
typst
MIT License
#let leftCaption(it) = { set text(size: 8pt) set align(left) set par(justify: true) text(weight: "bold")[#it.supplement #it.counter.display(it.numbering)] "." h(4pt) set text(fill: black.lighten(20%), style: "italic") it.body } #let template( // The book's title. title: "Book Title", subtitle: n...
https://github.com/AxiomOfChoices/Typst
https://raw.githubusercontent.com/AxiomOfChoices/Typst/master/Research/Summer%202024/Geometry%20School/Monge%20Ampere.typ
typst
#import "/Templates/generic.typ": latex #import "/Templates/notes.typ": chapter_heading #import "@preview/ctheorems:1.1.0": * #import "/Templates/math.typ": * #show: latex #show: chapter_heading #show: thmrules #show: symbol_replacing #show: equation_references #set pagebreak(weak: true) #set page(margin: (x: 2cm, top:...
https://github.com/chamik/gympl-skripta
https://raw.githubusercontent.com/chamik/gympl-skripta/main/cj-autori/remarque.typ
typst
Creative Commons Attribution Share Alike 4.0 International
#import "/helper.typ": autor #autor("<NAME>", "1898", "1970 (72 let)", "spisovatel", "učitelský ústav v Münsteru", "pacifismus, ztracená generace", "/cj-autori/media/remarque.jpg") Roku 1916 odešel v 18 letech do první světové války, na západní frontě byl brzy vážně raněn a konec války prožil v lazaretu v Duisburgu. ...
https://github.com/giZoes/justsit-thesis-typst-template
https://raw.githubusercontent.com/giZoes/justsit-thesis-typst-template/main/resources/utils/justify-text.typ
typst
MIT License
// 双端对其一段小文本,常用于表格的中文 key #let justify-text(with-tail: false, tail: ":", body) = { if with-tail and tail != "" { stack(dir: ltr, stack(dir: ltr, spacing: 1fr, ..body.split("").filter(it => it != "")), tail) } else { stack(dir: ltr, spacing: 1fr, ..body.split("").filter(it => it != "")) } }
https://github.com/hemmrich/CV_typst
https://raw.githubusercontent.com/hemmrich/CV_typst/master/modules/professional.typ
typst
// Imports #import "../template/template.typ": cvSection, cvEntry #let metadata = toml("../metadata.toml") #let cvSection = cvSection.with(metadata: metadata) #let cvEntry = cvEntry.with(metadata: metadata) #cvSection("Professional Experience") #cvEntry( title: [Software Engineer - Developer Platforms & Services],...
https://github.com/Danmushu/missingSemester
https://raw.githubusercontent.com/Danmushu/missingSemester/main/shell%26vim%26data%20wrangling/main.typ
typst
#import "template.typ": * /***** para *****/ #let title = "Shell & Vim & Data wrangling" #let author = "梁子毅" #let course_id = "系统开发工具基础" #let instructor = "周小伟,范浩" #let semester = "2024 Summer" #let due_time = "Sep 5, 2024" #let id = "22090001041" #show: assignment_class.with(title, author, course_id, instructor, se...
https://github.com/Wh4rp/OCI-Solutions
https://raw.githubusercontent.com/Wh4rp/OCI-Solutions/main/lib/project.typ
typst
#let project( title: "", subtitle: "", author: "", date: "", presentation: none, doc, ) = { // set document( // ) set list( indent: 1em, ) set text( font: "New Computer Modern", lang: "es", ) move(dy: 30%, align(end)[ #set text( size: 14pt, ) #heading(lev...
https://github.com/NextFire-PolyMTL/templates
https://raw.githubusercontent.com/NextFire-PolyMTL/templates/main/typst_template.typ
typst
#let template( subject: none, title: none, subtitle: none, authors: ( (name: "<NAME>", number: 2230468), ), date: datetime.today(), semester: none, lang: "fr", doc, ) = { set document( title: (subject, title, subtitle) .filter(it => it != none) .join(" – "), author: authors.m...