repo
stringlengths
26
115
file
stringlengths
54
212
language
stringclasses
2 values
license
stringclasses
16 values
content
stringlengths
19
1.07M
https://github.com/Arsenii324/matap-p2
https://raw.githubusercontent.com/Arsenii324/matap-p2/main/t-repo/lecture1.typ
typst
= Лекция == Ряды === Опр. сходимости ряда $ limits(sum)_(n=1)^infinity$ $ a_n = a$, $a_n in RR$. $A_k = limits(sum)_(n=1)^k a_n $ - частичная сумма ряда. Тогда ряд сходится, если существует конечный предел частичных сумм: $limits(sum)_(n=1)^infinity = limits(lim)_(k arrow infinity) A_k = a$. === Критерий Коши $li...
https://github.com/LDemetrios/Typst4k
https://raw.githubusercontent.com/LDemetrios/Typst4k/master/src/test/resources/suite/model/link.typ
typst
// Test hyperlinking. --- link-basic --- // Link syntax. https://example.com/ // Link with body. #link("https://typst.org/")[Some text text text] // With line break. This link appears #link("https://google.com/")[in the middle of] a paragraph. // Certain prefixes are trimmed when using the `link` function. Contact ...
https://github.com/LDemetrios/TypstTuringMachine
https://raw.githubusercontent.com/LDemetrios/TypstTuringMachine/main/turing.typ
typst
#import "@preview/cetz:0.2.2" #let display-tape(datum) = { let (tapes, carets, state) = datum let shifts = datum.at("shifts", default: auto) let shifts = if shifts != auto { shifts } else { range(0, tapes.len()).map(it => 0) } block( { heading(level: 2, h(-2.8em) + text(gray, raw("State: ")) ...
https://github.com/Miunn/Typst-Template
https://raw.githubusercontent.com/Miunn/Typst-Template/master/main.typ
typst
#import "template/template.typ": conf //#import "@preview/cetz:0.2.2" // Drawing //#import "@preview/unify:0.5.0" // SI Units //#import "@preview/codly:0.2.1" // Override code blocks //#import "@preview/curryst:0.3.0" // Inference rules //#import "@preview...
https://github.com/RiccardoTonioloDev/TypUrNotes
https://raw.githubusercontent.com/RiccardoTonioloDev/TypUrNotes/main/tun_template/appendix/bibliography.typ
typst
MIT License
#bibliography("bibliography.yml")
https://github.com/Wh4rp/OCI-Solutions
https://raw.githubusercontent.com/Wh4rp/OCI-Solutions/main/chapters/2015/main.typ
typst
#import "../../lib/problem.typ": * == Regional #problem( letter: "A", title: [¿Cuánto pan es _una marraqueta_?], statement: [ En la casa de Alejandra tendrán un asado familiar y su padre la ha enviado a comprar marraquetas para hacer choripanes. Alejandra no sabe exactamente cuánto pan es _una marraqueta_ p...
https://github.com/typst/packages
https://raw.githubusercontent.com/typst/packages/main/packages/preview/modern-uit-thesis/0.1.0/README.md
markdown
Apache License 2.0
# Modern UiT Thesis Template Port of the [uit-thesis](https://github.com/egraff/uit-thesis)-latex template to Typst. `thesis.typ` contains a full usage example, see `thesis.pdf` for a rendered pdf. ## Usage Using the Typst Universe package/template: ```console typst init @preview/modern-uit-thesis ``` ## Roadmap ...
https://github.com/jneug/schule-typst
https://raw.githubusercontent.com/jneug/schule-typst/main/tests/cu/test.typ
typst
MIT License
#import "@local/schule:1.0.0": cu #import cu: * #show: checkup.with( /* @typstyle:off */ titel: "Base template test", reihe: "TYPST-TEST", datum: "15.06.2024", nummer: "1", fach: "Typst", kurs: "101", autor: ( name: "<NAME>", kuerzel: "Ngb", ), version: "202...
https://github.com/hugoledoux/msc_geomatics_thesis_typst
https://raw.githubusercontent.com/hugoledoux/msc_geomatics_thesis_typst/main/main.typ
typst
MIT License
#import "template.typ": * #let mysettings = toml("settings.toml") #show: doc => msc-geomatics-tudelft( title: mysettings.title, author: mysettings.author, graduation-year: mysettings.graduation-year, graduation-month: mysettings.graduation-month, supervisor1: mysettings.supervisor1, supervisor2: mysettings...
https://github.com/Error-418-SWE/Documenti
https://raw.githubusercontent.com/Error-418-SWE/Documenti/src/1%20-%20Candidatura/Verbali/Interni/26-10-23/26-10-23.typ
typst
ERROR\_418 \ Verbale 26/10/23 #figure( align(center)[#table( columns: 2, align: (col, row) => (left,left,).at(col), inset: 6pt, [Mail:], [<EMAIL>], [Redattori:], [<NAME>, <NAME>], [Verificatori:], [<NAME>, <NAME>, <NAME>], [Amministratori:], [<NAME>, <NAME>], [Destinatari:], [<NAME>, <NAME>],...
https://github.com/noahjutz/AD
https://raw.githubusercontent.com/noahjutz/AD/main/notizen/sortieralgorithmen/insertion_sort/induction_2.typ
typst
#import "/components/num_row.typ": single_num_row, braced, arrowed #import "/config.typ": theme #let nums = (4, 5, 5, 2, 1) #single_num_row( nums, hl_success: (0, 2), labels: ( (0, 1, braced[`:j-1`]), (1, 2, arrowed[`j-1`]), (2, 3, braced[`j:j+1`]) ), arrow: ( from: 1, to: 2, ) )
https://github.com/csimide/SEU-Typst-Template
https://raw.githubusercontent.com/csimide/SEU-Typst-Template/master/init-files/thesis.typ
typst
MIT License
/* 使用模板前,请先安装 https://github.com/csimide/SEU-Typst-Template/tree/master/fonts 内的所有字体。 如果使用 Web App,请将这些字体上传到 Web App 项目的根目录中。 */ // 仅当使用 Web App 时,才应该使用此文件,否则都应该直接修改 `bachelor_thesis.typ` 或 `degree_thesis.typ` 文件。 // 由于本模板组包括两个模板: bachelor 和 degree // 但是只能设置一个 entrypoint // 因此使用奇怪的方法来切换模板 // 默认渲染 degree #inclu...
https://github.com/Myriad-Dreamin/typst.ts
https://raw.githubusercontent.com/Myriad-Dreamin/typst.ts/main/fuzzers/corpora/text/raw_10.typ
typst
Apache License 2.0
#import "/contrib/templates/std-tests/preset.typ": * #show: test-page // Text show rule #show raw: set text(font: "Roboto") `Roboto`
https://github.com/michidk/cv
https://raw.githubusercontent.com/michidk/cv/main/src/template/mod.typ
typst
#import "../lib/utils.typ": debugMode, prettifyUrl, get, sortDateRange #import "../lib/icons.typ": icons #import "../lib/date.typ": formatDate #import "section.typ": setupSectionHeading, experience, education, certifications, interests #import "color.typ": colors #let header(name, fontSizeAdjustment: 0pt) = { stack(...
https://github.com/KnechtTheDots/KnechtTheDots.github.io
https://raw.githubusercontent.com/KnechtTheDots/KnechtTheDots.github.io/main/CV/_extensions/kazuyanagimoto/awesomecv/typst-template.typ
typst
#import "@preview/fontawesome:0.1.0": * // const color #let color-darknight = rgb("#131A28") #let color-darkgray = rgb("#333333") #let color-middledarkgray = rgb("#414141") #let color-gray = rgb("#5d5d5d") #let color-lightgray = rgb("#999999") // Default style #let color-accent-default = luma(0) #let font-header-defa...
https://github.com/polarkac/MTG-Stories
https://raw.githubusercontent.com/polarkac/MTG-Stories/master/stories/041_Kaldheim.typ
typst
#import "@local/mtgset:0.1.0": conf #show: doc => conf("Kaldheim", doc) #include "./041 - Kaldheim/001_Episode 1: Travelers.typ" #include "./041 - Kaldheim/002_Know Which Way the Wind Is Blowing.typ" #include "./041 - Kaldheim/003_Episode 2: Awaken the Trolls.typ" #include "./041 - Kaldheim/004_Aim Through the Target....
https://github.com/LeptusHe/LeptusHe.github.io
https://raw.githubusercontent.com/LeptusHe/LeptusHe.github.io/main/source/_posts/temporal-antialiasing/temporal-antialiasing-02.typ
typst
#import "../typst-inc/blog-inc.typc": * #show: blog_setting.with( title: "Temporal Antialiasing - 02", author: ("<NAME>"), paper: "a1" ) #metadata("Temporal Antialiasing") <tags> #metadata("图形渲染") <categories> #metadata("2019-03-11") <date> = History Color失效的情况 当物体运动或者相机运动时,我们需要通过reprojection操作来获得某个pixel在前一帧中...
https://github.com/gabrielrovesti/WIM-Project
https://raw.githubusercontent.com/gabrielrovesti/WIM-Project/main/WIM%20Project/main.typ
typst
MIT License
#import "unipd-doc.typ": * #import "@preview/tablex:0.0.6": tablex, rowspanx, colspanx #show: unipd-doc( title: [Web Information Management], subtitle: [Usability Analysis of the University of Padua Website], author: [Student: <NAME> - ID: 2103389], date: [Period of Analysis: January 2024 - February 2...
https://github.com/TypstApp-team/typst
https://raw.githubusercontent.com/TypstApp-team/typst/master/tests/typ/text/raw-syntaxes.typ
typst
Apache License 2.0
// Test code highlighting with custom syntaxes. --- #set page(width: 180pt) #set text(6pt) #set raw(syntaxes: "/files/SExpressions.sublime-syntax") ```sexp (defun factorial (x) (if (zerop x) ; with a comment 1 (* x (factorial (- x 1))))) ```
https://github.com/protohaven/printed_materials
https://raw.githubusercontent.com/protohaven/printed_materials/main/common-tools/turning_tools.typ
typst
#import "../environment/env-protohaven-class_handouts.typ": * = Turning Tools There are lots of types and styles of turning tools, many more than are covered in this handout. Here at Protohaven, the shop is equipped with the following turning tools: - Parting Tool - Square tip chisel - Round tip chisel - Beading t...
https://github.com/compsci-adl/Constitution
https://raw.githubusercontent.com/compsci-adl/Constitution/master/src/schedule1.typ
typst
#let adopted-date = datetime( year: 2024, month: 10, day: 20, ) #set document( title: "Schedule 1 to the CS Club Constitution", author: "The University of Adelaide Computer Science Club", ) #set page( paper: "a4", margin: 2cm, ) #set text( lang: "en", region: "AU", font: "New Computer Modern", ...
https://github.com/akrantz01/resume
https://raw.githubusercontent.com/akrantz01/resume/main/template/overrides.typ
typst
MIT License
// Checks if a string looks like an integer #let integer-regex = regex("^[0-9]+$") #let is-integer(value) = { if value.match(integer-regex) != none { true } else { false } } // Converts a key specifier from the layout to a path within the data #let key-to-path(key) = { key.split(".").map(segment => { ...
https://github.com/huyufeifei/grad
https://raw.githubusercontent.com/huyufeifei/grad/master/docs/paper/src/template/fakebold.typ
typst
#let fakebold(base-weight: none, s, ..params) = { set text(weight: base-weight) if base-weight != none set text(..params) if params != () context { set text(stroke: 0.02857em + text.fill) s } } #let regex-fakebold(reg-exp: ".", base-weight: none, s, ..params) = { show regex(reg-exp): it => { fake...
https://github.com/csskevin/typst-iaik-bachelor-thesis-template
https://raw.githubusercontent.com/csskevin/typst-iaik-bachelor-thesis-template/master/README.md
markdown
MIT License
# IAIK Bachelor Thesis Template Install with ```sh git clone https://github.com/csskevin/typst-iaik-bachelor-thesis-template.git ~/.local/share/typst/packages/local/iaik-bachelor-thesis-template/1.0.0 ``` Init project with template ```sh typst init @local/iaik-bachelor-thesis-template:1.0.0 ``` Use template with imp...
https://github.com/jrihon/multi-bibs
https://raw.githubusercontent.com/jrihon/multi-bibs/main/README.md
markdown
MIT License
# Multi-bibs A typst library to make multiple bibliographies in a single document. DISCLAIMER : rudimentary, but functional! ## Plugin ```typst //! rootdirectory/chapters/01_chapter/mod.typ #import "../../lib/multi-bibs.typ": * #import "bib_01_chapter.typ": biblio #include "introduction.typ" // At the end of the cha...
https://github.com/MobtgZhang/sues-thesis-typst-bachelor
https://raw.githubusercontent.com/MobtgZhang/sues-thesis-typst-bachelor/main/chapters/cover.typ
typst
MIT License
#import "../thesis.typ": chineseunderline,fontstypedict,fontsizedict #import "../info.typ": * #set align(center + horizon) #box( grid( columns: (auto, auto), gutter: 0.4em, image("../logo.png", height: 3em, fit: "contain") ) ) #text("Shanghai University of Engineering Science", font: fontstypedict.宋...
https://github.com/gvariable/billryan-typst
https://raw.githubusercontent.com/gvariable/billryan-typst/master/template.typ
typst
#import "@preview/cetz:0.0.1" #let photo_scale = 5; #let photo_width = 295pt / photo_scale; #let photo_height = 413pt / photo_scale; #let bounding_box_height = 1.1em; #let box_shift = 1.5pt; #let image_path = "assets/"; #let font = ("IBM Plex Serif", "Times New Roman"); #let font_size = 10pt; // Add document specifi...
https://github.com/goshakowska/Typstdiff
https://raw.githubusercontent.com/goshakowska/Typstdiff/main/tests/test_complex/para/para.typ
typst
In this report, we will explore the various factors that influence _fluid dynamics_ in glaciers ha they contribute to the formation and behaviour of these natural structures. All manuscripts are to be submitted electronically to the ScholarOne Abstracts site created for each conference. The manuscript upload will be e...
https://github.com/DashieTM/ost-5semester
https://raw.githubusercontent.com/DashieTM/ost-5semester/main/web3/weeks/week2.typ
typst
#import "../../utils.typ": * #section("React") - not a framework, it's a library - made by meta... #subsection("UI frameworks provide:") - structure definition - event handling - view update #subsection("Javascript and XML (JSX)") #text(red)[*HTML in javascript*] ```tsx function HenloBirb(props: any) { return ( ...
https://github.com/RaphGL/ElectronicsFromBasics
https://raw.githubusercontent.com/RaphGL/ElectronicsFromBasics/main/DC/chap3/5_safe_practices.typ
typst
Other
#import "../../core/core.typ" === Safe practices If at all possible, shut off the power to a circuit before performing any work on it. You must secure all sources of harmful energy before a system may be considered safe to work on. In industry, securing a circuit, device, or system in this condition is commonly known ...
https://github.com/matthew-e-brown/assignmatts
https://raw.githubusercontent.com/matthew-e-brown/assignmatts/main/src/lib.typ
typst
MIT License
#import "./helpers.typ" #import "./palettes.typ" #import "./templates.typ": assignment
https://github.com/ClazyChen/Table-Tennis-Rankings
https://raw.githubusercontent.com/ClazyChen/Table-Tennis-Rankings/main/history_CN/2018/WS-04.typ
typst
#set text(font: ("Courier New", "NSimSun")) #figure( caption: "Women's Singles (1 - 32)", table( columns: 4, [排名], [运动员], [国家/地区], [积分], [1], [丁宁], [CHN], [3470], [2], [刘诗雯], [CHN], [3387], [3], [朱雨玲], [MAC], [3324], [4], [陈梦], [CHN], [3317], [5], [王曼昱], [CHN], [3243], ...
https://github.com/cwreed/cv
https://raw.githubusercontent.com/cwreed/cv/main/src/modules/publications.typ
typst
#import "../template.typ": cvPublication #let ref = cvPublication( bibPath: "publications/publications.bib", keyList: ("reed2022"), refStyle: "ieee", )
https://github.com/matchy233/typst-chi-cv-template
https://raw.githubusercontent.com/matchy233/typst-chi-cv-template/main/README.md
markdown
MIT License
# Chi CV template, but Typst Rip-off of [rip-off of skyzh's CV](https://github.com/matchy233/chi-cv-template), using [Typst](https://github.com/typst/typst). PRs and suggestions are welcome. ~~⚠️ The implementation of `fontawesome.typ` is far from perfect and **may** conflict with existing `typst` built-in commands!...
https://github.com/typst/packages
https://raw.githubusercontent.com/typst/packages/main/packages/preview/unichar/0.1.0/ucd/block-12F90.typ
typst
Apache License 2.0
#let data = ( ("CYPRO-MINOAN SIGN CM001", "Lo", 0), ("CYPRO-MINOAN SIGN CM002", "Lo", 0), ("CYPRO-MINOAN SIGN CM004", "Lo", 0), ("CYPRO-MINOAN SIGN CM005", "Lo", 0), ("CYPRO-MINOAN SIGN CM006", "Lo", 0), ("CYPRO-MINOAN SIGN CM007", "Lo", 0), ("CYPRO-MINOAN SIGN CM008", "Lo", 0), ("CYPRO-MINOAN SIGN CM00...
https://github.com/LucaCiucci/tesi-triennale
https://raw.githubusercontent.com/LucaCiucci/tesi-triennale/main/calcoli/superficie-cono.typ
typst
Creative Commons Zero v1.0 Universal
#set math.equation(numbering: "(1)") #set heading(numbering: "1.") == Dinamica di $e-m$ come particella vincolata su un cono Considero una particella vincolata su una superficie. Localmente parametrizzo la superficie con $(u, v)$ ortogonali. Nell'intorno dell'origine: $ z(u, v) = 1/2 mat(u, v) H vec(u, v) + o(sqrt(u...
https://github.com/7sDream/fonts-and-layout-zhCN
https://raw.githubusercontent.com/7sDream/fonts-and-layout-zhCN/master/outline.typ
typst
Other
#import "template/consts.typ" #import "template/theme.typ": theme #counter(page).update(1) #heading(level: 1, numbering: none, outlined: false)[目录] #show outline.entry: it => { let loc = it.element.location() let v_space = if it.level == 1 { v(1.5em, weak: true) } else { none } let indent = (it.lev...
https://github.com/r8vnhill/apunte-bibliotecas-de-software
https://raw.githubusercontent.com/r8vnhill/apunte-bibliotecas-de-software/main/Unit2/companion.typ
typst
== Companion Object Un `companion object` es un objeto que es común a todas las instancias de una clase. Está vinculado a la clase en sí misma en lugar de a sus instancias. Los `companion objects` proporcionan un lugar para almacenar propiedades y funciones que son lógicamente parte de una clase, pero que no requier...
https://github.com/typst/packages
https://raw.githubusercontent.com/typst/packages/main/packages/preview/unichar/0.1.0/ucd/block-10450.typ
typst
Apache License 2.0
#let data = ( ("SHAVIAN LETTER PEEP", "Lo", 0), ("SHAVIAN LETTER TOT", "Lo", 0), ("SHAVIAN LETTER KICK", "Lo", 0), ("SHAVIAN LETTER FEE", "Lo", 0), ("SHAVIAN LETTER THIGH", "Lo", 0), ("SHAVIAN LETTER SO", "Lo", 0), ("SHAVIAN LETTER SURE", "Lo", 0), ("SHAVIAN LETTER CHURCH", "Lo", 0), ("SHAVIAN LETTER ...
https://github.com/Enter-tainer/mino
https://raw.githubusercontent.com/Enter-tainer/mino/master/typst-package/lib.typ
typst
MIT License
#import "mino.typ": decode-fumen #import "tetris.typ": render-field
https://github.com/jgm/typst-hs
https://raw.githubusercontent.com/jgm/typst-hs/main/test/typ/compiler/block-02.typ
typst
Other
// Some things can't be joined. #{ [A] // Error: 3-4 cannot join content with integer 1 [B] }
https://github.com/yanwenywan/typst-packages
https://raw.githubusercontent.com/yanwenywan/typst-packages/master/README.md
markdown
Apache License 2.0
# Typst packages Packages and templates made by Yan Xin. Please credit Yan Xin or Yanwenyuan if you use these.
https://github.com/ymgyt/techbook
https://raw.githubusercontent.com/ymgyt/techbook/master/programmings/js/typescript/specification/variable.md
markdown
# variable ## const ```typescript const x: number = 1; ``` * 再代入できない * 基本`const`を使う ## let ```typescript let x: number = 1; x = 2; ``` * 再代入できる ## var * 使わない * global変数として利用すると、暗黙的に`window`objectのpropertyとして扱われる。 * 巻き上げやscopeが直感的でない
https://github.com/typst/packages
https://raw.githubusercontent.com/typst/packages/main/packages/preview/unichar/0.1.0/ucd/block-0100.typ
typst
Apache License 2.0
#let data = ( ("LATIN CAPITAL LETTER A WITH MACRON", "Lu", 0), ("LATIN SMALL LETTER A WITH MACRON", "Ll", 0), ("LATIN CAPITAL LETTER A WITH BREVE", "Lu", 0), ("LATIN SMALL LETTER A WITH BREVE", "Ll", 0), ("LATIN CAPITAL LETTER A WITH OGONEK", "Lu", 0), ("LATIN SMALL LETTER A WITH OGONEK", "Ll", 0), ("LATI...
https://github.com/andreasKroepelin/lovelace
https://raw.githubusercontent.com/andreasKroepelin/lovelace/main/lib.typ
typst
MIT License
#import "lovelace.typ": pseudocode, pseudocode-list, no-number, with-line-label, indent, line-label
https://github.com/dadn-dream-home/documents
https://raw.githubusercontent.com/dadn-dream-home/documents/main/contents/05-thiet-ke-database/index.typ
typst
= Thiết kế database Nhóm thiết kế database với lược đồ ở @fig:database-schema. #figure( image("database.drawio.svg", width: 100%), caption: "Lược đồ schema của database" ) <fig:database-schema> Lược đồ này gồm có các bảng: / `feeds`: lưu các cảm biến và thiết bị được người dùng thêm vào nhà thông minh. `t...
https://github.com/mhspradlin/wilson-2024
https://raw.githubusercontent.com/mhspradlin/wilson-2024/main/programming/day-4.typ
typst
MIT License
#set page("presentation-16-9") #set text(size: 30pt) = Day 4 #pagebreak() == Dictionaries Another common data structure is a *dictionary*. A dictionary associates *keys* with *values*. #pagebreak() == Dictionaries #align(center + horizon)[ #image("python-dict2.png", height: 80%) ] #pagebreak() == Creating a ...
https://github.com/j-mueller/typst-vegalite
https://raw.githubusercontent.com/j-mueller/typst-vegalite/main/typst-package/examples/bar-chart.typ
typst
MIT License
#set page(width: 200mm, height: 150mm, margin: 10mm) #import "@preview/nulite:0.1.0" as vegalite #vegalite.render( width: 100%, height: 100%, zoom: 1, json("spec.json") )
https://github.com/HernandoR/lz-brilliant-cv
https://raw.githubusercontent.com/HernandoR/lz-brilliant-cv/main/metadata.typ
typst
Apache License 2.0
/* Personal Information */ // Change this variable to control output language & cited module // INFO: value must matches folder suffix; i.e "zh" -> "./modules_zh" #let varVersion = "" #let varLanguage = "zh" #let firstName = "Zhen" #let lastName = "Liu" #let personalInfo = ( github: "HernandoR", phone: "+86 1567...
https://github.com/Xiaole-An/personalResume
https://raw.githubusercontent.com/Xiaole-An/personalResume/main/resume.typ
typst
#import "template.typ": * // 设置图标, 来源: https://fontawesome.com/icons/ // 如果要修改图标颜色, 请手动修改 svg 文件中的 fill="rgb(38, 38, 125)" 属性 #let faAward = icon("icons/fa-award.svg") #let faBuildingColumns = icon("icons/fa-building-columns.svg") #let faCode = icon("icons/fa-code.svg") #let faEnvelope = icon("icons/fa-envelope.svg") ...
https://github.com/EliasRothfuss/vorlage_typst_doku-master
https://raw.githubusercontent.com/EliasRothfuss/vorlage_typst_doku-master/main/pages/glossar.typ
typst
name=Glossar, description=Als Glossar wird eine Liste von ausgewählten Begriffen bezeichnet, denen eine jeweilige Erläuterung zugeordnet ist. Ein Glossar wird, sofern gewünscht, im Anhang des Dokuments hinzugefügt.
https://github.com/sabitov-kirill/comp-arch-conspect
https://raw.githubusercontent.com/sabitov-kirill/comp-arch-conspect/master/questions/11_storage.typ
typst
#heading[Внешние запоминающие устройства.] #emph[Внешние запоминающие устройства (Устройство магнитных и оптических накопителей. Что такое дорожка, сектор? Что хранится в секторе? RAID. Флеш накопители и SSD и как они работают, в чем отличия от HDD?).] #import "/commons.typ": imagebox == Внешние запоминающие устройст...
https://github.com/PraneethJain/GSoC
https://raw.githubusercontent.com/PraneethJain/GSoC/main/proposal.typ
typst
#set text(font: "Roboto") #set heading(numbering: "1.") #show link: set text(rgb(0, 0, 255)) #align(center, text(size: 1cm, [GSoC 2024])) #align(center, text(size: 0.8cm, [Project Proposal])) #line(start: (-10%, 0%), end: (110%, 0%)) #figure(image("julia.svg", width: 50%),) \ \ #align(center, text(size: 9mm, [Language...
https://github.com/0xPARC/0xparc-intro-book
https://raw.githubusercontent.com/0xPARC/0xparc-intro-book/main/src/cq.typ
typst
#import "preamble.typ":* = Lookups and cq <cq> This is a summary of cq, a recent paper that tells how to do "lookup arguments" in a succinct (or ZK) setting. == What are lookups Suppose you have two lists of items, $f_1, dots, f_n$ and $t_1, dots, t_N$. A "lookup argument" is an interactive proof protocol that lets...
https://github.com/joshuabeny1999/unisg-thesis-template-typst
https://raw.githubusercontent.com/joshuabeny1999/unisg-thesis-template-typst/main/utils/pageref.typ
typst
Other
#let pageref(labelText) = { locate(loc => { let label = label(labelText) let elems = query(selector(label), loc) if elems.len() == 1 { let loc = elems.at(0).location() let pageNumber = counter(page).at(loc) link(label, numbering(loc.page-numbering(), ..pageNumber)) } else { le...
https://github.com/polarkac/MTG-Stories
https://raw.githubusercontent.com/polarkac/MTG-Stories/master/stories/033%20-%20Rivals%20of%20Ixalan/006_Who%20Tells%20the%20Stories.typ
typst
#import "@local/mtgstory:0.2.0": conf #show: doc => conf( "Who Tells the Stories", set_name: "Rivals of Ixalan", story_date: datetime(day: 07, month: 02, year: 2018), author: "<NAME> & <NAME>", doc ) = HUATLI #figure(image("006_Who Tells the Stories/01.jpg", width: 100%), caption: [Art by Yeong-Ha...
https://github.com/jamesrswift/ionio-illustrate
https://raw.githubusercontent.com/jamesrswift/ionio-illustrate/main/gallery/display-structure.typ
typst
MIT License
#set par(justify: true) #set page(width: auto, height: auto, margin:1em) #set text(size: 7pt) #import "../src/lib.typ": * #let data = csv("../assets/linalool.csv") #let massspec = data.slice(1) #let ms = mass-spectrum(massspec, args: ( range: (0,150), plot-extras: (this) => { (this.callout-above)(121) (t...
https://github.com/zenor0/FZU-report-typst-template
https://raw.githubusercontent.com/zenor0/FZU-report-typst-template/main/fzu-report/parts/outline-report-fn.typ
typst
MIT License
#import "../utils/outline-tools.typ": cn-outline #let outline-conf(outline-depth: 3, show-self-in-outline: false) = { set page( numbering: "I", number-align: center ) align(center, box( heading( numbering: none, outlined: show-self-in-outline, bookmarked: true )[目录] )) cn-outline(...
https://github.com/Isaac-Fate/booxtyp
https://raw.githubusercontent.com/Isaac-Fate/booxtyp/master/src/equation.typ
typst
Apache License 2.0
#import "counters.typ": equation-counter #let equation-rules(body) = { set math.equation(numbering: "(1.1)") show math.equation.where(block: true): it => { locate(loc => { // Get heading numbers at current location let heading-numbers = counter(heading).at(loc) // Increment equation number ...
https://github.com/typst/packages
https://raw.githubusercontent.com/typst/packages/main/packages/preview/cetz/0.0.1/collisions.typ
typst
Apache License 2.0
// NOTE: this file is to be used for finding intersections of paths. It is currently not in use but could be fully implemented at a later date. #import "vector.typ" // http://paulbourke.net/geometry/pointlineplane/ Intersection point of two line segments in 2 dimensions // http://jeffreythompson.org/collision-detecti...
https://github.com/alimitedgroup/alimitedgroup.github.io
https://raw.githubusercontent.com/alimitedgroup/alimitedgroup.github.io/main/verbali/interni/2024-10-23.typ
typst
// VI 23-10-2024 #import "../../lib.typ": * #set text(lang: "it") #show: doc => verbale( regmodifiche: ( ("0.0.2", "23-10", "<NAME>", "-", "Redazione documento"), ("0.0.1", "23-10", "<NAME>", "-", "Creazione struttura e template documento"), ), data: [23-10-2024], versione: [0.0.2], stato: [Redatto],...
https://github.com/ngyngcphu/tick3d-docs
https://raw.githubusercontent.com/ngyngcphu/tick3d-docs/main/contents/01_mo_dau/index.typ
typst
Apache License 2.0
#show raw.where(block: false): box.with( fill: luma(240), inset: (x: 3pt, y: 0pt), outset: (y: 3pt), radius: 2pt, ) #show raw.where(block: true): block.with( fill: luma(240), inset: 10pt, radius: 4pt, ) = Tổng quan dự án == Bối cảnh dự án Hệ thống in ấn 3D được sử dụng để đáp ứng nhu cầu cho những ai...
https://github.com/TypstApp-team/typst
https://raw.githubusercontent.com/TypstApp-team/typst/master/docs/reference/welcome.md
markdown
Apache License 2.0
--- description: | The Typst reference is a systematic and comprehensive guide to the Typst typesetting language. --- # Reference This reference documentation is a comprehensive guide to all of Typst's syntax, concepts, types, and functions. If you are completely new to Typst, we recommend starting with the [tutor...
https://github.com/didiercrunch/typst-repo
https://raw.githubusercontent.com/didiercrunch/typst-repo/main/test-remote/foo.typ
typst
#import "./bar.typ": first_name #let last_name = "amyot" #let name = first_name + " " + last_name #let type-writer-image = figure( image("type-writer.jpg", width: 80%), caption: [An amazing technology], )
https://github.com/J3m3/poolc-fp
https://raw.githubusercontent.com/J3m3/poolc-fp/main/HFPDWE-01.typ
typst
MIT License
#import "@preview/fletcher:0.3.0" as fletcher: node, edge #import "@preview/pinit:0.1.3": * #import "@preview/sourcerer:0.2.1": code #import "@preview/xarrow:0.3.0": xarrow #import "lib/index.typ": * #show: conf // 1 #title-slide(title: "How FP Deals With Effects")[ #line(length: 65%, stroke: 2pt + color_medium) ...
https://github.com/yhtq/Notes
https://raw.githubusercontent.com/yhtq/Notes/main/抽象代数/作业/hw9.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: note.with( title: "作业9", author: "YHTQ ", date: none, logo: none, withOutlined: false ) (11.20 日作业) = P89 == 5 (1). \ $R$ 中元素 $x$ 可逆当且仅当 $gcd(x, p...
https://github.com/jgm/typst-hs
https://raw.githubusercontent.com/jgm/typst-hs/main/test/typ/compiler/for-03.typ
typst
Other
// Keys and values of strings. // Error: 6-12 cannot destructure values of string #for (k, v) in "hi" { dont-care }
https://github.com/typst/packages
https://raw.githubusercontent.com/typst/packages/main/packages/preview/cetz-plot/0.1.0/src/chart.typ
typst
Apache License 2.0
#import "chart/boxwhisker.typ": boxwhisker, boxwhisker-default-style #import "chart/barchart.typ": barchart, barchart-default-style #import "chart/columnchart.typ": columnchart, columnchart-default-style #import "chart/piechart.typ": piechart, piechart-default-style
https://github.com/typst/packages
https://raw.githubusercontent.com/typst/packages/main/packages/preview/unichar/0.1.0/ucd/block-1B80.typ
typst
Apache License 2.0
#let data = ( ("SUNDANESE SIGN PANYECEK", "Mn", 0), ("SUNDANESE SIGN PANGLAYAR", "Mn", 0), ("SUNDANESE SIGN PANGWISAD", "Mc", 0), ("SUNDANESE LETTER A", "Lo", 0), ("SUNDANESE LETTER I", "Lo", 0), ("SUNDANESE LETTER U", "Lo", 0), ("SUNDANESE LETTER AE", "Lo", 0), ("SUNDANESE LETTER O", "Lo", 0), ("SUND...
https://github.com/LucaCiucci/tesi-triennale
https://raw.githubusercontent.com/LucaCiucci/tesi-triennale/main/img/slide_1/monopolo.typ
typst
Creative Commons Zero v1.0 Universal
#import "@preview/cetz:0.2.2" #import "@preview/suiji:0.3.0": * #let fig(step) = cetz.canvas(length: 5mm, { import cetz: draw import cetz.draw: * let rng = gen-rng(42) // Regolarizzazione del modulo, da fare meglio con epsilon relativo let R(px, py, pz) = { let epsilon = 0.05 * 4; return calc.sqrt(...
https://github.com/f7ed0/typst-template
https://raw.githubusercontent.com/f7ed0/typst-template/master/test.typ
typst
#import "template.typ" : init #show: doc => init( doc, ) = B
https://github.com/matthew-e-brown/assignmatts
https://raw.githubusercontent.com/matthew-e-brown/assignmatts/main/README.md
markdown
MIT License
# Assignmatts This is my personal library of templates and helper functions for my various assignments, labs, and projects at university. This has been turned into a package so that: - I can import it from my `@local` namespace even from different course directories. - So that my friends, who I'm trying to get to ...
https://github.com/ClazyChen/Table-Tennis-Rankings
https://raw.githubusercontent.com/ClazyChen/Table-Tennis-Rankings/main/history_CN/2024/WS-05.typ
typst
#set text(font: ("Courier New", "NSimSun")) #figure( caption: "Women's Singles (1 - 32)", table( columns: 4, [排名], [运动员], [国家/地区], [积分], [1], [孙颖莎], [CHN], [3667], [2], [王曼昱], [CHN], [3449], [3], [陈梦], [CHN], [3352], [4], [陈幸同], [CHN], [3229], [5], [朱雨玲], [MAC], [3222], ...
https://github.com/jgm/typst-hs
https://raw.githubusercontent.com/jgm/typst-hs/main/test/typ/layout/hide-00.typ
typst
Other
AB #h(1fr) CD \ #hide[A]B #h(1fr) C#hide[D]
https://github.com/jakobjpeters/Typstry.jl
https://raw.githubusercontent.com/jakobjpeters/Typstry.jl/main/NEWS.md
markdown
MIT License
# News ## v0.4.0 - Support Typst version 0.12 ### Bug Fixes - If a `TypstString` contains any characters that satisfy `!isprint`, `show(::IO, ::TypstString)` now prints a format that preserves those characters. - Account for a [Typst bug with single-letter strings in `math` mode](https://github.com/typst/typst/iss...
https://github.com/jomaway/typst-teacher-templates
https://raw.githubusercontent.com/jomaway/typst-teacher-templates/main/ttt-lists/README.md
markdown
MIT License
# ttt-lists `ttt-lists` is a *template* to create class lists and belongs to the [typst-teacher-tools-collection](https://github.com/jomaway/typst-teacher-templates). ## Usage Run this command inside your terminal to init a new list. ```sh typst init @preview/ttt-lists my-student-list ``` This will scaffold t...
https://github.com/jgm/typst-hs
https://raw.githubusercontent.com/jgm/typst-hs/main/test/typ/text/font-04.typ
typst
Other
// Error: 23-27 unexpected argument #set text(size: 10pt, 12pt)
https://github.com/tsar-boomba/resume
https://raw.githubusercontent.com/tsar-boomba/resume/main/template.typ
typst
#let resume(body) = { set list(indent: 1em) show list: set text(size: 0.92em) set page(paper: "us-letter", margin: (x: 0.5in, y: 0.5in)) set text(size: 11pt, font: "New Computer Modern") body } #let name_header(name) = { set text(size: 2.25em) [*#name*] } #let header( name: "<NAME>", phone: "123-...
https://github.com/eneoli/kit-thesis-template
https://raw.githubusercontent.com/eneoli/kit-thesis-template/main/thesis.typ
typst
#import "@preview/outrageous:0.1.0" #import "meta.typ": * #set document(title: title, author: author, keywords: keywords) #set page("a4", background: if isDraft { rotate(24deg, text(150pt, fill: rgb("dedede66"))[*DRAFT*]) }, ) // Title page #include "common/cover.typ" #pagebreak() #set page("a4", margin: 30mm) #s...
https://github.com/Origami404/kaoyan-shuxueyi
https://raw.githubusercontent.com/Origami404/kaoyan-shuxueyi/main/微积分/07-级数.typ
typst
#import "../template.typ": sectionline, gray_table, colored = 级数 == 常数项级数 #set list(marker: ([⤥], [›])) 主要标杆: $ a_n = a p^n, quad cases( |q| < 1 quad => quad a/(1-q), |q| >= 1 quad => quad infinity ) $ $ a_n = 1 / n^p = n^(-p), quad cases( p > 1 quad => quad A, p <= 1 quad => quad infinity ) $ $ a_n = 1...
https://github.com/Mc-Zen/quill
https://raw.githubusercontent.com/Mc-Zen/quill/main/src/verifications.typ
typst
MIT License
#let plural-s(n) = if n == 1 { "" } else { "s" } #let verify-controlled-gate(gate, x, y, circuit-rows, circuit-cols) = { let multi = gate.multi if y + multi.target >= circuit-rows or y + multi.target < 0 { assert(false, message: "A controlled gate starting at qubit " + str(y) + " with relative ta...
https://github.com/typst/packages
https://raw.githubusercontent.com/typst/packages/main/packages/preview/cheda-seu-thesis/0.2.0/seu-thesis/utils/set-degree.typ
typst
Apache License 2.0
#import "numbering-tools.typ": chinese-numbering #import "packages.typ": show-cn-fakebold #import "show-heading.typ": show-heading #import "figure-and-ref.typ": show-figure, show-ref, set-math-numbering, show-math-equation-degree #import "bilingual-bibliography.typ": show-bibliography #import "fonts.typ": 字体, 字号 #let ...
https://github.com/SillyFreak/typst-packages-old
https://raw.githubusercontent.com/SillyFreak/typst-packages-old/main/tidy-types/src/lib.typ
typst
MIT License
#let lang = "tidy-type" #let _type = type /// Wraps the given string, a type name, into a ```typc raw``` element with the language #raw(repr(tt.lang), lang: "typ"). /// By itself, that doesn't do anything, but it allows styling that text using a ```typc show``` rule; see #link(<intro>)[the introduction]. /// /// #exa...
https://github.com/Robotechnic/iridis
https://raw.githubusercontent.com/Robotechnic/iridis/master/internals.typ
typst
MIT License
#let iridis-palette = ( color.rgb("#7D00E5"), color.rgb("#FF0000"), color.rgb("#0094FF"), color.rgb("#FF6A00"), color.rgb("#00FF00"), color.rgb("#0041FF"), color.rgb("#EDCC14"), ) #let need-regex-escape = (c) => { (c == "(") or (c == ")") or (c == "[") or (c == "]") or (c == "{") or (c == "}") or (c == "\\") o...
https://github.com/VisualFP/docs
https://raw.githubusercontent.com/VisualFP/docs/main/SA/design_concept/content/design/design_iteration_2_conclusion.typ
typst
= Conclusion During the first iteration, three very different approaches were explored. Valuable feedback was gained on their advantages and shortcomings through a survey. Prof. Dr. <NAME> proposed a new design concept in the second iteration based on that feedback and some new ideas. This new concept has the potenti...
https://github.com/duskmoon314/THU_AMA
https://raw.githubusercontent.com/duskmoon314/THU_AMA/main/docs/ch2/0-群论.typ
typst
Creative Commons Attribution 4.0 International
#import "/book.typ": book-page, cross-link #show: book-page.with(title: "群论") = 群论 - #cross-link("/docs/ch2/1-概念与例子.typ", "概念与例子") - #cross-link("/docs/ch2/2-内部结构.typ", "内部结构") - #cross-link("/docs/ch2/3-外部联系.typ", "外部联系") - #cross-link("/docs/ch2/4-群在集合上的作用.typ", "群在集合上的作用") - #cross-link("/docs/ch2/5-群的应用.typ", "群...
https://github.com/yan-aint-nickname/uni
https://raw.githubusercontent.com/yan-aint-nickname/uni/main/oop-matrix-cli/main.typ
typst
MIT License
#import "template.typ": * #import "@preview/codelst:2.0.1": sourcecode, sourcefile #import "diagrams/main.typ" as main_algo #import "diagrams/user_input.typ" as input_algo #import "diagrams/fill_matrix.typ" as fill_algo #import "diagrams/count_values.typ" as count_algo // Take a look at the file `template.typ` in th...
https://github.com/Myriad-Dreamin/typst.ts
https://raw.githubusercontent.com/Myriad-Dreamin/typst.ts/main/fuzzers/corpora/layout/enum-align_03.typ
typst
Apache License 2.0
#import "/contrib/templates/std-tests/preset.typ": * #show: test-page // Number align option should not be affected by the context. #set align(center) #set enum(number-align: start) 4. c 8. d 16. e\ f 2. f\ g 32. g 64. h
https://github.com/frectonz/the-pg-book
https://raw.githubusercontent.com/frectonz/the-pg-book/main/book/161.%20corpdev.html.typ
typst
corpdev.html Don't Talk to Corp Dev January 2015Corporate Development, aka corp dev, is the group within companies that buys other companies. If you're talking to someone from corp dev, that's why, whether you realize it yet or not.It's usually a mistake to talk to corp dev unless (a) you want to sell your company rig...
https://github.com/MALossov/YunMo_Doc
https://raw.githubusercontent.com/MALossov/YunMo_Doc/main/contents/3FinishPoint.typ
typst
Apache License 2.0
= 完成情况及性能参数 我们将赛题对于性能指标的基础和扩展要求、结合我们自身对于项目的理解分列的条目进行整合,并且列表见@tb_is_ok: #figure( table(columns:(auto,auto,40pt,auto), align: horizon, [*项目名称*],[*实现情况*],[*是否完成*],[*指标详情*], [*使用高云FPGA板卡*],[使用板卡为:_#link("https://wiki.sipeed.com/hardware/zh/tang/tang-primer-20k/primer-20k.html")[Tang Primer 20K]_],[$checkmark$],[*高云FPGA* ...
https://github.com/WinstonMDP/math
https://raw.githubusercontent.com/WinstonMDP/math/main/knowledge/equivalences.typ
typst
#import "../cfg.typ": * #show: cfg = Equivalences A relation is an equivalence $:=$ it's a symmetric preorder An equivalence class of an element $x := {y | y tilde x}$ A quotient set $:=$ a set of the equivalence classes
https://github.com/Myriad-Dreamin/typst.ts
https://raw.githubusercontent.com/Myriad-Dreamin/typst.ts/main/fuzzers/corpora/text/raw_04.typ
typst
Apache License 2.0
#import "/contrib/templates/std-tests/preset.typ": * #show: test-page // Lots of backticks inside. ```` ```backticks``` ````
https://github.com/yonatanmgr/university-notes
https://raw.githubusercontent.com/yonatanmgr/university-notes/main/0366-%5BMath%5D/globals/graph.typ
typst
#import "@preview/cetz:0.2.0" #let graph(style: "school-book", w: 2, h: 2, start: -2, end: 2, functions: (), v-asymptotes: (), h-asymptotes: (), additionals: ()) = { text(lang: "en", dir: ltr)[ #show math.equation: block.with(fill: white, inset: 1pt) #cetz.canvas({ import cetz.plot plot.plot( ...
https://github.com/LDemetrios/Typst4k
https://raw.githubusercontent.com/LDemetrios/Typst4k/master/src/test/resources/suite/scripting/arguments.typ
typst
// Test arguments. --- arguments-at --- #let args = arguments(0, 1, a: 2, 3) #test(args.at(0), 0) #test(args.at(1), 1) #test(args.at(2), 3) #test(args.at("a"), 2) --- arguments-at-invalid-index --- #let args = arguments(0, 1, a: 2, 3) // Error: 2-12 arguments do not contain key 4 and no default value was specified #a...
https://github.com/ysthakur/PHYS121-Notes
https://raw.githubusercontent.com/ysthakur/PHYS121-Notes/main/main.typ
typst
MIT License
#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: "PHYS121 Notes", authors: ( "<NAME>", ), ) #outline(indent: auto) #set heading(numbering: "1.1.") #pagebreak() #include "Notes/Ch01.typ...
https://github.com/felsenhower/kbs-typst
https://raw.githubusercontent.com/felsenhower/kbs-typst/master/hamburg.typ
typst
MIT License
#import "typst-modules/typst-slides/slides.typ": * #let slides-hamburg-theme() = data => { let color = rgb("#cc0000") let title-slide = { align(center + horizon)[ #show block: set text(white) #block( width: 60%, fill: color, // str...
https://github.com/Error-418-SWE/Documenti
https://raw.githubusercontent.com/Error-418-SWE/Documenti/src/3%20-%20PB/Documentazione%20interna/Norme%20di%20Progetto/Norme%20di%20Progetto.typ
typst
#import "/template.typ": * #show: project.with( title: "Norme di Progetto", subTitle: "Norme, processi e disciplina", authors: ( "<NAME>", "<NAME>", "<NAME>" ), showLog: true, ); = Introduzione == Scopo del documento Questo documento contiene le regole del _way of working_ che disciplinano le a...
https://github.com/mcanouil/generate-quarto-invoices
https://raw.githubusercontent.com/mcanouil/generate-quarto-invoices/main/_extensions/mcanouil/invoice/typst-show.typ
typst
MIT License
#show: invoice.with( $if(title)$ title: "$title$", $if(description)$ description: "$description$", $endif$ $endif$ $if(logo)$ logo: "$logo$", $endif$ $if(sender)$ sender: ( name: "$sender.name$", address: ( street: "$sender.address.street$", zip: "$sender.address.zip$", city: "$s...
https://github.com/PA055/5839B-Notebook
https://raw.githubusercontent.com/PA055/5839B-Notebook/main/glossary.typ
typst
#import "./packages.typ": notebookinator #import notebookinator: glossary #glossary.add-term( "Holonomic", )[ A vehicle is described as holonomic when it can move in any X/Y direction at any time, regardless of its rotation. X-drive and Mecanum drivetrains are examples of holonomic vehicles. ]
https://github.com/SkymanOne/zk-learning
https://raw.githubusercontent.com/SkymanOne/zk-learning/main/notes/base.typ
typst
#import "@preview/fletcher:0.5.0" as fletcher: * #let note(doc) = [ #set par(leading: 0.55em, justify: true) #set text(font: "New Computer Modern") #show heading: set block(above: 1.8em, below: 1.8em, inset: (x: -0.5em, y: 0em)) #doc ] #let def(doc) = block( fill: luma(230), inset: 8pt, radius: 4pt, ...