repo
stringlengths
26
115
file
stringlengths
54
212
language
stringclasses
2 values
license
stringclasses
16 values
content
stringlengths
19
1.07M
https://github.com/isaacholt100/isaacholt100.github.io
https://raw.githubusercontent.com/isaacholt100/isaacholt100.github.io/master/cv/isaac-holt-cv.typ
typst
#set text(font: "New Computer Modern") #show link: underline #show link: set text(fill: blue) #set page( margin: (x: 0.9cm, y: 1cm), ) #set text( size: 10pt, ) #set par(justify: true) #let hr() = {v(-8pt); line(length: 100%); v(-2pt)} #let dates(from, to) = text(rgb(128, 128, 128), [#h(1fr) #from -- #to]) ...
https://github.com/jgm/typst-hs
https://raw.githubusercontent.com/jgm/typst-hs/main/test/typ/compiler/recursion-04.typ
typst
Other
// Error: 15-21 maximum function call depth exceeded #let rec(n) = rec(n) + 1 #rec(1)
https://github.com/typst/packages
https://raw.githubusercontent.com/typst/packages/main/packages/preview/cetz/0.2.0/src/lib/decorations/brace.typ
typst
Apache License 2.0
#import "/src/vector.typ" #import "/src/matrix.typ" #import "/src/util.typ" #import "/src/draw.typ": * #import "/src/coordinate.typ" #import "/src/styles.typ" // Rotates the vector 'ab' around 'a' and scales it to 'len', returns the absolute point 'c'. #let _rotate-around(a, b, angle: 90deg, len: auto) = { let rel =...
https://github.com/rabotaem-incorporated/algebra-conspect-1course
https://raw.githubusercontent.com/rabotaem-incorporated/algebra-conspect-1course/master/sections/03-polynomials/03-div-with-remainder.typ
typst
Other
#import "../../utils/core.typ": * == Деление с остатком #th(name: [о делении с остатком для многочленов])[ $R$ --- область целостности. Пусть $f, g in R[x], space g eq.not 0$ и старший коэффициент $g$ обратим. Тогда $exists! space q, r in R[x]$: + $f = g q + r$ + $deg r < deg g$ ] #proof...
https://github.com/kdog3682/2024-typst
https://raw.githubusercontent.com/kdog3682/2024-typst/main/src/util.typ
typst
#import "styles.typ" #import "regexes.typ" #let style-text(x, key) = { let style = styles.at(key) return text(..style, resolve-content(x)) } #let sum(..args) = { let c = 1 for n in args.pos() { c += n } return c } #let multiply(..args) = { let c = 1 for n in args.pos() { c *= n } return...
https://github.com/LeoColomb/dotdocs
https://raw.githubusercontent.com/LeoColomb/dotdocs/main/packages/leocolomb/lettre-fr/1.0.0/src/lib.typ
typst
MIT License
// This function gets your whole document as its `body` // and formats it as a simple letter. #let template( // The letter's sender, which is display at the top of the page. sender: none, sender_address: none, // The letter's recipient, which is displayed close to the top. recipient: none, recipient_addres...
https://github.com/jgm/typst-hs
https://raw.githubusercontent.com/jgm/typst-hs/main/test/typ/compute/calc-31.typ
typst
Other
// Test the `gcd` function. #test(calc.gcd(112, 77), 7) #test(calc.gcd(12, 96), 12) #test(calc.gcd(13, 9), 1) #test(calc.gcd(13, -9), 1) #test(calc.gcd(272557, 272557), 272557) #test(calc.gcd(0, 0), 0) #test(calc.gcd(7, 0), 7)
https://github.com/Myriad-Dreamin/typst.ts
https://raw.githubusercontent.com/Myriad-Dreamin/typst.ts/main/fuzzers/corpora/text/linebreak_06.typ
typst
Apache License 2.0
#import "/contrib/templates/std-tests/preset.typ": * #show: test-page // Test forcing an empty trailing line. Trailing break \ \
https://github.com/kdog3682/typkit
https://raw.githubusercontent.com/kdog3682/typkit/main/0.1.0/src/lines.typ
typst
#import "strokes.typ" #let soft = line(length: 100%, stroke: strokes.soft) #let solid = line(length: 100%, stroke: strokes.solid) #let thin = line(length: 100%, stroke: strokes.solid)
https://github.com/Lucas-Wye/tech-note
https://raw.githubusercontent.com/Lucas-Wye/tech-note/main/src/ic.typ
typst
= IC == 体系结构 - 数据冒险:当指令在流水线中重叠执行时,后面的指令需要用到前面的指令的执行结果,而前面的指令尚未写回导致的冲突,称为数据冒险(也称为数据相关性)。 - 结构冒险:当一条指令需要的硬件部件还在为之前的指令工作,而无法为这条指令提供服务,那就导致了结构冒险。(这里结构是指硬件当中的某个部件、也称为资源冲突)。 - 控制冒险:如果现在想要执行哪条指令,是由之前指令的运行结果决定,而现在那条之前指令的结果还没产生,就导致了控制冒险(实际上就是riscv 的跳转指令引起的,跳转指令要经过2个周期后才会出现跳转结果)。 == 电容,电感和电阻 - 电容通高频阻低频、电感通低频阻高频 == 布尔代数 === 二进...
https://github.com/DanielOaks/tme
https://raw.githubusercontent.com/DanielOaks/tme/main/solo-character-sheet.typ
typst
#import "elements.typ": sheet, characterSheetTop, extraCharacterBox, #let title = "Talking Magic Equines 1e Solo Character Sheet" #sheet( title: title, paper: "a4", [ #characterSheetTop() // separator #v(11pt) #align( center, line( length: 6cm, stroke: ( thickness: 7pt, paint: luma(87%)...
https://github.com/v411e/optimal-ovgu-thesis
https://raw.githubusercontent.com/v411e/optimal-ovgu-thesis/main/README.md
markdown
MIT License
This template was created for a master thesis at the faculty of computer science (FIN), but should work as well for other faculties. ## File structure ``` . ├── assets // Images, CSV-Files, etc. │ └── figure // Image files │ └── optimal-ovgu-thesis ├──...
https://github.com/rabotaem-incorporated/probability-theory-notes
https://raw.githubusercontent.com/rabotaem-incorporated/probability-theory-notes/master/sections/03-characteristic-functions/01-characteristic-functions.typ
typst
#import "../../utils/core.typ": * == Характеристические функции #def[ _Комплекснозначная случайная величина_ --- это функция $xi: Omega --> CC$, где $Re xi$, $Im xi$ --- измеримые функции. ] #def[ $E xi := E (Re xi) + i E (Im xi)$. ] #props[ + Математическое ожидание комплексно-линейно. + $abs(E xi) <= E ab...
https://github.com/Lypsilonx/Game-of-Intrigue
https://raw.githubusercontent.com/Lypsilonx/Game-of-Intrigue/main/render.typ
typst
#import "data.typ": * #let get_description(type, value, illegal, color, supertitle) = { let is_role = supertitle == "Role" show "[X]": it => if (value == none) {"VALUE_MISSING"} else {str(value)} show "_s": it => if (value == 1) {""} else {"s"} show "[C]": it => if (color == none) {"COLOR_MISSING"} else {color...
https://github.com/ivaquero/cetz-control
https://raw.githubusercontent.com/ivaquero/cetz-control/main/0.1.0/cetz-control.typ
typst
#import "@preview/fletcher:0.5.0": diagram, node, edge // font style // chinese text #let ctext(label, font: "Songti SC") = text(label, size: .7em, font: font) // node style // rectangle node #let rnode(sym, label) = node(sym, label, shape: rect) // circle node #let onode(sym, label) = node(sym, label, shape: circle,...
https://github.com/Lucas-Wye/tech-note
https://raw.githubusercontent.com/Lucas-Wye/tech-note/main/src/LaTeX.typ
typst
= LaTeX - LaTeX(音译“拉泰赫”)是一种基于ΤΕΧ的排版系统,由美国计算机学家莱斯利·兰伯特(<NAME>)在20世纪80年代初期开发。 利用这种格式,即使使用者没有排版和程序设计的知识也可以充分发挥由TeX所提供的强大功能,能在几天,甚至几小时内生成很多具有书籍质量的印刷品。 - 对于生成复杂表格和数学公式,这一点表现得尤为突出。因此它非常适用于生成高印刷质量的科技和数学类文档。这个系统同样适用于生成从简单的信件到完整书籍的所有其他种类的文档。 == Install 从#link("https://mirrors.tuna.tsinghua.edu.cn/CTAN/systems/texlive/Images/...
https://github.com/Bang0518/RSBD
https://raw.githubusercontent.com/Bang0518/RSBD/master/report.typ
typst
#import "template.typ": * #show: project.with( header_text: "2024 暑期大数据推荐系统课程", title: "基于隐式反馈的 Top-10 推荐列表预测", authors: ( ( name: "吴建军", organization: [学号2024140899], email: "<EMAIL>" ), ), abstract: "本实验通过使用提供的训练集构建了推荐模型,并使用测试集中的数据对推荐系统进行了Top-10推荐列表的预测。完成了数据处理、模型构建、训练与验证的过程,并生成了每...
https://github.com/polarkac/MTG-Stories
https://raw.githubusercontent.com/polarkac/MTG-Stories/master/typst_packages/mtgstory/0.1.0/mtgstory.typ
typst
#let conf( title, set_name: "Unknown set", author: "Unknown author", show_images: true, doc ) = { set par(justify: true) set page( paper: "a4", header: [ #grid( columns: (1fr, 1fr), gutter: 2em, [*#title\ by #author*...
https://github.com/jonaspleyer/peace-of-posters
https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/main/docs/content/documentation/themes.md
markdown
MIT License
--- title: "Themes" weight: 30 --- # Themes Themes are dictionaries with particular variables that control overall styling of the generated boxes. The dictionary is saved as a [state](https://typst.app/docs/reference/meta/state/) variable and can be accessed by the `update-theme` and `set-theme` methods. Most of the t...
https://github.com/takotori/PhAI-Spick
https://raw.githubusercontent.com/takotori/PhAI-Spick/main/utils.typ
typst
#let colorange(x) = text(fill: orange, $#x$) #let colgreen(x) = text(fill: green, $#x$) #let colmagenta(x) = text(fill: fuchsia, $#x$) #let colblue(x) = text(fill: blue, $#x$) #let colred(x) = text(fill: red, $#x$)
https://github.com/RiccardoTonioloDev/TypUrNotes
https://raw.githubusercontent.com/RiccardoTonioloDev/TypUrNotes/main/template_demo.typ
typst
MIT License
#import "tun_template/tun.typ": * #show: config.with( myAuthor: "<NAME>", myTitle: "Template creation in Typst", myLang: "en", pages_numbering: "1", creation_day: "01", creation_month: "01", creation_year: "1970", associated_with: "University Typography Course", use_glossary: true, use_bibliography:...
https://github.com/typst/packages
https://raw.githubusercontent.com/typst/packages/main/packages/preview/fletcher/0.4.3/src/exports.typ
typst
Apache License 2.0
#import "deps.typ": cetz #import "marks.typ": * #import "draw.typ": * #import "shapes.typ" #import "layout.typ": * #import "main.typ": * #import "utils.typ"
https://github.com/B-Ricey763/resume
https://raw.githubusercontent.com/B-Ricey763/resume/main/README.md
markdown
# My Resume This is where I host my resume, which is built in Typst and based off of [this wonderful template](https://github.com/tzx/NNJR) ![resume](hanna-bryce-resume.png)
https://github.com/ClassicConor/UoKCSYear1ExamNotes2024
https://raw.githubusercontent.com/ClassicConor/UoKCSYear1ExamNotes2024/master/Databases%20(With%20Exam%20Answers)/Databases%202023%20Paper/Databases%202023%20Answers.typ
typst
= 2023 Databases and the Web Exam <databases-and-the-web-exam> == Question 1 <question-1> === a: Answer the following based on the below HTML/CSS code <a-answer-the-following-based-on-the-below-htmlcss-code> ```html <html> <head> <meta charset="UTF-8"/> <title>HTML example</title> <style> p {font-st...
https://github.com/Walfisch115/thb-typst-template
https://raw.githubusercontent.com/Walfisch115/thb-typst-template/main/README.md
markdown
# THB Typst Vorlagen Adaption der [THB Vorlagen](https://informatik.th-brandenburg.de/studium/abschlussarbeiten/) des Fachbereich Informatik und Medien für [Typst](https://typst.app/). Vorlagen inklusive Beispiele für: - Abschlussarbeit ([Vorschau PDF](thesis/Vorlage%20Thesis.pdf)) - Abschlussposter ([Vorschau PDF](...
https://github.com/dangh3014/postercise
https://raw.githubusercontent.com/dangh3014/postercise/main/examples/basic-example.typ
typst
MIT License
// Import a theme #import "../postercise.typ": * #import themes.basic: * // Set up paper dimensions and text #set page(width: 24in, height: 18in) #set text(size: 28pt) // Set up colors #show: theme.with() // Add content #poster-content[ // Add title, subtitle, author, affiliation, logos #poster-header( titl...
https://github.com/typst/packages
https://raw.githubusercontent.com/typst/packages/main/packages/preview/unichar/0.1.0/ucd/block-0840.typ
typst
Apache License 2.0
#let data = ( ("MANDAIC LETTER HALQA", "Lo", 0), ("MANDAIC LETTER AB", "Lo", 0), ("MANDAIC LETTER AG", "Lo", 0), ("MANDAIC LETTER AD", "Lo", 0), ("MANDAIC LETTER AH", "Lo", 0), ("MANDAIC LETTER USHENNA", "Lo", 0), ("MANDAIC LETTER AZ", "Lo", 0), ("MANDAIC LETTER IT", "Lo", 0), ("MANDAIC LETTER ATT", "...
https://github.com/Myriad-Dreamin/tinymist
https://raw.githubusercontent.com/Myriad-Dreamin/tinymist/main/syntaxes/textmate/tests/unit/bugs/tinymist-issue334.typ
typst
Apache License 2.0
#let xxx = n => $#n$ #xxx(1)
https://github.com/maxwell-thum/typst-pf3
https://raw.githubusercontent.com/maxwell-thum/typst-pf3/main/template.typ
typst
MIT License
#let project(title: "", authors: (), body) = { // Set the document's basic properties. set document(author: authors, title: title) set page(paper: "us-letter") set text(font: "New Computer Modern", lang: "en") show math.equation: set text(weight: 400) set par(justify: true) body }
https://github.com/binhtran432k/ungrammar-docs
https://raw.githubusercontent.com/binhtran432k/ungrammar-docs/main/contents/system-design/system-architecture.typ
typst
== System Architecture <sec-sys-arch> === Overview #figure( image("/diagrams/generated/package/pkg-system.svg", width: 80%), caption: [Ungrammar Language Ecosystem Architecture], ) The Ungrammar language ecosystem comprises six primary components and an external component: *Ungrammar Lezer*: A powerful parser b...
https://github.com/deb06/typst-templates
https://raw.githubusercontent.com/deb06/typst-templates/main/mla.typ
typst
#let mla( heading: [], title: [], lastname: [], content: [], citations: [] ) = { page( margin: (x: 1in, y: 1in), header: [ #set align(right) #set text(font: "Times New Roman", size: 12pt) #lastname #counter(page).display("1") ] )[ ...
https://github.com/7sDream/fonts-and-layout-zhCN
https://raw.githubusercontent.com/7sDream/fonts-and-layout-zhCN/master/chapters/06-features-2/substitution/i-matra.typ
typst
Other
#import "/lib/draw.typ": * #import "/template/lang.typ": hind // 本例需要使用 dev2 布局方法和 Hind 字体 #let start = (0, 0) #let end = (600, 400) #let without-pres = it => hind(text(features: ("pres": 0,), it)) #let graph = with-unit((ux, uy) => { // mesh(start, end, (100, 100)) txt([未开启`pres`特性时:], (30, 370), anchor: "lt",...
https://github.com/Kasci/LiturgicalBooks
https://raw.githubusercontent.com/Kasci/LiturgicalBooks/master/CSL_old/oktoich/Hlas2/5_Piatok.typ
typst
#let V = ( "HV": ( ("", "Jehdá ot dréva", "Spáse, na kresťí prihvozdívsja, sólnce víďiv pomračísja ot strácha tvojehó, i zavísa cerkóvnaja razdrásja: zemľá že potrjasésja, i kámenije tákožde trépetom raspadóšasja, zríti ne terpjášče ziždíteľa svojehó i Bóha, na drévi stráždušča neprávedno vóleju, i ot bezzakónnik...
https://github.com/jgm/typst-hs
https://raw.githubusercontent.com/jgm/typst-hs/main/test/typ/compiler/let-21.typ
typst
Other
// Ref: false // Destructuring with unnamed sink. #let (a, ..) = (a: 1, b: 2) #test(a, 1)
https://github.com/Scriptorgames/JIF-JUFO-Paper
https://raw.githubusercontent.com/Scriptorgames/JIF-JUFO-Paper/main/term.typ
typst
// Colorscheme // https://www.schemecolor.com/macos-window-ui-colors.php #let width = 300pt #let inset_size = 10pt #let radius_size = 10pt #let button_size = 10pt #let button_spacing = 10pt #let button_red_color = rgb("FF605C") #let button_orange_color = rgb("FFBD44") #let button_green_color = rgb("00CA4E") #let too...
https://github.com/zurgl/typst-resume
https://raw.githubusercontent.com/zurgl/typst-resume/main/templates/resume/section.typ
typst
#import "../../metadata.typ": * #import "../commun.typ": * #import "@preview/fontawesome:0.1.0": * /* resume section */ #let sectionTitleStyle(str, color: black) = { text(size: 16pt, weight: "bold", fill: color, str) } #let cvSection(title, highlighted: true, letters: 3) = { let highlightText = title.slice(0, lett...
https://github.com/SkytAsul/INSA-Typst-Template
https://raw.githubusercontent.com/SkytAsul/INSA-Typst-Template/main/packages/silky-report-insa/README.md
markdown
MIT License
# INSA - Typst Template Typst Template for full documents and reports for the french engineering school INSA. ## Table of contents 1. [Examples & Usage](#examples) 1. [🧪 TP report](#🧪-tp-report) 1. [📚 Internship report](#📚-internship-report) 1. [🗒️ Blank templates](#🗒️-blank-templates) 1. [Fonts info...
https://github.com/kdog3682/typkit
https://raw.githubusercontent.com/kdog3682/typkit/main/0.1.0/src/is.typ
typst
#let is-string(x) = { type(x) == str } #let test(s, r) = { if is-string(s) { return s.match(regex(r)) != none } return false } #let is-content(x) = { type(x) == content } #let is-none(x) = { x == none } #let is-color(x) = { type(x) == color } #let is-array(x) = { type(x) == array } #let is-nested-array(x...
https://github.com/chubetho/Bachelor_Thesis
https://raw.githubusercontent.com/chubetho/Bachelor_Thesis/main/chapters/approaches.typ
typst
#import "@preview/glossarium:0.4.1": glspl = Micro Frontend Implementation Approaches Building on the Decision Framework outlined in the previous chapter, this section presents several commonly adopted approaches for implementing micro frontends. The effectiveness and challenges of these approaches often depend on th...
https://github.com/dssgabriel/master-thesis
https://raw.githubusercontent.com/dssgabriel/master-thesis/main/src/cea.typ
typst
Apache License 2.0
= Host institution == The CEA As a significant actor in research, development and innovation, the French Atomic Energy and Alternative Energies Commission (CEA) operates in four fields: - defense and security; - low-carbon energies (nuclear and renewable); - technological research for industry; - fundamental research...
https://github.com/joshuabeny1999/unisg-thesis-template-typst
https://raw.githubusercontent.com/joshuabeny1999/unisg-thesis-template-typst/main/thesis.typ
typst
Other
#import "/layout/thesis_template.typ": * #import "/metadata.typ": * #set document(title: title, author: author) #show: thesis.with( language: language, title: title, subtitle: subtitle, type: type, professor: professor, author: author, matriculationNumber: matriculationNumber, submissionDate: submissi...
https://github.com/An-314/Note-of-Quantum_Mechanics
https://raw.githubusercontent.com/An-314/Note-of-Quantum_Mechanics/main/chap4.typ
typst
#import "@preview/physica:0.9.2": * #import "@local/mytemplate:1.0.0": * = ⼒学量算符与波函数 == 量子力学的基本公设 + 公设1:微观体系的状态由波函数描述,波函数满足单值、有限、连续条件 + 公设2:波函数的动力学演化满足薛定鄂方程 + 公设3:力学量用*厄密算符*表示,且有组成*完备集的本征函数系* + 公设4:任一波函数可以展开为力学量算符本征函数的线性叠加,测得力学量为本征值$lambda_n$的几率(密度)为展开式中对应本征函数系数的模方$|c_n|^2$#footnote[意思是测量的只能是本征值,而且是又概率的] ...
https://github.com/polarkac/MTG-Stories
https://raw.githubusercontent.com/polarkac/MTG-Stories/master/stories/002_Return%20to%20Ravnica.typ
typst
#import "@local/mtgset:0.1.0": conf #show: doc => conf("Return to Ravnica", doc) #include "./002 - Return to Ravnica/001_The Shadows of Prahv, Part 1.typ" #include "./002 - Return to Ravnica/002_The Shadows of Prahv, Part 2.typ" #include "./002 - Return to Ravnica/003_Epic Experiment.typ" #include "./002 - Return to R...
https://github.com/polarkac/MTG-Stories
https://raw.githubusercontent.com/polarkac/MTG-Stories/master/stories/023%20-%20Oath%20of%20the%20Gatewatch/009_Zendikar%20Resurgent.typ
typst
#import "@local/mtgstory:0.2.0": conf #show: doc => conf( "Zendikar Resurgent", set_name: "Oath of the Gatewatch", story_date: datetime(day: 24, month: 02, year: 2016), author: "<NAME>, <NAME>, <NAME>, and <NAME>", doc ) #emph[The Eldrazi titans have been destroyed. The world of Zendikar has been s...
https://github.com/SundaeSwap-finance/sundae-audits-public
https://raw.githubusercontent.com/SundaeSwap-finance/sundae-audits-public/main/butane-sale/butane-sale.typ
typst
#import "../template/audit.typ": * #import "@preview/finite:0.3.0": automaton #show: report.with( client: "Butane", title: "Pro-rata Sale", repo: "https://github.com/SundaeSwap-finance/sundae-audits-public", date: "2023-02-21", authors: ( ( name: "<NAME>", display: text(1.3em, $pi$) + " Lanni...
https://github.com/VoigtSebastian/typst-CV
https://raw.githubusercontent.com/VoigtSebastian/typst-CV/main/template.typ
typst
MIT License
#let spacing = 25pt #let huge = 30pt #let text_size = 11pt #let off_black = luma(20) // Icons // I do not recommend using these functions manually, as they are not meant to be. // Use githubIcon, mailIcon or githubIconInline instead // Both functions are easily customizized for different icons (e.g. twitter, linkedin,...
https://github.com/rxt1077/it610
https://raw.githubusercontent.com/rxt1077/it610/master/markup/exercises/getting-started.typ
typst
#import "/templates/exercise.typ": exercise, code, admonition #show: doc => exercise( course-name: "Systems Administration", exercise-name: "Getting Started", doc, ) == Goals + Install git + Install Docker + git pull the class git repository + Build a custom Docker image + Run a container == Installing git Y...
https://github.com/maxgraw/bachelor
https://raw.githubusercontent.com/maxgraw/bachelor/main/apps/document/src/0-base/6-abbreviations.typ
typst
#set heading(numbering: none, supplement: [Abschnitt]) = Abkürzungsverzeichnis / DOM: Document Object Model / HTML: Hypertext Markup Language / VR: Virtual Reality / AR: Augmented Reality / UEQ: User Experience Questionnaire / npm: Node Package Manager / SDK: Software Development Kit / UEQ: User Experience Questionnai...
https://github.com/mismorgano/UG-OrdinaryDifferentialEquations-Project-24
https://raw.githubusercontent.com/mismorgano/UG-OrdinaryDifferentialEquations-Project-24/main/Dynamical-Systems.typ
typst
#let author = ("<NAME>") #let title = [ Sistemas dinámicos, una introducción ] #import "conf.typ": conf, definition #show: doc => conf(title, author, doc) // #set page(margin: 1.75in) // #set par(leading: 0.55em, first-line-indent: 1.8em, justify: true) #set text(font: "New Computer Modern", lang: "es", siz...
https://github.com/a-mhamdi/graduation-report
https://raw.githubusercontent.com/a-mhamdi/graduation-report/main/Typst/en-Report/common/metadata.typ
typst
MIT License
// Enter your project data here: #let title = "Project Title" #let titre = "Titre" #let diploma = "License" #let program = "Electrical Engineering" #let supervisor = "Mr(s). ***" #let author = "Author" #let date = datetime.today().display() #let chap1 = "Project Context" #let chap2 = "Design Overview" #let chap3 = "Im...
https://github.com/TypstApp-team/typst
https://raw.githubusercontent.com/TypstApp-team/typst/master/tests/typ/math/matrix.typ
typst
Apache License 2.0
// Test matrices. --- // Test semicolon syntax. #set align(center) $mat() dot mat(;) dot mat(1, 2) dot mat(1, 2;) \ mat(1; 2) dot mat(1, 2; 3, 4) dot mat(1 + &2, 1/2; &3, 4)$ --- // Test sparse matrix. $ mat( 1, 2, ..., 10; 2, 2, ..., 10; dots.v, dots.v, dots.down, dots.v; 10, 10, ..., 10; ) $ --- // T...
https://github.com/storopoli/Bayesian-Statistics
https://raw.githubusercontent.com/storopoli/Bayesian-Statistics/main/slides/11-hierarchical_models.typ
typst
Creative Commons Attribution Share Alike 4.0 International
#import "@preview/polylux:0.3.1": * #import themes.clean: * #import "utils.typ": * #import "@preview/cetz:0.1.2": * #new-section-slide("Hierarchical Models") #slide(title: "Recommended References")[ - #cite(<gelman2020regression>, form: "prose"): - Chapter 5: Hierarchical models - Chapter 15: Hierarchical l...
https://github.com/jgm/typst-hs
https://raw.githubusercontent.com/jgm/typst-hs/main/test/typ/bugs/square-base-00.typ
typst
Other
#set page(height: 80pt) #square(width: 40%, rect(width: 60%, height: 80%))
https://github.com/lxl66566/my-college-files
https://raw.githubusercontent.com/lxl66566/my-college-files/main/信息科学与工程学院/机器学习(选修)/结课报告/报告.typ
typst
The Unlicense
#let 字号 = ( 初号: 42pt, 小初: 36pt, 一号: 26pt, 小一: 24pt, 二号: 22pt, 小二: 18pt, 三号: 16pt, 小三: 15pt, 四号: 14pt, 中四: 13pt, 小四: 12pt, 五号: 10.5pt, 小五: 9pt, 六号: 7.5pt, 小六: 6.5pt, 七号: 5.5pt, 小七: 5pt, ) #let 字体 = ( 仿宋: ("Times New Roman", "FangSong"), 宋体: ("Times New Roman", "SimSun"), 黑体: ("Ti...
https://github.com/jasonelaw/bes-typst-memo
https://raw.githubusercontent.com/jasonelaw/bes-typst-memo/main/_extensions/quarto-ext/memo/typst-template.typ
typst
// This function gets your whole document as its `body` // and formats it as a simple letter. #let memo( // The letterhead image file path letterhead: "images/letterhead.png", // The letter's sender, which is display at the top of the page. sender: none, // The letter's recipient, which is displayed close t...
https://github.com/MobtgZhang/sues-thesis-typst
https://raw.githubusercontent.com/MobtgZhang/sues-thesis-typst/main/paper/covers/authorization.typ
typst
MIT License
#import "../thesis.typ": fontstypedict,fontsizedict,linespacing,autoFakeBold_pt #set align(center) #text("上海工程技术大学\n学位论文版权使用授权书",size:fontsizedict.三号,font:fontstypedict.黑体,stroke:autoFakeBold_pt) #set align(left) #set text(font:fontstypedict.宋体) #par(justify: true, first-line-indent: 2em, leading: linespacing)[ 本学位论文...
https://github.com/drupol/master-thesis
https://raw.githubusercontent.com/drupol/master-thesis/main/src/thesis/theme/leftblank.typ
typst
Other
#import "common/metadata.typ": * #let leftblank( weak: true ) = { pagebreak(weak: weak) set align(center) v(80%) text(fill: black.lighten(75%))[ This page is intentionally left blank. ] pagebreak(weak: true) }
https://github.com/TypstApp-team/typst
https://raw.githubusercontent.com/TypstApp-team/typst/master/tests/typ/bugs/flow-3.typ
typst
Apache License 2.0
// In this bug, there was a bit of space below the heading because weak spacing // directly before a layout-induced column or page break wasn't trimmed. --- #set page(height: 60pt) #rect(inset: 0pt, columns(2)[ Text #v(12pt) Hi #v(10pt, weak: true) At column break. ])
https://github.com/lucannez64/Notes
https://raw.githubusercontent.com/lucannez64/Notes/master/Vector-Valued%20Functions.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: "Vector-Valued Functions", authors: ( "<NAME>", ), date: "30 Octobre, 2023", ) #set heading(numbering: "1.1.") = Vector-Valued functio...
https://github.com/ufodauge/master_thesis
https://raw.githubusercontent.com/ufodauge/master_thesis/main/src/template/index.typ
typst
MIT License
#import "utils/theorems.typ": * #import "components/cover-section/index.typ": CoverSection #import "components/intro-section/index.typ": IntroSection #import "components/main-section/index.typ" : MainSection #import "components/common/route.typ" : Route #let template( title : "卒業論文、修士論文のタイトル", stud...
https://github.com/darioglasl/Arbeiten-Vorlage-Typst
https://raw.githubusercontent.com/darioglasl/Arbeiten-Vorlage-Typst/main/Anhang/02_Implementations_Details/00_index.typ
typst
== Implementations-Details
https://github.com/Myriad-Dreamin/typst.ts
https://raw.githubusercontent.com/Myriad-Dreamin/typst.ts/main/fuzzers/corpora/text/font_00.typ
typst
Apache License 2.0
#import "/contrib/templates/std-tests/preset.typ": * #show: test-page // Set same font size in three different ways. #text(20pt)[A] #text(2em)[A] #text(size: 15pt + 0.5em)[A] // Do nothing. #text()[Normal] // Set style (is available). #text(style: "italic")[Italic] // Set weight (is available). #text(weight: "bold...
https://github.com/lphoogenboom/typstThesisDCSC
https://raw.githubusercontent.com/lphoogenboom/typstThesisDCSC/master/chapters/firstRealChapter.typ
typst
#import "../typFiles/chapter.typ": * #show: chapter.with(chapterTitle: "First Real Chapter", content: [ dasdasdasfgdfgfg ])
https://github.com/danilasar/conspectuses-3sem
https://raw.githubusercontent.com/danilasar/conspectuses-3sem/master/Ассемблер/240926.typ
typst
Машинный формат двухадресной команды, для которой один операнд находится всегда в регистре, а второй --- в регистре или памяти можно представить следующим обрезом: #image("image copy.png") ... В ассемблере, как и в языках высокого уровня, могут использоваться именованные константы. 25 --- неименованная константа,...
https://github.com/typst/packages
https://raw.githubusercontent.com/typst/packages/main/packages/preview/in-dexter/0.0.6/sample-usage.typ
typst
Apache License 2.0
#import "./in-dexter.typ": * // This typst file demonstrates the usage of the in-dexter package. #set text(lang: "en", font: "Arial", size: 10pt) #set heading(numbering: "1.1") // Index-Entry hiding : this rule makes the index entries in the document invisible. #show figure.where(kind: "jkrb_index"): it => {} // Fr...
https://github.com/nixon-voxell/nixon_resume
https://raw.githubusercontent.com/nixon-voxell/nixon_resume/main/README.md
markdown
MIT License
# Nixon's Resume This repository is where Nixon stores his resume. This way, Nixon will be able to keep track of all his resume versions and changes. ## Credit [**Typst**](https://github.com/typst/typst) is a new markup-based typesetting system that is designed to be as powerful as LaTeX while being much easier to l...
https://github.com/rabotaem-incorporated/calculus-notes-2course
https://raw.githubusercontent.com/rabotaem-incorporated/calculus-notes-2course/master/sections/05-complex-functions/01-holomorphic-functions.typ
typst
#import "../../utils/core.typ": * == Голоморфные функции #def(label: "def-hfn")[ $Omega subset CC$, $f: Omega --> CC$, $z_0 in Omega$. $f$ называется _голоморфной_ в точке $z_0$, если существует предел (конечный --- в $CC$ других нет), $ lim_(z -> z_0) (f(z) - f(z_0)) / (z - z_0) =: f'(z_0) $ ] #notice(...
https://github.com/ayoubelmhamdi/typst-phd-AI-Medical
https://raw.githubusercontent.com/ayoubelmhamdi/typst-phd-AI-Medical/master/chapters/ch01-ana.typ
typst
MIT License
#import "../functions.typ": heading_center, images, italic #let finchapiter = text(fill:rgb("#1E045B"),[■]) = ANATOMIE DES NODULES PULMONAIRES. == Introduction. === Definition. Les nodules pulmonaires, de petites masses arrondies formées dans les poumons, apparaissent lors des examens d'imagerie. Leurs caractérist...
https://github.com/polarkac/MTG-Stories
https://raw.githubusercontent.com/polarkac/MTG-Stories/master/stories/021%20-%20Battle%20for%20Zendikar/009_Nissa's%20Resolve.typ
typst
#import "@local/mtgstory:0.2.0": conf #show: doc => conf( "Nissa's Resolve", set_name: "Battle for Zendikar", story_date: datetime(day: 07, month: 10, year: 2015), author: "<NAME>", doc ) #emph[Nissa has come a long way since leaving her home continent of Bala Ged in her youth. Though she made many...
https://github.com/extua/nth
https://raw.githubusercontent.com/extua/nth/main/CHANGELOG.md
markdown
MIT No Attribution
## 1.0.1 - 2024-06-20 Only minor manifest changes in this update, the package code is unchanged. ### Changed * Added 'text' category and keywords for integration with Typst Universe (commit [30869a7](https://github.com/extua/nth/commit/30869a7843c2c03307699394b510d628ed9df18c)). * Added other authors to license state...
https://github.com/sitandr/typst-examples-book
https://raw.githubusercontent.com/sitandr/typst-examples-book/main/src/basics/math/alignment.md
markdown
MIT License
# Alignment ## General alignment By default display math is center-aligned, but that can be set up with `show` rule: ```typ #show math.equation: set align(right) $ (a + b)/2 $ ``` Or using `align` element: ```typ #align(left, block($ x = 5 $)) ``` ## Alignment points When equations include multiple alignment po...
https://github.com/Skimmeroni/Appunti
https://raw.githubusercontent.com/Skimmeroni/Appunti/main/Metodi%20Algebrici/Codici/Introduzione.typ
typst
Creative Commons Zero v1.0 Universal
#import "../Metodi_defs.typ": * Prende il nome di *sistema di comunicazione* la struttura di seguito schematizzata: #set math.mat(delim: none) $ mat( space, space, space, space, "rumore", space, space, space, space; space, space, space, space, arrow.b, space, space, space, space; "Trasmettitore", attach(-->, t: m)...
https://github.com/MRoiban/math-f303-exos
https://raw.githubusercontent.com/MRoiban/math-f303-exos/main/main.typ
typst
#import "@preview/equate:0.2.0": equate #import "@preview/showybox:2.0.1": showybox #import "@preview/lovelace:0.3.0": * #import "@preview/ilm:1.1.2": * #show: ilm.with( title: [Math Exam Preparation], author: "<NAME>", date: datetime(year: 2024, month: 07, day: 22), abstract: [], preface: [], figure-index...
https://github.com/polarkac/MTG-Stories
https://raw.githubusercontent.com/polarkac/MTG-Stories/master/stories/003%20-%20Gatecrash/004_Persistence%20of%20Memory.typ
typst
#import "@local/mtgstory:0.2.0": conf #show: doc => conf( "Persistence of Memory", set_name: "Gatecrash", story_date: datetime(day: 23, month: 01, year: 2013), author: "<NAME>", doc ) Sarusin sat in a dimly lit room far beneath the cobbled streets of Ravnica. He knew by the air that he was undergro...
https://github.com/Kasci/LiturgicalBooks
https://raw.githubusercontent.com/Kasci/LiturgicalBooks/master/SK/zalmy/Z024.typ
typst
K tebe, Pane, dvíham svoju dušu, \* tebe dôverujem, Bože môj: Nech nie som zahanbený \* a nech moji nepriatelia nejasajú nado mnou. Veď nik, čo dúfa v teba, nebude zahanbený. \* Ale nech sú zahanbení tí, čo sa pre nič za nič dopúšťajú nevery. Ukáž mi, Pane, svoje cesty \* a pouč ma o svojich chodníkoch. Veď ma vo s...
https://github.com/polarkac/MTG-Stories
https://raw.githubusercontent.com/polarkac/MTG-Stories/master/stories/002%20-%20Return%20to%20Ravnica/007_Slaughter%20Games.typ
typst
#import "@local/mtgstory:0.2.0": conf #show: doc => conf( "Slaughter Games", set_name: "Return to Ravnica", story_date: datetime(day: 17, month: 10, year: 2012), author: "<NAME>", doc ) Maritta slammed the door and slammed down the crossbar. It landed with a solid thud, barring her family's door an...
https://github.com/talal/ilm
https://raw.githubusercontent.com/talal/ilm/main/README.md
markdown
MIT No Attribution
# ‘Ilm > ‘Ilm (Urdu: عِلْم) is the Urdu term for knowledge. It is pronounced as [/ə.ləm/](https://en.wiktionary.org/wiki/%D8%B9%D9%84%D9%85#Urdu). A versatile, clean and minimal template for non-fiction writing. The template is ideal for class notes, reports, and books. It contains a title page, a table of contents,...
https://github.com/cecoeco/indic-numerals
https://raw.githubusercontent.com/cecoeco/indic-numerals/main/README.md
markdown
MIT License
<div> <a href="https://github.com/cecoeco/indic-numerals/blob/main/LICENSE.md"><img alt="License: MIT" src="https://img.shields.io/badge/License-MIT-blue.svg"></a> </div> ## indic-numerals <i>convert arabic numerals to indic numerals and vice versa</i> ```typst #import "@preview/indic-numerals:0.1.0": arabic-to-indi...
https://github.com/freundTech/typst-matryoshka
https://raw.githubusercontent.com/freundTech/typst-matryoshka/main/doc/matryoshka.typ
typst
MIT License
#import "@preview/mantys:0.1.4": * // Vendored because of https://github.com/jneug/typst-mantys/pull/20 #let cmdref(name) = { link(cmd-label(name), cmd-(name)) } // End Vendored #import "/lib.typ" #let date = datetime(year: 2024, month: 07, day: 02) #let matryoshka = package[matryoshka] #show: mantys.with( ..t...
https://github.com/Mc-Zen/quill
https://raw.githubusercontent.com/Mc-Zen/quill/main/docs/architecture.md
markdown
MIT License
# Architecture The main algorithm used in `quantum-circuit` for circuit layout is quite intricate and is described here broadly for a better overview. The algorithm specifically takes care of the following things: - Not drawing wires through gates: this way we can also use transparent gates. - Computing the bounding ...
https://github.com/youwen5/linear-algebra-done-wrong
https://raw.githubusercontent.com/youwen5/linear-algebra-done-wrong/main/notes/main.typ
typst
#import "@preview/unequivocal-ams:0.1.0": ams-article, theorem, proof #show: ams-article.with( title: [Notes on Linear Algebra Done Wrong], authors: ( ( name: "<NAME>", organization: [University of California, Santa Barbara], email: "<EMAIL>", url: "https://youwen.dev", ), ), ) = Chapter 1 == Vecto...
https://github.com/cadojo/vita
https://raw.githubusercontent.com/cadojo/vita/main/src/socials.typ
typst
MIT License
#let socialslist = state("socialslist", ()) #let social( name, icon: none, ) = { let social = if icon == none { name } else { box(image("../" + icon, height: 1.5em), baseline: 20%) h(1em) name } socialslist.update(current => current + (social,)) } #let socials(header: "Social Media", color:...
https://github.com/fredguth/abnt-typst
https://raw.githubusercontent.com/fredguth/abnt-typst/main/templates/pre.typ
typst
#import "../_config.typ": metadados, estilo // Definições úteis ================================================= #let base = (lang: "pt", fill: luma(10), tracking: 0pt, stretch: 100%, style: "normal") #let regular =(..base, font: estilo.fonte.serif, weight: "regular", size: estilo.fonte.tamanho.regular) #let small =...
https://github.com/LugsoIn2/typst-htwg-thesis-template
https://raw.githubusercontent.com/LugsoIn2/typst-htwg-thesis-template/main/lib/abstract.typ
typst
MIT License
#import "textTemplate.typ": * #let abstractPages(body, lang: "", abstract-font: "Arial") = { let languageText = textTemplate(pagetype: "abstract" ,lang: lang) heading(numbering: none, outlined: false)[#languageText.at(0)] set text( font: abstract-font, size: 12pt, lang: lang, ) set par(ju...
https://github.com/polarkac/MTG-Stories
https://raw.githubusercontent.com/polarkac/MTG-Stories/master/stories/006%20-%20Magic%202014/001_Prisoner of the Skep; or, How I Encountered the Slivers—and Lived to Tell the Tale!.typ
typst
#import "@local/mtgstory:0.2.0": conf #show: doc => conf( "Prisoner of the Skep; or, How I Encountered the Slivers—and Lived to Tell the Tale!", set_name: "Magic 2014", story_date: datetime(day: 26, month: 06, year: 2013), author: "<NAME>", doc ) #emph["One emitted a strange series of buzzing click...
https://github.com/markcda/unitech-typst
https://raw.githubusercontent.com/markcda/unitech-typst/master/examples/sw-psychology/01-semester-work.typ
typst
MIT License
#import "00-university-template.typ": * #show: student_work.with( title: "Контрольная работа - Психологическое содержание управления социальным графом - <NAME>.", header: "unitech-2023-header.png", department_name: "Кафедра гуманитарных и социальных дисциплин", institute_name: "Институт проектного менеджмента ...
https://github.com/k0tran/bsbd_labs_s2
https://raw.githubusercontent.com/k0tran/bsbd_labs_s2/master/reports/lab3.typ
typst
#import "template.typ": * #show: lab.with(n: 3) = Начало работы == БД и директория Расположение кластера PostgreSQL по умолчанию: - Linux: `/var/lib/postgresql/<version>/data` - macOS: `/usr/local/var/postgres` - Windows: `C:\Program Files\PostgreSQL\<version>\data` Где version номер версии PostgreSQL. #pic(img: "...
https://github.com/Mc-Zen/quill
https://raw.githubusercontent.com/Mc-Zen/quill/main/examples/fault-tolerant-measurement.typ
typst
MIT License
#import "../src/quill.typ": * #let group = gategroup.with(stroke: (dash: "dotted", thickness: .5pt)) #quantum-circuit( row-spacing: 6pt, fill-wires: false, lstick($|0〉$), 10pt, group(3, 2, label: (content: "Prepare")), $H$, ctrl(2), 3pt, group(4, 2, label: (content: "Verify")), 3, group(7, 3, label: (c...
https://github.com/khalilaouini7/lab-4-compte-rendu-
https://raw.githubusercontent.com/khalilaouini7/lab-4-compte-rendu-/main/Lab-4.typ
typst
#import "Class.typ": * #show: ieee.with( title: [#text(smallcaps("Lab #4: ROS2 using RCLPY in Julia"))], /* abstract: [ #lorem(10). ], */ authors: ( ( name: "<NAME>", department: [Senior-lecturer, Dept. of EE], organization: [ISET Bizerte --- Tunisia], profile: "a-mhamdi"...
https://github.com/tony-rsa/thonifho.muhali.cv
https://raw.githubusercontent.com/tony-rsa/thonifho.muhali.cv/main/src/sections/ru/skills.typ
typst
MIT License
#import "../../template.typ": * #cvSection("Навыки") #cvSkill( type: [Технологии], info: [#techSkills], ) #cvSkill( type: [Языки], info: [Английский (свободный) #hBar() Русский (родной)], )
https://github.com/Lypsilonx/Game-of-Intrigue
https://raw.githubusercontent.com/Lypsilonx/Game-of-Intrigue/main/Game%20of%20Intrigue.typ
typst
#import "data.typ": * #import "cards.typ": * #show heading.where(level: 1): it => { if it.level == 1 { set text(size: 2em) v(1em, weak: true) } else if it.level == 2 { set text(size: 1.5em) } it } #set heading(numbering: "1.") #show outline.entry: it => { if it.level == 1 { v(1.2em, weak: tr...
https://github.com/napleon-liu/my-cv
https://raw.githubusercontent.com/napleon-liu/my-cv/main/README.md
markdown
# Chinese Resume in Typst 使用 Typst 编写的中文简历. 样式上, 参考了 [liweitianux/resume](https://github.com/liweitianux/resume) 与 [uniquecv](https://github.com/dyinnz/uniquecv). 同时也参考了一部分 [uniquecv-typst](https://github.com/gaoachao/uniquecv-typst) 的写法. 语法上, 基于以下 Typst 的设计原则编写 (简洁一致与组合原则): > - **Simplicity through Consistency:** ...
https://github.com/kazewong/lecture-notes
https://raw.githubusercontent.com/kazewong/lecture-notes/main/DeepLearning/Transformer/transformer.typ
typst
#set page( paper: "us-letter", header: align(center, text(17pt)[ *Introduction to transformer* ]), numbering: "1", ) #set heading(numbering: "1.") #outline( indent: 1em ) #set text( font: "Times New Roman", size: 11pt ) #set par(justify: true) = Background In the first part of this lecture, we a...
https://github.com/Enter-tainer/typstyle
https://raw.githubusercontent.com/Enter-tainer/typstyle/master/tests/assets/test.typ
typst
Apache License 2.0
#link("http://example.com")[test]
https://github.com/ChristophVanDeest/FH-Kiel-Typst-Template
https://raw.githubusercontent.com/ChristophVanDeest/FH-Kiel-Typst-Template/main/lib/template.typ
typst
MIT License
#let template( is-thesis: true, is-master-thesis: false, is-bachelor-thesis: true, is-report: false, language: "en", title-de: "", keywords-de: none, abstract-de: none, title-en: none, keywords-en: none, abstract-en: none, author: "", faculty: "", department: "", study-course: "", su...
https://github.com/maxtremblay/cv
https://raw.githubusercontent.com/maxtremblay/cv/main/sources/fr.typ
typst
#import "template.typ": cv, dateItem, reference, grant #set text(lang: "fr") #show: doc => cv( doc, name: [<NAME>], contact: ([t.maxime#sym.at\pm.me], [418-590-3429]) ) = Éducation #dateItem( date: [2022], title: [Doctorat en physique], subtitle: [ Université de Sherbrooke | Sherbrooke, Québec, C...
https://github.com/goshakowska/Typstdiff
https://raw.githubusercontent.com/goshakowska/Typstdiff/main/tests/test_working_types/quoted/quoted_updated.typ
typst
#quote[I know that this quote was updated.] #quote[Only the dead have seen the end of war.]
https://github.com/typst/packages
https://raw.githubusercontent.com/typst/packages/main/packages/preview/unichar/0.1.0/ucd/block-102A0.typ
typst
Apache License 2.0
#let data = ( ("CARIAN LETTER A", "Lo", 0), ("CARIAN LETTER P2", "Lo", 0), ("CARIAN LETTER D", "Lo", 0), ("CARIAN LETTER L", "Lo", 0), ("CARIAN LETTER UUU", "Lo", 0), ("CARIAN LETTER R", "Lo", 0), ("CARIAN LETTER LD", "Lo", 0), ("CARIAN LETTER A2", "Lo", 0), ("CARIAN LETTER Q", "Lo", 0), ("CARIAN LE...
https://github.com/The-Notebookinator/notebookinator
https://raw.githubusercontent.com/The-Notebookinator/notebookinator/main/themes/linear/components/glossary.typ
typst
The Unlicense
#import "/utils.typ" #let glossary = utils.make-glossary(glossary => { stack( dir: ttb, spacing: 15pt, ..for entry in glossary { ( [ #box( inset: 0.5em, fill: gray, )[== #entry.word] #h(5pt) #box( baseline: -10pt, ...
https://github.com/ludwig-austermann/modpattern
https://raw.githubusercontent.com/ludwig-austermann/modpattern/main/examples/pretty_letter.typ
typst
MIT License
#import "../main.typ": * #let nice-border(S, T, p) = place(top+left, polygon( (S, S), (100% - S, S), (100% - S, 100% - S), (S, 100% - S), (S, S), (T, T), ((T, 100% - T)), (100% - T, 100% - T), (100% - T, T), (T, T), fill: p )) #let lred = red.lighten(50%) #let patsize = (16pt, 8pt) #set page( background: { ...