repo
stringlengths
26
115
file
stringlengths
54
212
language
stringclasses
2 values
license
stringclasses
16 values
content
stringlengths
19
1.07M
https://github.com/yhtq/Notes
https://raw.githubusercontent.com/yhtq/Notes/main/计算机网络/第一节.typ
typst
#import "../template.typ": * #show: note.with( title: "计算机网络", author: "YHTQ", date: none, logo: none, ) #let chapter1 = [ = 前言 - 课程考核 :mooc (15%,通过即满)+4次lab取3次最高分(各10%)+期末考试(55%) - Lab:https://n2sys-edu.github.io/Lab-Frontend-Pub/ - 不点名 #set heading(outlined: false) == 通信网络:结点(Node)+链路(Link) - 在计算机诞生前便有许多通讯...
https://github.com/mismorgano/UG-FunctionalAnalyisis-24
https://raw.githubusercontent.com/mismorgano/UG-FunctionalAnalyisis-24/main/README.md
markdown
# UG-FunctionalAnalyisis-24 Notes and assignments for Functional Analysis using [typst](https://typst.app/) instead of $\LaTeX$ ## Template All my assignments (tareas) and exams (exámenes) use [this](config.typ) template according to [this](https://typst.app/docs/tutorial/making-a-template/) tutorial.
https://github.com/LDemetrios/Typst4k
https://raw.githubusercontent.com/LDemetrios/Typst4k/master/src/test/resources/suite/layout/grid/grid.typ
typst
// Test grid layouts. --- grid-columns-sizings-rect --- #let cell(width, color) = rect(width: width, height: 2cm, fill: color) #set page(width: 100pt, height: 140pt) #grid( columns: (auto, 1fr, 3fr, 0.25cm, 3%, 2mm + 10%), cell(0.5cm, rgb("2a631a")), cell(100%, forest), cell(100%, conifer), cell(100%, rgb...
https://github.com/typst/packages
https://raw.githubusercontent.com/typst/packages/main/packages/preview/minerva-report-fcfm/0.2.0/minerva-report-fcfm.typ
typst
Apache License 2.0
/** minerva-article.typ * * Este archivo contiene la estructura y estilos usados por el template. * Para definir tus propios comandos agrégalos a preamble.typ. * **/ /****************************************************************************** * Estado * * Variables de estado utilizadas por el temp...
https://github.com/ayoubelmhamdi/typst-phd-AI-Medical
https://raw.githubusercontent.com/ayoubelmhamdi/typst-phd-AI-Medical/master/chapters/ch03-mrd.typ
typst
MIT License
#import "../functions.typ": heading_center, images, italic,linkb #let finchapiter = text(fill:rgb("#1E045B"),[■]) /* * * Methode Result Dissusion 03 * */ = DETECTING LUNG CANCER NODULES. // = MÉTHODES, RÉSULTATS ET DISCUSSION == Introduction. Radiotherapy is a common treatment for brain tumors [Khan 2014]. It...
https://github.com/tianyaochou/resume
https://raw.githubusercontent.com/tianyaochou/resume/master/template.typ
typst
// The project function defines how your document looks. // It takes your content and some metadata and formats it. // Go ahead and customize it to your liking! #let resume(name: "<NAME>", email: "<EMAIL>", phone: "", github: "", linkedin: "", body) = { // Set the document's basic properties. set document(author: n...
https://github.com/Blezz-tech/math-typst
https://raw.githubusercontent.com/Blezz-tech/math-typst/main/Картинки/Демо вариант 2024/Задание 02.1-1.typ
typst
#import "@preview/cetz:0.1.2" #import "/lib/my_cetz.typ": defaultStyle #set align(center) #cetz.canvas(length: 0.5cm, { import cetz.draw: * import cetz.vector: add, div set-style(..defaultStyle) let (Ox, Ox1, Oy, Oy1) = (-2, 14, -2, 11) let (X, Y) = ((Ox1, 0), (0, Oy1)) // Сетка grid((Ox,Oy), (Ox1...
https://github.com/mismorgano/UG-DifferentialGeometry23
https://raw.githubusercontent.com/mismorgano/UG-DifferentialGeometry23/main/Tareas/Tarea-06/Tarea-06.typ
typst
#import "@preview/lemmify:0.1.4": * #let title = [ Geometría Diferencial\ Tarea 6 ] #let author = [ <NAME> ] #let book = [ Differential Geometry of Curves and Surfaces ] #let ( theorem, lemma, corollary, remark, proposition, example, proof, rules: thm-rules ) = default-theorems("thm-group", thm-numbering...
https://github.com/Quaternijkon/notebook
https://raw.githubusercontent.com/Quaternijkon/notebook/main/content/数据结构与算法/.chapter-数据结构/字符串/字符串匹配.typ
typst
#import "../../../../lib.typ":* === #Title( title: [字符串匹配], reflink: "https://leetcode.cn/problems/find-the-index-of-the-first-occurrence-in-a-string/description/", level: 2, )<字符串匹配> #note( title: [ 找出字符串中第一个匹配项的下标 ], description: [ 给你两个字符串 haystack 和 needle ,请你在 haystack 字符串中找出 needle 字符串的第一个匹配项的下标(下标从...
https://github.com/DrGo/typst-tips
https://raw.githubusercontent.com/DrGo/typst-tips/main/refs/samples/tufte-handout/tufte-handout.typ
typst
// Size of the left "margin" (note area) #let margin-size = 23.5% // Spacer so that main content and notes don't rub up against each other #let margin-space = 0.2in /* * Inserts a margin note containing `content` * `dy` can be used to adjust the note content vertically */ #let margin-note(dy: -1em, content) = { ...
https://github.com/Servostar/dhbw-abb-typst-template
https://raw.githubusercontent.com/Servostar/dhbw-abb-typst-template/main/src/pages/appendix.typ
typst
MIT License
// .--------------------------------------------------------------------------. // | Appendix | // '--------------------------------------------------------------------------' // Author: <NAME> // Edited: 28.06.2024 // License: MIT #let show-appendix(con...
https://github.com/Robotechnic/diagraph
https://raw.githubusercontent.com/Robotechnic/diagraph/main/examples/simplegraph.typ
typst
MIT License
#import "@preview/diagraph:0.3.0": * #set heading(numbering: (..nums) => [Graph #numbering("1", ..nums):]) #let render-example(dot, ..args) = style(styles => { let code = raw(dot.text, lang: "dot") let graph = render(dot.text, ..args) let side-by-side = measure(code, styles).width + measure(graph, styles).wid...
https://github.com/howardlau1999/sysu-thesis-typst
https://raw.githubusercontent.com/howardlau1999/sysu-thesis-typst/master/functions/underline.typ
typst
MIT License
#let chineseunderline(s, width: 300pt, bold: false) = { let chars = s.clusters() let n = chars.len() style(styles => { let i = 0 let now = "" let ret = () while i < n { let c = chars.at(i) let nxt = now + c if measure(nxt, styles).width > width or c == "\n" { if bold { ...
https://github.com/kdog3682/typkit
https://raw.githubusercontent.com/kdog3682/typkit/main/0.1.0/src/patterns.typ
typst
#let criss-cross = pattern(size: (3pt, 3pt), { place(line(start: (0%, 0%), end: (100%, 100%))) place(line(start: (0%, 100%), end: (100%, 0%))) }) #let dots = pattern(size: (10pt, 10pt), { circle(fill: black, radius: 0.5pt) }) #let stripes() = { let pat = pattern(size: (10pt, 10pt), place(line(start: ...
https://github.com/frectonz/the-pg-book
https://raw.githubusercontent.com/frectonz/the-pg-book/main/book/130.%20seesv.html.typ
typst
seesv.html Where to See Silicon Valley Want to start a startup? Get funded by Y Combinator. October 2010Silicon Valley proper is mostly suburban sprawl. At first glance it doesn't seem there's anything to see. It's not the sort of place that has conspicuous monuments. But if you look, there are subtle signs ...
https://github.com/profetia/me
https://raw.githubusercontent.com/profetia/me/main/src/option.typ
typst
#let __conf = state("lib.option.__conf", (:)) #let __declare(pred, content) = context { if pred(__conf.get()) { content } else { [] } } #let option(key, value) = { __conf.update((dict) => { if dict.at(key, default: none) == none { dict.insert(key, value) } else { d...
https://github.com/herbhuang/utdallas-thesis-template-typst
https://raw.githubusercontent.com/herbhuang/utdallas-thesis-template-typst/main/README.md
markdown
MIT License
# thesis-template-typst This repository provides a comprehensive Typst template for writing your Bachelor's or Master's thesis at the CIT School of TUM (Technical University of Munich). It includes two types of documents: a proposal template and a thesis template, both specifically designed for students in the field of...
https://github.com/polarkac/MTG-Stories
https://raw.githubusercontent.com/polarkac/MTG-Stories/master/stories/035%20-%20Core%202019/001_Chronicle%20of%20Bolas%3A%20The%20Twins.typ
typst
#import "@local/mtgstory:0.2.0": conf #show: doc => conf( "Chronicle of Bolas: The Twins", set_name: "Core 2019", story_date: datetime(day: 13, month: 06, year: 2018), author: "<NAME>", doc ) "Did you hear that?" The glissade of ticking and popping sounds had been faint, almost inaudible. If it ha...
https://github.com/jens-hj/ds-exam-notes
https://raw.githubusercontent.com/jens-hj/ds-exam-notes/main/lectures/10.typ
typst
#import "../lib.typ": * #show link: it => underline(emph(it)) #set math.equation(numbering: "(1)") #set enum(full: true) #set math.mat(delim: "[") #set math.vec(delim: "[") #set list(marker: text(catppuccin.latte.lavender, sym.diamond.filled)) #show heading.where(level: 1): it => text(size: 22pt, it) #show heading.wh...
https://github.com/jgm/typst-hs
https://raw.githubusercontent.com/jgm/typst-hs/main/test/typ/math/syntax-02.typ
typst
Other
// Test common symbols. $ dot \ dots \ ast \ tilde \ star $
https://github.com/sysu/better-thesis
https://raw.githubusercontent.com/sysu/better-thesis/main/others/master-proposal.typ
typst
MIT License
#import "style.typ": 字体, 字号 #let table-stroke = 0.5pt #set page(numbering: "1") #set par(leading: 1em) // 封面 #{ set align(center) v(5em) image("master-proposal-logo.png", width: 7cm) v(2em) par(text( font: 字体.黑体, size: 字号.一号, weight: "bold", "某某学院\n硕士研究生论文开题报告", )) v(8em) let in...
https://github.com/liuguangxi/suiji
https://raw.githubusercontent.com/liuguangxi/suiji/main/tests/test-discrete-f.typ
typst
MIT License
#set document(date: none) #import "/src/lib.typ": * #let print-arr(arr) = { if type(arr) != array { [#raw(str(arr) + " ")] } else { [#raw(arr.map(it => str(it)).join(" "))] } } #{ let rng = gen-rng-f(42) let arr = () let p = (1,) let g = discrete-preproc-f(p) [#g \ ] ...
https://github.com/fenjalien/metro
https://raw.githubusercontent.com/fenjalien/metro/main/src/metro.typ
typst
Apache License 2.0
#import "defs/units.typ" #import "defs/prefixes.typ" #import "impl/impl.typ" #import "utils.typ": combine-dict #import "dependencies.typ": strfmt #let _state-default = ( units: units._dict, prefixes: prefixes._dict, prefix-power-tens: prefixes._power-tens, powers: ( square: impl.raiseto([2]), cubic: im...
https://github.com/typst/packages
https://raw.githubusercontent.com/typst/packages/main/packages/preview/unichar/0.1.0/ucd/block-11100.typ
typst
Apache License 2.0
#let data = ( ("CHAKMA SIGN CANDRABINDU", "Mn", 230), ("CHAKMA SIGN ANUSVARA", "Mn", 230), ("CHAKMA SIGN VISARGA", "Mn", 230), ("CHAKMA LETTER AA", "Lo", 0), ("CHAKMA LETTER I", "Lo", 0), ("CHAKMA LETTER U", "Lo", 0), ("CHAKMA LETTER E", "Lo", 0), ("CHAKMA LETTER KAA", "Lo", 0), ("CHAKMA LETTER KHAA",...
https://github.com/mariunaise/HDA-Thesis
https://raw.githubusercontent.com/mariunaise/HDA-Thesis/master/graphics/plots/temperature/global_diffs/global_diffs.typ
typst
#import "@preview/cetz:0.2.2" #let data = csv("./sorted_configurations_with_diff.csv") #let errorrate = data.enumerate().map( row => (row.at(0),calc.log(float(row.at(1).at(1)))) ) #let diff = data.enumerate().map( row => (row.at(0),float(row.at(1).at(2))) ) #let conf = data.enumerate().map( row => (row.at(0), ...
https://github.com/typst/packages
https://raw.githubusercontent.com/typst/packages/main/packages/preview/unichar/0.1.0/ucd/block-1B00.typ
typst
Apache License 2.0
#let data = ( ("BALINESE SIGN ULU RICEM", "Mn", 0), ("BALINESE SIGN ULU CANDRA", "Mn", 0), ("BALINESE SIGN CECEK", "Mn", 0), ("BALINESE SIGN SURANG", "Mn", 0), ("BALINESE SIGN BISAH", "Mc", 0), ("BALINESE LETTER AKARA", "Lo", 0), ("BALINESE LETTER AKARA TEDUNG", "Lo", 0), ("BALINESE LETTER IKARA", "Lo",...
https://github.com/kdog3682/mathematical
https://raw.githubusercontent.com/kdog3682/mathematical/main/0.1.0/src/examples/convex-hull-attempt-1.typ
typst
// doesnt really work // Helper function to calculate the angle between two points #let getAngle(p1, p2) = { calc.atan2(p2.at(1) - p1.at(1), p2.at(0) - p1.at(0)) } // Helper function to calculate the Euclidean distance between two points #let getHypot(p1, p2) = { let dx = p2.at(0) - p1.at(0) let dy = p2.at(1) - ...
https://github.com/enseignantePC/2023-24
https://raw.githubusercontent.com/enseignantePC/2023-24/master/Chapitre1/ex/correction.typ
typst
// Get Polylux from the official package repository #import "@preview/polylux:0.3.1": * // Make the paper dimensions fit for a presentation and the text larger #set page(paper: "presentation-16-9") #set text(size: 25pt) #let slide = polylux-slide #let obo = one-by-one // Use #polylux-slide to create a slide and style i...
https://github.com/ralphmb/My-Dissertation
https://raw.githubusercontent.com/ralphmb/My-Dissertation/main/sections/survival.typ
typst
Creative Commons Zero v1.0 Universal
#show table: set text(8pt) #show table: set align(center) == Interactions between variables and survival time The time to first goal (TTFG) is a statistic of interest for both bookmakers and bettors. Many bookmakers offer the ability to bet on a timeframe in which the first goal will be scored, usually dividing the mat...
https://github.com/jamesrswift/pixel-pipeline
https://raw.githubusercontent.com/jamesrswift/pixel-pipeline/main/src/pipeline/canvas/lib.typ
typst
The Unlicense
// #import "/src/package.typ": package #import "/src/math/lib.typ": * #import "process.typ" #let paint( scale: 1em, background: none, body ) = context { if body == none {return []} let (bounds, drawables) = process.many(body) if bounds == none {return []} // Filter hidden drawables drawables = drawa...
https://github.com/kmitsutani/a_note_on_Hioki_I-1
https://raw.githubusercontent.com/kmitsutani/a_note_on_Hioki_I-1/main/README.md
markdown
MIT No Attribution
# typst-jp-note-template このリポジトリは [kimushun1101/typst-jp-conf-template](https://github.com/kimushun1101/typst-jp-conf-template) をフォークして作成した Typst でアブストラクト付きのノートを書く時のテンプレートです. 研究の途中で共同研究者等に共有するようなものを想定しています. 主に - 2カラムの廃止 - 様々なスペースをゆったりととる という変更を行い個人用ノートとして見やすくなるようにしました. また Appendix を追加しました. ## ディレクトリ構造...
https://github.com/stat20/stat20handout-typst
https://raw.githubusercontent.com/stat20/stat20handout-typst/main/_extensions/stat20handout/typst-show.typ
typst
#show: doc => stat20handout( $if(title)$ title: [$title$], $endif$ $if(title-prefix)$ title-prefix: [$title-prefix$], $endif$ $if(course-name)$ course-name: [$course-name$], $endif$ $if(semester)$ semester: [$semester$], $endif$ $if(date)$ date: [$date$], $endif$ $if(margin)$ margin: ($for(margin/pairs)$$m...
https://github.com/flechonn/interface-typst
https://raw.githubusercontent.com/flechonn/interface-typst/main/BD/TYPST/exo1.typ
typst
#show terms: meta => { let title = label("Addition Exercise") let duration = label("30min") let difficulty = label("easy") let solution = label("1") let figures = label("") let points = label("10pts") let bonus = label("1") let author = label("") let references = label("Link") le...
https://github.com/loreanvictor/master-thesis
https://raw.githubusercontent.com/loreanvictor/master-thesis/main/thesis.typ
typst
MIT License
#import "thesis_template.typ": * #import "common/cover.typ": * #import "common/titlepage.typ": * #import "thesis_typ/disclaimer.typ": * #import "thesis_typ/acknowledgement.typ": * #import "thesis_typ/abstract_en.typ": * #import "thesis_typ/abstract_de.typ": * #import "common/metadata.typ": * #import "common/math_utils....
https://github.com/Az-21/typst-material-you
https://raw.githubusercontent.com/Az-21/typst-material-you/main/Preview/preview.typ
typst
Apache License 2.0
#import "m3.typ": m3light, m3dark #set page(paper:"a4", margin: 32pt) #let m3box(color) = box(width: 32pt, height: 32pt, fill: color, radius: 2pt, stroke: 1pt) $ overbracket( #m3box(m3light.primary) #m3box(m3light.onPrimary) #m3box(m3light.primaryContainer) #m3box(m3light.onPrimaryContainer), "Light Primary" ) #h...
https://github.com/typst/packages
https://raw.githubusercontent.com/typst/packages/main/packages/preview/cetz/0.3.0/src/lib/tree.typ
typst
Apache License 2.0
// CeTZ Library for Layouting Tree-Nodes #import "/src/util.typ" #import "/src/draw.typ" #import "/src/coordinate.typ" #import "/src/vector.typ" #import "/src/matrix.typ" #import "/src/process.typ" #import "/src/anchor.typ" as anchor_ #let typst-content = content // Default edge draw callback // // - from (string): S...
https://github.com/7sDream/fonts-and-layout-zhCN
https://raw.githubusercontent.com/7sDream/fonts-and-layout-zhCN/master/chapters/06-features-2/positioning/positioning.typ
typst
Other
#import "/template/template.typ": web-page-template #import "/template/components.typ": note #import "/lib/glossary.typ": tr #show: web-page-template // Types of Positioning Rule == 各种类型的#tr[positioning]规则 <section:positioning-rule-types> // After all the substitution rules have been processed, we should have the c...
https://github.com/donabe8898/typst-slide
https://raw.githubusercontent.com/donabe8898/typst-slide/main/opc/単発/IRC/main.typ
typst
MIT License
#import "@preview/polylux:0.3.1": * #import themes.metropolis: * #show: metropolis-theme.with( aspect-ratio: "16-9", footer: [IRC], // short-author: "donabe8898", // short-date: none, // color-a: rgb("#0C6291"), // color-b:rgb("#A63446"), // color-c:rgb("#FBFEF9"), // progress-bar: true ) #show lin...
https://github.com/WinstonMDP/knowledge
https://raw.githubusercontent.com/WinstonMDP/knowledge/master/SLAE.typ
typst
#import "cfg.typ": cfg #show: cfg = Система линейных алгебраических уравнений $(a_(i j) | b_i)$ - расширенная матрица системы. Совместная СЛАУ - это СЛАУ, у которой существует решение. Определённая СЛАУ - это СЛАУ, у которой решение единственно. Элементарное преобразование типа I - это поменять местами две строки С...
https://github.com/agarmu/typst-templates
https://raw.githubusercontent.com/agarmu/typst-templates/main/notes/main.typ
typst
MIT License
#import "template.typ": * #import "theorems.typ": * #import "symbols.typ": * #show: thmrules #show: ilm.with( title: [Filename], author: "<NAME>", date: none, abstract: [], preface: [], paper-size: "us-letter", figure-index: (enabled: true), table-index: (enabled: true), listing-index: (enabled: fal...
https://github.com/thanhdxuan/dacn-report
https://raw.githubusercontent.com/thanhdxuan/dacn-report/master/Lab02/contents/02-introduce.typ
typst
#set enum(numbering: "a)") = *Hệ mã bất đối xứng* == Câu 1: Cho biết vai trò của the public và private key trong hệ mã khoá công khai với ứng dụng mã hoá? - _Private key_: khóa riêng dùng để giải mã dữ liệu ai đó đã mã hóa <KEY> của chính mình và gửi dữ liệu đó cho mình. - _Public key_: Khóa công khai để tiến hành mã h...
https://github.com/erfan-khadem/resume
https://raw.githubusercontent.com/erfan-khadem/resume/main/modules_en/education.typ
typst
Apache License 2.0
#import "../brilliant-CV/template.typ": * #cvSection("Education") #cvEntry( title: [Bachelors of Science in Electrical Engineering], society: [Sharif University of Technolog], date: [2022 - 2026], location: [Tehran, Iran], logo: "../src/logos/sharif.png", description: list( [Optional Cou...
https://github.com/typst/packages
https://raw.githubusercontent.com/typst/packages/main/packages/preview/flyingcircus/3.0.0/src/Impl.typ
typst
Apache License 2.0
#import "@preview/cetz:0.2.2" #import "@preview/cuti:0.2.1": regex-fakeitalic #import "@preview/tablex:0.0.8": gridx, cellx, hlinex, vlinex /// Sets the tex to the Koch Fette FC font for people who don't want to remember that. /// /// - body (content) /// - ..args: Any valid argument to the text function /// -> conten...
https://github.com/hugo-s29/typst-algo
https://raw.githubusercontent.com/hugo-s29/typst-algo/master/algo.typ
typst
MIT License
#let algorithm = (it) => box(inset: (x: 15pt, y: 10pt), stroke: black + 1pt, radius: 5pt, align(left, it)) #let algo_style = (it) => strong(it) #let algo_call_style = (it) => smallcaps(it) #let algo_instruction = (it) => it // for customization purposes #let algo_if = (cond) => algo_instruction[ #algo_style[If] #cond...
https://github.com/francescoo22/kt-uniqueness-system
https://raw.githubusercontent.com/francescoo22/kt-uniqueness-system/main/src/proof-tree.typ
typst
// Code from: https://github.com/SkiFire13/typst-prooftree #let prooftree( spacing: ( horizontal: 1em, vertical: 0.5em, lateral: 0.5em, ), label: ( // TODO: split offset into horizontal and vertical offset: -0.1em, side: left, padding: 0.2em, ), line-stroke: 0.5pt, ..rules ) = {...
https://github.com/jneug/schule-typst
https://raw.githubusercontent.com/jneug/schule-typst/main/src/util/harbinger.typ
typst
MIT License
#import "@preview/oxifmt:0.2.0": strfmt #let oxi-template = ` <svg width="{canvas-width}" height="{canvas-height}" xmlns="http://www.w3.org/2000/svg" > <!-- Definitions for reusable components --> <defs> <filter id="shadow" x="-100%" y="-100%" width="300%" height="300%"> <feFlood flood-opa...
https://github.com/qo/term
https://raw.githubusercontent.com/qo/term/main/examples/figure/figure.typ
typst
#import "../../term.typ": term #let content = `$ ls -la total 140 drwxr-xr-x. 1 null null 48 Nov 30 01:11 . drwx------. 1 null null 1032 Dec 3 18:30 .. -rw-r--r--. 1 null null 23093 Nov 30 00:40 s1.png -rw-r--r--. 1 null null 26076 Nov 30 01:02 s2.png -rw-r--r--. 1 null null 42784 Nov 30 01:18 s3.png -rw-r--r--....
https://github.com/justinvulz/document
https://raw.githubusercontent.com/justinvulz/document/main/summer_camp/DMA_summer_group_wb.typ
typst
#import "../typst_packages/lecture.typ": * #import "@preview/cetz:0.2.2" #import "@preview/fletcher:0.4.5" as fletcher: diagram,node,edge #import fletcher.shapes:circle #show par: set block(spacing: 0.9em) #show math.equation: set block(spacing: 0.9em) #let theorem = thmbox( "p", "Theorem", // fill: rgb("e8e8f8")...
https://github.com/Kasci/LiturgicalBooks
https://raw.githubusercontent.com/Kasci/LiturgicalBooks/master/CSL_old/oktoich/Hlas4/1_Pondelok.typ
typst
#let V = ( "HV": ( ("", "Dál jesí známenije", "Sohriších k tebí čelovikoľúbče, ne po jestestvú jáko čelovík, da isprošú proščénije: no páče čelovíka, i výše jestestvá, i páče proščénija. No íže výše jestéstvennych ustáv, i páče postižénija mýsli, čelovík Spáse mój býv, i páče umá čelovikoľúbnoje imýj, pomíluj mjá...
https://github.com/katamyra/Notes
https://raw.githubusercontent.com/katamyra/Notes/main/Compiled%20School%20Notes/CS3001/Sections/Section6.typ
typst
= The Ice Cream Club == Consumer Protection From a consumer protection point of view, this is a clear violation of their privacy. These men were obviously not informed of their data being sold at all, so their privacy is getting invaded. Even if some might argue that it "was in the fine print", or something simila...
https://github.com/elteammate/typst-compiler
https://raw.githubusercontent.com/elteammate/typst-compiler/main/src/reflection-ast.typ
typst
#import "utils.typ": * #let ast_node_type = mk_enum( debug: true, "paren", "ident", "unknown", "member_access", "call", "call_param_list", "content", "hash_expr", "stmt", "code_block", "content_block", "let_", "if_", "else_", "while_", "for_", "continue_", "break_", "return...
https://github.com/Toniolo-Marco/git-for-dummies
https://raw.githubusercontent.com/Toniolo-Marco/git-for-dummies/main/slides/practice/remote.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 "/slides/components/gh-button.typ": gh_button #import ...
https://github.com/monaqa/typscrap.nvim
https://raw.githubusercontent.com/monaqa/typscrap.nvim/master/class/colors.typ
typst
#let fg = ( w0: rgb("#808080"), p0: rgb("#c145b2"), r0: rgb("#ce5623"), g0: rgb("#349900"), c0: rgb("#009caa"), b0: rgb("#4f7ae1"), w1: rgb("#777777"), p1: rgb("#ae4aa1"), r1: rgb("#b95630"), g1: rgb("#3d8d1a"), c1: rgb("#008f9a"), b1: rgb("#4f73c8"), w2: rgb("#6f6f6f"), p2: rgb("#9c4d90"), ...
https://github.com/jgm/typst-hs
https://raw.githubusercontent.com/jgm/typst-hs/main/test/typ/compute/calc-18.typ
typst
Other
// Error: 14-31 exponent is too large #calc.pow(2, 10000000000000000)
https://github.com/Myriad-Dreamin/typst.ts
https://raw.githubusercontent.com/Myriad-Dreamin/typst.ts/main/fuzzers/corpora/text/smartquotes_00.typ
typst
Apache License 2.0
#import "/contrib/templates/std-tests/preset.typ": * #show: test-page // Use language quotes for missing keys, allow partial reset #set smartquote(quotes: "«»") "Double and 'Single' Quotes" #set smartquote(quotes: (double: auto, single: "«»")) "Double and 'Single' Quotes"
https://github.com/sitandr/typst-examples-book
https://raw.githubusercontent.com/sitandr/typst-examples-book/main/src/basics/tutorial/advanced_styling.md
markdown
MIT License
# Advanced styling ## The `show` rule ```typ Advanced styling comes with another rule. The _`show` rule_. Now please compare the source code and the output. #show "Be careful": strong[Play] This is a very powerful thing, sometimes even too powerful. Be careful with it. #show "it is holding me hostag...
https://github.com/csimide/cslper
https://raw.githubusercontent.com/csimide/cslper/master/README.md
markdown
# Cslper 自用的 Typst 引用文献处理脚本。 在 GB/T 7714 标准中,中英文引文需要分别使用 `等` 或 `et al.` ,这一功能需要 CSL-M 扩展才能实现。Typst 使用的 CSL 解析器 [citationberg](https://github.com/typst/citationberg) 暂不支持 [CSL-M](https://citeproc-js.readthedocs.io/en/latest/csl-m/index.html) 扩展,因此需要“曲线”实现。 > [!NOTE] > > 如果使用 GB/T 7714-2015-numeric 及其衍生格式,建议使用 > https...
https://github.com/Myriad-Dreamin/typst.ts
https://raw.githubusercontent.com/Myriad-Dreamin/typst.ts/main/fuzzers/corpora/layout/table_03.typ
typst
Apache License 2.0
#import "/contrib/templates/std-tests/preset.typ": * #show: test-page // Test inset. #table( columns: 3, inset: 10pt, [A], [B], [C] ) #table( columns: 3, inset: (y: 10pt), [A], [B], [C] ) #table( columns: 3, inset: (left: 20pt, rest: 10pt), [A], [B], [C] ) #table( columns: 2, inset: ( lef...
https://github.com/topdeoo/NENU-Thesis-Typst
https://raw.githubusercontent.com/topdeoo/NENU-Thesis-Typst/master/utils/format.typ
typst
#import "@preview/cuti:0.2.1": * // 中文缩进 #let indent = h(2em) // 假段落,附着于 heading 之后可以实现首行缩进 #let empty-par = par[#box()] #let fake-par = context empty-par + v(-measure(empty-par + empty-par).height) #let invisible-heading(..args) = { set text(size: 0pt, fill: white) heading(numbering: none, ..args) } #let unpac...
https://github.com/Amelia-Mowers/typst-tabut
https://raw.githubusercontent.com/Amelia-Mowers/typst-tabut/main/doc/example-snippets/basic.typ
typst
MIT License
#import "@preview/tabut:<<VERSION>>": tabut #import "example-data/supplies.typ": supplies #tabut( supplies, // the source of the data used to generate the table ( // column definitions ( header: [Name], // label, takes content. func: r => r.name // generates the cell content. ), (header: [...
https://github.com/tingerrr/typst-test
https://raw.githubusercontent.com/tingerrr/typst-test/main/migrating.md
markdown
MIT License
# Migrating This file documents breaking changes and how to handle them while using the main branch of typst-test. The entries are ordered in descending relevance, i.e. last breaking change first. This file will be removed on the first release, as from then on, a changelog shall be curated. ## CI semi stable tag pre-...
https://github.com/catppuccin/typst
https://raw.githubusercontent.com/catppuccin/typst/main/README.md
markdown
MIT License
<h3 align="center"> <img src="https://raw.githubusercontent.com/catppuccin/catppuccin/main/assets/logos/exports/1544x1544_circle.png" width="100" alt="Logo"/><br/> <img src="https://raw.githubusercontent.com/catppuccin/catppuccin/main/assets/misc/transparent.png" height="30" width="0px"/> Catppuccin for <a href="htt...
https://github.com/Skimmeroni/Appunti
https://raw.githubusercontent.com/Skimmeroni/Appunti/main/C++/Introduzione/Struct.typ
typst
Creative Commons Zero v1.0 Universal
#import "@preview/showybox:2.0.1": showybox Similmente agli array, che sono tipi primitivi, le *struct* sono considerate tipi compositi. Di fatto, una struct é un "raggruppamento" di dati anche di tipo diverso, chiamati *campi*. Sono di fatto una forma piú "rudimentale" del concetto di classe. Tutti i dati di una stru...
https://github.com/typst/packages
https://raw.githubusercontent.com/typst/packages/main/packages/preview/example/0.1.0/lib.typ
typst
Apache License 2.0
// A package can contain includable markup just like other files. This is an *example!* // Paths are package local and absolute paths refer to the package root. #import "/util/math.typ": add, sub, mul, div
https://github.com/pascalguttmann/typst-template-report-lab
https://raw.githubusercontent.com/pascalguttmann/typst-template-report-lab/main/template/chapter/evaluation.typ
typst
MIT License
= Evaluation of the Results and Error Discussion
https://github.com/Myriad-Dreamin/typst.ts
https://raw.githubusercontent.com/Myriad-Dreamin/typst.ts/main/fuzzers/corpora/layout/stack-1_03.typ
typst
Apache License 2.0
#import "/contrib/templates/std-tests/preset.typ": * #show: test-page // Test aligning things in RTL stack with align function & fr units. #set page(width: 50pt, margin: 5pt) #set block(spacing: 5pt) #set text(8pt) #stack(dir: rtl, 1fr, [A], 1fr, [B], [C]) #stack(dir: rtl, align(center, [A]), align(left, [B]), ...
https://github.com/jakobjpeters/Typstry.jl
https://raw.githubusercontent.com/jakobjpeters/Typstry.jl/main/docs/source/references/commands.md
markdown
MIT License
# Commands ```@eval using Markdown, Typstry Markdown.parse("This reference documents " * lowercasefirst(split(string(@doc Typstry.Commands), "\n")[5])) ``` ## `Typstry` ```@docs TypstCommand TypstError @typst_cmd julia_mono preamble render ``` ## `Base` ```@docs == addenv detach eltype firstindex getindex hash ig...
https://github.com/Caslus/lucasphilippe
https://raw.githubusercontent.com/Caslus/lucasphilippe/main/README.md
markdown
# Personal Page with Astro and Typst This is a personal page built using [Astro](https://astro.build/) and [Typst](https://typst.app/), with GitHub Actions automating the build process, generating an up-to-date resume, and deploying to GitHub Pages. ## Overview The site was designed to be easy to maintain, leveragin...
https://github.com/Area-53-Robotics/53E-Notebook-Over-Under-2023-2024
https://raw.githubusercontent.com/Area-53-Robotics/53E-Notebook-Over-Under-2023-2024/giga-notebook/entries/decide-drivetrain-sensors.typ
typst
Creative Commons Attribution Share Alike 4.0 International
#import "/packages.typ": notebookinator #import notebookinator: * #import themes.radial.components: * #show: create-body-entry.with( title: "Decide: Drivetrain Sensors", type: "decide", date: datetime(year: 2023, month: 07, day: 28), author: "<NAME>", witness: "<NAME>", ) We rated each configuration for: - ...
https://github.com/pta2002/typst-timeliney
https://raw.githubusercontent.com/pta2002/typst-timeliney/main/README.md
markdown
MIT License
# Timeliney Create Gantt charts automatically with Typst! Here's a fully-featured example: ```typst #import "@preview/timeliney:0.0.1" #timeliney.timeline( show-grid: true, { import timeliney: * headerline(group(([*2023*], 4)), group(([*2024*], 4))) headerline( group(..range(4).map(n =>...
https://github.com/ckunte/resume
https://raw.githubusercontent.com/ckunte/resume/master/inc/preamble.typ
typst
#let resume(doc) = { // settings set page( margin: ( x: 1in, y: 1in, ), numbering: "1 of 1", ) // text characteristics set text( font: "Segoe UI", // Segoe UI, New Computer Modern, top-edge: "cap-height", bottom-edge: "baseline", number-type: "old-style", size: 12pt,...
https://github.com/Myriad-Dreamin/tinymist
https://raw.githubusercontent.com/Myriad-Dreamin/tinymist/main/crates/tinymist-query/src/fixtures/completion-pkgs/touying-utils-_size-to-pt.typ
typst
Apache License 2.0
// path: lib.typ // - level (auto, ): The level #let _size-to-pt(size, container-dimension) = { let to-convert = size if type(size) == ratio { to-convert = container-dimension * size } measure(v(to-convert)).height } ----- // contains: level, hierachical, depth #import "lib.typ": * #current-heading(/* range...
https://github.com/NamLe0609/bias-ai-report
https://raw.githubusercontent.com/NamLe0609/bias-ai-report/main/pre_body.typ
typst
= Introduction This report focuses on a machine learning task for emotion recognition on human face images. Whilst not novel, it is a useful tool in a variety of applications, such as in marketing, human-robot interactions, healthcare, and security @Emotion-recognition-meta-review. == Description of tasks This is a...
https://github.com/EpicEricEE/typst-droplet
https://raw.githubusercontent.com/EpicEricEE/typst-droplet/master/src/droplet.typ
typst
MIT License
#import "extract.typ": extract #import "split.typ": split #import "util.typ": inline // Sets the font size so the resulting text height matches the given height. // // Parameters: // - height: The target height of the resulting text. // - text-args: Named arguments to be passed to the underlying text element. // - bod...
https://github.com/CAT-Performance-Optimization-Centre/Math-Catalogue
https://raw.githubusercontent.com/CAT-Performance-Optimization-Centre/Math-Catalogue/main/Sequence-and-Series/sequenceandseries.typ
typst
MIT License
#import "@preview/diatypst:0.1.0": * #show: slides.with( title: "Infinite Sequence & Series", // Required subtitle: "", date: "27.09.2024", authors: ("CAT性能优化中心"), // Optional Styling ratio: 16/9, layout: "large", title-color: teal, footer: true, counter: true, ) #outline() = Sequences == Limits...
https://github.com/JakMobius/courses
https://raw.githubusercontent.com/JakMobius/courses/main/mipt-os-basic-2024/sem02/main.typ
typst
#import "@preview/polylux:0.3.1": * #import "@preview/cetz:0.2.2" #import "../theme/theme.typ": * #import "./utils.typ": * #import "./floats.typ": * #import "./encodings.typ" #show: theme #title-slide[ #align(horizon + center)[ = Представление данных в компьютере АКОС, МФТИ 19 сентября, 2024 ...
https://github.com/TypstApp-team/typst
https://raw.githubusercontent.com/TypstApp-team/typst/master/tests/typ/layout/page.typ
typst
Apache License 2.0
// Test the page class. --- // Just empty page. // Should result in auto-sized page, just like nothing. #page[] --- // Just empty page with styles. // Should result in one conifer-colored A11 page. #page("a11", flipped: true, fill: conifer)[] --- // Set width and height. // Should result in one high and one wide pag...
https://github.com/NOOBDY/formal-language
https://raw.githubusercontent.com/NOOBDY/formal-language/main/q11.typ
typst
The Unlicense
#let q11 = [ 11. (Bonus) (Morphisms between `NFA`s) In this problem we assume that we are considering `NFA`s without $epsilon.alt$-transitions. Given two `NFA`s $N_i = (Q_i, Sigma, delta_i, q_(0i), F_i)$, $i = 1, 2$, we say that a relation $phi subset.eq Q_1 times Q_2$ is a _simulation_ of $N_1$ by $N_2$, denoted by...
https://github.com/trondhauklien/typst-resume
https://raw.githubusercontent.com/trondhauklien/typst-resume/main/README.md
markdown
# Typst resume Simple resume template using Typst as markup language and data imported from a json file. ### Usage Typst CLI can be installed on Windows, MacOS or Linux. See the [Typst README](https://github.com/typst/typst#installation). Compile the resume to a PDF. ```bash typst compile main.typ ``` ### Example...
https://github.com/typst-jp/typst-jp.github.io
https://raw.githubusercontent.com/typst-jp/typst-jp.github.io/main/CONTRIBUTING.md
markdown
Apache License 2.0
# 翻訳ガイドライン > [!NOTE] > 当プロジェクトの[README](./README.md)や「[はじめに:Typst Japan Communityより](https://typst-jp.github.io/docs/)」、[Typst公式](https://typst.app/)の[ライセンス](https://github.com/typst/typst/blob/main/LICENSE)や[コントリビューション・ガイド](https://github.com/typst/typst/blob/main/CONTRIBUTING.md)も併せてご参照ください。 Typst日本語ドキュメント翻訳プロジェクトに...
https://github.com/frectonz/the-pg-book
https://raw.githubusercontent.com/frectonz/the-pg-book/main/book/213.%20want.html.typ
typst
want.html What You (Want to)* Want November 2022Since I was about 9 I've been puzzled by the apparent contradiction between being made of matter that behaves in a predictable way, and the feeling that I could choose to do whatever I wanted. At the time I had a self-interested motive for exploring the question. At that...
https://github.com/Toniolo-Marco/git-for-dummies
https://raw.githubusercontent.com/Toniolo-Marco/git-for-dummies/main/slides/animations/pr.typ
typst
#import "@preview/touying:0.5.2": * #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) #slide(repeat: 2, self => [ #let (uncover, only, alternatives) = utils.methods(self) #...
https://github.com/Kasci/LiturgicalBooks
https://raw.githubusercontent.com/Kasci/LiturgicalBooks/master/CU/minea/1_generated/00_all/12_august.typ
typst
#import "../../../all.typ": * #show: book = #translation.at("M_12_august") #include "../12_august/06.typ" #pagebreak() #include "../12_august/15.typ" #pagebreak()
https://github.com/TeunSpithoven/Signals-And-Embedded-Systems
https://raw.githubusercontent.com/TeunSpithoven/Signals-And-Embedded-Systems/main/components/pre-toc.typ
typst
// CHANGE THIS TO THE CORRECT PATH #import "../template/fhict-template.typ": * = Pagina voor de table of contents == Pagina voor de table of contents === Pagina voor de table of contents ==== Pagina voor de table of contents
https://github.com/RaphGL/ElectronicsFromBasics
https://raw.githubusercontent.com/RaphGL/ElectronicsFromBasics/main/DC/chap7/4_component_failure_analysis.typ
typst
Other
=== Component failure analysis #quote(attribution: [P.A.M Dirac, physicist], block: true)[ I consider that I understand an equation when I can predict the properties of its solutions, without actually solving it. ] There is a lot of truth to that quote from Dirac. With a little modification, I can extend his wisd...
https://github.com/Enter-tainer/typst-preview
https://raw.githubusercontent.com/Enter-tainer/typst-preview/main/docs/book.typ
typst
MIT License
#import "@preview/book:0.2.3": * #show: book #book-meta( title: "Typst Preview Book", description: "Document for typst preview ", authors: ("Enter-tainer", "Myriad-Dreamin"), language: "en", repository: "https://github.com/Enter-tainer/typst-preview", summary: [ #prefix-chapter("intro.typ")[Get Start...
https://github.com/peterhellberg/typ
https://raw.githubusercontent.com/peterhellberg/typ/main/README.md
markdown
# typ :printer: A small [Zig](https://ziglang.org/) ⚡ module, as a convenience for me when writing WebAssembly [plugins](https://typst.app/docs/reference/foundations/plugin/) for [Typst](https://typst.app/) > [!NOTE] > Initially based on the [hello.zig](https://github.com/astrale-sharp/wasm-minimal-protocol/blob/mast...
https://github.com/typst/packages
https://raw.githubusercontent.com/typst/packages/main/packages/preview/zen-zine/0.1.0/README.md
markdown
Apache License 2.0
# zen-zine Excellently type-set a cute little zine about your favorite topic! Providing your eight pages in order will produce a US-Letter page with the content in a layout ready to be folded into a zine! The content is wrapped before movement so that padding and alignment are respected. Here is the template and its ...
https://github.com/iceghost/resume
https://raw.githubusercontent.com/iceghost/resume/main/main.typ
typst
#set page(paper: "a4", margin: (x: 1cm, bottom: 1.5cm, top: 1.5cm)) #set block(width: 100%) #set terms(separator: [: ], hanging-indent: 0em) #set par(linebreaks: "optimized") #set text(hyphenate: false, size: 10pt) #show heading.where(level: 2): set block( inset: (top: .5em, bottom: .5em), outset: (left: 0.2cm...
https://github.com/floriandejonckheere/utu-thesis
https://raw.githubusercontent.com/floriandejonckheere/utu-thesis/master/thesis/figures/06-automated-modularization/publications-by-year.typ
typst
#import "@preview/cetz:0.2.2": canvas, chart, draw #let slr = yaml("/bibliography/literature-review.yml") #let publications_by_year = ( "2014": 0, "2015": 0, "2016": 0, "2017": 0, "2018": 0, "2019": 0, "2020": 0, "2021": 0, "2022": 0, "2023": 0, "2024": 0, ) #for (platform) in slr.platforms.key...
https://github.com/typst/packages
https://raw.githubusercontent.com/typst/packages/main/packages/preview/cetz/0.2.0/src/lib/decorations.typ
typst
Apache License 2.0
#import "decorations/brace.typ": brace, brace-default-style, flat-brace, flat-brace-default-style #import "decorations/path.typ": zigzag, wave, coil
https://github.com/jakobjpeters/Typstry.jl
https://raw.githubusercontent.com/jakobjpeters/Typstry.jl/main/docs/source/references/strings.md
markdown
MIT License
# Strings ```@eval using Markdown, Typstry Markdown.parse("This reference documents " * lowercasefirst(split(string(@doc Typstry.Strings), "\n")[5])) ``` ## `Typstry` ```@docs Mode Typst TypstString TypstText @typst_str code markup math context show_typst(::Any, ::AbstractChar) ``` ## `Base` ```@docs IOBuffer cod...
https://github.com/csimide/SEU-Typst-Template
https://raw.githubusercontent.com/csimide/SEU-Typst-Template/master/seu-thesis/templates/degree.typ
typst
MIT License
#import "../pages/cover-degree-fn.typ": degree-cover-conf #import "../pages/title-page-degree-cn-fn.typ": title-cn-conf #import "../pages/title-page-degree-en-fn.typ": title-en-conf #import "../pages/statement-degree-fn.typ": degree-statement-conf #import "../parts/abstract-degree-fn.typ": abstract-conf #import "../par...
https://github.com/dead-summer/math-notes
https://raw.githubusercontent.com/dead-summer/math-notes/main/notes/ScientificComputing/ch1-intro-to-scicomp/computer-representation-of-numbers.typ
typst
#import "/book.typ": book-page #import "../../../templates/conf.typ": * #import "@preview/mitex:0.2.4": * #show: book-page.with(title: "Computer Representation of Numbers") #show: codly-init.with() #codly_init() = 3 Computer Representation of Numbers We should first recognize that real numbers (numbers with decimal ...
https://github.com/typst/packages
https://raw.githubusercontent.com/typst/packages/main/packages/preview/cheda-seu-thesis/0.2.1/seu-thesis/pages/statement-bachelor-ic.typ
typst
Apache License 2.0
#import "../utils/fonts.typ": 字体, 字号 #page(paper: "a4", margin: (top: 2cm+0.5cm, bottom: 2cm+0.5cm, left: 2cm+0.25cm, right: 2cm+0.25cm), { v(80pt-0.4cm) set align(left) set text(font: 字体.宋体, size: 字号.小四, lang: "zh", region: "cn") set par(leading: 11.3pt, justify: true, first-line-indent: 0pt) set line(strok...
https://github.com/GYPpro/Java-coures-report
https://raw.githubusercontent.com/GYPpro/Java-coures-report/main/.VSCodeCounter/2023-12-14_23-06-43/results.md
markdown
# Summary Date : 2023-12-14 23:06:43 Directory d:\\Desktop\\Document\\Coding\\JAVA\\Rep\\Java-coures-report Total : 37 files, 2747 codes, 167 comments, 480 blanks, all 3394 lines Summary / [Details](details.md) / [Diff Summary](diff.md) / [Diff Details](diff-details.md) ## Languages | language | files | code | co...
https://github.com/LDemetrios/Typst4k
https://raw.githubusercontent.com/LDemetrios/Typst4k/master/src/test/resources/suite/layout/grid/footers.typ
typst
--- grid-footer --- #set page(width: auto, height: 15em) #set text(6pt) #set table(inset: 2pt, stroke: 0.5pt) #table( columns: 5, align: center + horizon, table.header( table.cell(colspan: 5)[*Cool Zone*], table.cell(stroke: red)[*Name*], table.cell(stroke: aqua)[*Number*], [*Data 1*], [*Data 2*], [*Etc*]...
https://github.com/jgm/typst-hs
https://raw.githubusercontent.com/jgm/typst-hs/main/test/typ/layout/table-01.typ
typst
Other
#table(columns: 3, stroke: none, fill: green, [A], [B], [C])
https://github.com/taooceros/MATH-542-HW
https://raw.githubusercontent.com/taooceros/MATH-542-HW/main/HW7/HW7.typ
typst
#import "@local/homework-template:0.1.0": * // 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: "Math 542 HW7", authors: ("<NAME>",)) = 13.1 == 2 Show that $x^3 - 2x -2$ is irreducible over $QQ$ and let $theta$ be a root. Co...
https://github.com/herbhuang/utdallas-thesis-template-typst
https://raw.githubusercontent.com/herbhuang/utdallas-thesis-template-typst/main/utils/todo.typ
typst
MIT License
#let TODO(body, color: yellow) = { rect( width: 100%, radius: 3pt, stroke: 0.5pt, fill: color, )[ #body ] }