repo stringlengths 26 115 | file stringlengths 54 212 | language stringclasses 2
values | license stringclasses 16
values | content stringlengths 19 1.07M |
|---|---|---|---|---|
https://github.com/Tiggax/zakljucna_naloga | https://raw.githubusercontent.com/Tiggax/zakljucna_naloga/main/src/sec/uvod/5.%20model.typ | typst | #set heading(offset: 1)
#import "/src/additional.typ": todo
== Mathematical Model development
== Operational parameters
== Regression analysis
| |
https://github.com/skriptum/diatypst | https://raw.githubusercontent.com/skriptum/diatypst/main/diaquarto/_extensions/diaquarto/typst-show.typ | typst | MIT License | // Typst custom formats typically consist of a 'typst-template.typ' (which is
// the source code for a typst template) and a 'typst-show.typ' which calls the
// template's function (forwarding Pandoc metadata values as required)
//
// This is an example 'typst-show.typ' file (based on the default template
// that shi... |
https://github.com/0x1B05/algorithm-journey | https://raw.githubusercontent.com/0x1B05/algorithm-journey/main/practice/note/content/经典递归流程.typ | typst | #import "../template.typ": *
#pagebreak()
= 经典递归流程解析
== #link("https://www.nowcoder.com/practice/92e6247998294f2c933906fdedbc6e6a")[ 字符串的全部子序列 ]
返回字符串全部子序列,子序列要求去重。时间复杂度$O(n * 2^n)$
#code(caption: [解答])[
```java
public static String[] generatePermutation1(String str) {
char[] s = str.toCharArray()... | |
https://github.com/PA055/5839B-Notebook | https://raw.githubusercontent.com/PA055/5839B-Notebook/main/Entries/inventory/inventory-results.typ | typst | #import "/packages.typ": notebookinator
#import notebookinator: *
#import themes.radial.components: *
#show: create-body-entry.with(
title: "Inventory Results",
type: "management",
date: datetime(year: 2024, month: 3, day: 10),
author: "<NAME>",
witness: "<NAME>"
)
After a week of work we were able to comple... | |
https://github.com/vncsb/desec-typst-template | https://raw.githubusercontent.com/vncsb/desec-typst-template/main/settings.typ | typst | #let highlight-fill-color = rgb("#44546a")
#let highlight-font-color = white
#let critical-color = rgb("#c00000")
#let high-color = rgb("#ed7d31")
#let medium-color = yellow
#let low-color = green
| |
https://github.com/LDemetrios/Typst4k | https://raw.githubusercontent.com/LDemetrios/Typst4k/master/src/test/resources/suite/model/outline.typ | typst | --- outline ---
#set page(height: 200pt, margin: (bottom: 20pt), numbering: "1")
#set heading(numbering: "(1/a)")
#show heading.where(level: 1): set text(12pt)
#show heading.where(level: 2): set text(10pt)
#outline(fill: none)
= A
= B
#lines(3)
// This heading is right at the start of the page, so that we can test
/... | |
https://github.com/0x1B05/nju_os | https://raw.githubusercontent.com/0x1B05/nju_os/main/lecture_notes/content/09_并发控制-同步1.typ | typst | #import "../template.typ": *
#pagebreak()
= 并发控制:同步 (1)
== 同步问题
=== 同步 (Synchronization)
两个或两个以上随时间变化的量在变化过程中保持一定的相对关系
- 同步电路 (一个时钟控制所有触发器)
- iPhone/iCloud 同步 (手机 vs 电脑 vs 云端)
- 变速箱同步器 (合并快慢速齿轮)
- 同步电机 (转子与磁场转速一致)
- 同步电路 (所有触发器在边沿同时触发)
异步 (Asynchronous) = 不需要同步
- 上述很多例子都有异步版本 (异步电机、异步电路、异步线程)
=== 并发程序中的同步
并发程序的... | |
https://github.com/Meisenheimer/Notes | https://raw.githubusercontent.com/Meisenheimer/Notes/main/src/NeuralNetworks.typ | typst | MIT License | #import "@local/math:1.0.0": *
= Neural Networks |
https://github.com/mkhoatd/Typst-CV-Resume | https://raw.githubusercontent.com/mkhoatd/Typst-CV-Resume/main/CV/example.typ | typst | MIT License | #import "typstcv.typ": *
// Remember to set the fonttype in `typstcv.typ`
#set list(marker: ([•], [◦], [-], sym.bullet))
#main(
name: [<NAME>], //name:"" or name:[]
// address: [#lorem(4)],
contacts: (
(text:"+84915960597",link:""),
(text:"mkhoatd.me",link:"https://mkhoatd.me"),
(text:"github.com/mkhoatd",link:"https:... |
https://github.com/typst/packages | https://raw.githubusercontent.com/typst/packages/main/packages/preview/scholarly-tauthesis/0.4.0/template/content/01.typ | typst | Apache License 2.0 | /** 01.typ
*
* This is an example introdution in a multi-file typst project.
*
***/
#import "../preamble.typ": *
#import "@preview/scholarly-tauthesis:0.4.0" as tauthesis
= Introduction <introduction>
This document template conforms to the Guide to Writing a Thesis
in Tampere University @kirjoitusohje2019 @thesis... |
https://github.com/typst-community/valkyrie | https://raw.githubusercontent.com/typst-community/valkyrie/main/src/assertions.typ | typst | Other | #import "./assertions/length.typ" as length
#import "./assertions/comparative.typ": min, max, eq, neq
#import "./assertions/string.typ": *
/// Asserts that the given value is contained within the provided list. Useful for complicated enumeration types.
/// - list (array): An array of inputs considered valid.
#let one-... |
https://github.com/JeyRunner/tuda-typst-templates | https://raw.githubusercontent.com/JeyRunner/tuda-typst-templates/main/templates/tudapub/util.typ | typst | MIT License | #let natural-image(..args) = style(styles => {
let (width, height) = measure(image(..args), styles)
image(..args, width: width, height: height)
})
#let get-spacing-zero-if-first-on-page(default_spacing, heading_location, content_page_margin_full_top, enable: true) = {
// get previous element
//let elems ... |
https://github.com/fabriceHategekimana/master | https://raw.githubusercontent.com/fabriceHategekimana/master/main/5_Implémentation/Prolog.typ | typst | #import "@preview/simplebnf:0.1.0": *
#import "../src/module.typ": *
#pagebreak()
= Implémentation
Dans le cadre de ce projet j'ai construit le prototype d'un interpréteur en Prolog pour appliquer et vérifier la faisabilité du langage construit jusqu'à présent. Le premier but est de traduire la syntaxe de base de no... | |
https://github.com/jgm/typst-hs | https://raw.githubusercontent.com/jgm/typst-hs/main/test/typ/compiler/dict-06.typ | typst | Other | // Error: 24-29 duplicate key: first
#(first: 1, second: 2, first: 3)
|
https://github.com/typst/packages | https://raw.githubusercontent.com/typst/packages/main/packages/preview/cetz/0.1.2/src/canvas.typ | typst | Apache License 2.0 | #import "matrix.typ"
#import "vector.typ"
#import "draw.typ"
#import "cmd.typ"
#import "util.typ"
#import "coordinate.typ"
#import "styles.typ"
#import "path-util.typ"
#import "aabb.typ"
// Aliases for typst types/functions
// because we override them.
#let typst-length = length
// Recursive element traversal functio... |
https://github.com/0x1B05/nju_os | https://raw.githubusercontent.com/0x1B05/nju_os/main/lecture_notes/content/27_设备驱动程序与文件系统.typ | typst | #import "../template.typ": *
#pagebreak()
= 设备驱动程序与文件系统
== 设备驱动程序
=== I/O 设备的抽象
I/O 设备模型:一个能与 CPU 交换数据的接口/控制器
- 寄存器被映射到地址空间
#image("images/2024-02-26-21-51-38.png")
操作系统:设备也是操作系统中的对象
如何 “找到” 一个对象?
- 对象支持什么操作?
- I/O 设备的抽象 (cont'd)
=== I/O 设备的抽象 (cont'd)
I/O 设备的主要功能:输入和输出
- “能够读 (read) 写 (write) 的字节序列 (流或数组)”... | |
https://github.com/jgm/typst-hs | https://raw.githubusercontent.com/jgm/typst-hs/main/test/typ/compute/calc-03.typ | typst | Other | // Error: 8-13 expected boolean, integer, float, ratio, or string, found function
#float(float)
|
https://github.com/RanolP/typlog | https://raw.githubusercontent.com/RanolP/typlog/main/series/make-a-pl/00-foreword.typ | typst | #import "../../_utils/_prelude.typ": *
#post(
0,
"시작에 앞서",
)[
사람들은 고수준의 아이디어를 펴내길 원하고, 기계들은 작은 명령 집합을 가지고 있습니다. 따라서, 두 집단 사이 소통에는 번역이 필요하죠.
이때, 프로그래밍 언어가 사람과 기계 사이를 이어주는 징검다리 역할을 합니다. 사람이 쓴 고수준 코드를 기계가 알아듣기 쉽게 번역해주죠.
여기서, 번역하기 전의 고수준 코드를 #word("원본 코드", "Source Code")라고 하며, 번역이 완료되어 기계라는 목표에 더
가까워진 저수준 코드를 #word(... | |
https://github.com/hongjr03/shiroa-page | https://raw.githubusercontent.com/hongjr03/shiroa-page/main/DIP/chapters/6多分辨率处理.typ | typst | #import "../template.typ": *
#import "@preview/fletcher:0.5.0" as fletcher: diagram, node, edge
#import fletcher.shapes: house, hexagon, ellipse
#import "@preview/pinit:0.1.4": *
#import "@preview/cetz:0.2.2"
#import "/book.typ": book-page
#show: book-page.with(title: "数字图像处理基础 | DIP")
= 多分辨率处理 Multiresolution Proce... | |
https://github.com/augustebaum/petri | https://raw.githubusercontent.com/augustebaum/petri/main/tests/README.md | markdown | MIT License | # Tests
Tests of the library, which can be hacked on using `typst-test`.
Many of the tests are inspired by prior work in TikZ, including:
- <https://latexdraw.com/petri-nets-tikz/>
- <https://tikz.dev/library-petri>
## Example gallery
The following examples are obtained by rendering the individual tests.
 = {
text(fill: rgb("#343a40"), {
v(-2pt)
str
})
}
#cvSection("Expérience Professionnelle")
#cvEntry(
title: [Freelance],
society... | |
https://github.com/SkiFire13/master-thesis | https://raw.githubusercontent.com/SkiFire13/master-thesis/master/thesis.typ | typst | #import "template.typ": template
#show: template.with(
affiliation: (
university: "University of Padua",
department: [Department of Mathematics "Tullio Levi-Civita"],
degree: "Master Degree in Computer Science",
),
title: [Solving Systems of Fixpoint Equations \ via Strategy Iteration],
subtitle: ... | |
https://github.com/VisualFP/docs | https://raw.githubusercontent.com/VisualFP/docs/main/SA/project_documentation/content/meeting_minutes/week_14.typ | typst | = Project Meeting 19.12.2023 08:15 - 08:45 (MS Teams)
== Participants
- Prof. Dr. <NAME>
- <NAME>
- <NAME>
== Agenda
- Clarification of some questions regarding submission:
- Is our current document structure (with separate document for project mgmt) ok: Yes.
- Could Prof. Dr. <NAME> execute the PoC application on... | |
https://github.com/loqusion/typix | https://raw.githubusercontent.com/loqusion/typix/main/docs/api/derivations/watch-typst-project.md | markdown | MIT License | # watchTypstProject
Returns a derivation for a script that watches an input file and recompiles on
changes.
## Parameters
**Note:** All parameters for
[`writeShellApplication`][nixpkgs-writeshellapplication] are also supported
(besides `text`).
### `fontPaths` (optional) { #fontpaths }
{{#include common/font-paths... |
https://github.com/freundTech/kit-slides-typst | https://raw.githubusercontent.com/freundTech/kit-slides-typst/main/README.md | markdown | Other | # KIT Slides Theme for Typst
A Karlsruhe Institute of Technology theme for typesetting slides in Typst.
This theme uses [polylux](https://github.com/andreasKroepelin/polylux) for creating slides in Typst.
You can find more information on available functions in the [polylux book](polylux.dev/book).
The simplest way t... |
https://github.com/typst/packages | https://raw.githubusercontent.com/typst/packages/main/packages/preview/circuiteria/0.1.0/doc/examples.typ | typst | Apache License 2.0 | #import "example.typ": example
#let alu = example(```
element.alu(x: 0, y: 0, w: 1, h: 2, id: "alu")
wire.stub("alu-port-in1", "west")
wire.stub("alu-port-in2", "west")
wire.stub("alu-port-out", "east")
```)
#let block = example(```
element.block(
x: 0, y: 0, w: 2, h: 2, id: "block",
ports: (
north: ((id: "cl... |
https://github.com/typst/packages | https://raw.githubusercontent.com/typst/packages/main/packages/preview/nth/0.2.0/nth.typ | typst | Apache License 2.0 | #let nth(ordinal-num) = {
let ordinal-str = str(ordinal-num)
let ordinal-suffix = if ordinal-str.ends-with(regex("1[0-9]")) {
"th"
}
else if ordinal-str.last() == "1" {
"st"
}
else if ordinal-str.last() == "2" {
"nd"
}
else if ordinal-str.last() == "3" {
"rd"
}
else {
"th"
}
... |
https://github.com/kdog3682/mathematical | https://raw.githubusercontent.com/kdog3682/mathematical/main/0.1.0/src/examples/3d-cetz-attempt-3.typ | typst | // the file works ... but
// there are overlaps and these overlaps need to be removed
#import "@local/typkit:0.1.0": *
#import "@preview/cetz:0.2.2"
#import cetz.draw: *
// length: 1, width: 1, height: 1,
#let get-prism-segments(pos, dimensions: (1, 1, 1), styles: (:)) = {
let (x, y, z)=pos
let (length, wid... | |
https://github.com/agarmu/typst-templates | https://raw.githubusercontent.com/agarmu/typst-templates/main/notes/symbols.typ | typst | MIT License | #let inv(x) = $#x^(-1)$
#let ll = $lambda$
#let span = $op("Span")$
#let arccot = $op("arccot")$
#let rank = $op("rank")$
#let null = $op("null")$
#let adj = $op("adj")$
#let col = $op("Col")$
#let row = $op("Row")$
#let inv(x) = $#x^(-1)$
#let comp = $" " circle.stroked.small " "$
#let qed = $square.stroked.small$
#l... |
https://github.com/noahjutz/AD | https://raw.githubusercontent.com/noahjutz/AD/main/notizen/sortieralgorithmen/main.typ | typst | #import "/components/admonition.typ": admonition
#import "/config.typ": theme
= Sortieralgorithmen
== Insertion Sort <insertion-sort>
Der Algorithmus iteriert durch alle Elemente ab dem zweiten (rot markiert) und schiebt den Wert so lange nach vorne, bis keine kleineren Werte mehr vor ihm stehen.
```python
for j i... | |
https://github.com/jgm/typst-hs | https://raw.githubusercontent.com/jgm/typst-hs/main/test/typ/compute/calc-01.typ | typst | Other | #test(calc.round(calc.e, digits: 2), 2.72)
#test(calc.round(calc.pi, digits: 2), 3.14)
|
https://github.com/Myriad-Dreamin/typst.ts | https://raw.githubusercontent.com/Myriad-Dreamin/typst.ts/main/crates/conversion/vec2canvas/README.md | markdown | Apache License 2.0 | # reflexo-vec2canvas
Render vector items into canvas element, i.e. converting vector items into canvas items.
See [Typst.ts](https://github.com/Myriad-Dreamin/typst.ts)
|
https://github.com/MrToWy/Bachelorarbeit | https://raw.githubusercontent.com/MrToWy/Bachelorarbeit/master/Code/angular.json.typ | typst | ```json
"configurations": {
"production": {
"fileReplacements": [{
"replace": "src/environments/environment.ts",
"with": "src/environments/environment.prod.ts"
}]
}
}
``` | |
https://github.com/Champitoad/typst-slides | https://raw.githubusercontent.com/Champitoad/typst-slides/main/flower.typ | typst | Creative Commons Zero v1.0 Universal | #import "utils.typ": *
#let pistil_color = rgb("FFF344")
#let sheet(content) = rect(fill: pistil_color, inset: 5pt, content)
// Evaluate the bezier polynomial at t
#let beval(p1, c1, c2, p2, t) = {
t * t * t * p1 + 3 * (1 - t) * t * t * c1 + 3 * (1 - t) * (1 - t) * t * c2 + (1 - t) * (1 - t) * (1 - t) * p2
}
#let... |
https://github.com/yhtq/Notes | https://raw.githubusercontent.com/yhtq/Notes/main/代数学二/作业/hw10.typ | typst | #import "../../template.typ": *
#import "@preview/commute:0.2.0": node, arr, commutative-diagram
#show: note.with(
title: "作业9",
author: "YHTQ",
date: none,
logo: none,
withOutlined : false,
withTitle :false,
withHeadingNumbering: false
)
(应交时间为5月14日)
#let sect1(n) = $sect_(#n = 1)^infinity$
= p114
== ... | |
https://github.com/typst/packages | https://raw.githubusercontent.com/typst/packages/main/packages/preview/typographix-polytechnique-reports/0.1.2/guide.typ | typst | Apache License 2.0 | #import "@preview/typographix-polytechnique-reports:0.1.2" as template
#show: template.apply
// Specific rules for the guide
#show link: set text(blue)
// Defining variables for the cover page and PDF metadata
#let title = [guide for typst #linebreak() polytechnique package]
#let subtitle = "A modern alternative to... |
https://github.com/isaacholt100/isaacholt100.github.io | https://raw.githubusercontent.com/isaacholt100/isaacholt100.github.io/master/maths-notes/3-durham%3A-year-3/crypto/crypto.typ | typst | #import "../../template.typ": *
#show: doc => template(doc, hidden: ("proof",), slides: false)
// FIND: - \*(\w+)\*: ([\s\S]*?)(?=\n-|\n\n)\n
// REPLACE: #$1[\n $2\n]\n
#let modulo(n) = $thick mod #n$
#let lmodulo(n) = $quad mod #n$
#let PAI = $overline(O)$
#let vd(v) = $bold(#v)$
#let span = $op("span")$
#let ide... | |
https://github.com/El-Naizin/cv | https://raw.githubusercontent.com/El-Naizin/cv/main/modules_zh/certificates.typ | typst | Apache License 2.0 | #import "../brilliant-CV/template.typ": *
#cvSection("证书")
#cvHonor(
date: [2022],
title: [AWS 安全认证],
issuer: [亚马逊网络服务 (AWS)],
)
#cvHonor(
date: [2017],
title: [应用数据科学与 Python],
issuer: [Coursera]
)
#cvHonor(
date: [],
title: [SQL 基础课程],
issuer: [Datacamp]
)
|
https://github.com/qujihan/toydb-book | https://raw.githubusercontent.com/qujihan/toydb-book/main/README.md | markdown | <div align="center">
<strong>
<samp>
</samp>
</strong>
</div>
# WIP. 从零开始的分布式数据库生活
[](https://github.com/qujihan/toydb-book/actions/workflows/build.yml)
[,
abstract: "学习笔记",
)
#pagebreak()
= 项目一般知识
- 项目
- 组织
- 生命周期
#pagebreak()
== 项目
#cannotes(
question: [
什么是项目?
项目有什么特点?
项目目标有什么?
],
notes: [
项目第三方
地方撒的
],
summarize: [
项目是一系列的活动的集合
项目管... | |
https://github.com/typst/packages | https://raw.githubusercontent.com/typst/packages/main/packages/preview/cetz/0.0.1/path-util.typ | typst | Apache License 2.0 | // This file contains utility functions for path calculation
#import "util.typ"
#import "vector.typ"
#let default-samples = 25
#let ctx-samples(ctx) = ctx.at("samples", default: default-samples)
/// Get first position vector of a path segment
///
/// - s (segment): Path segment
/// -> vector
#let segment-begin(s) = ... |
https://github.com/darioglasl/Arbeiten-Vorlage-Typst | https://raw.githubusercontent.com/darioglasl/Arbeiten-Vorlage-Typst/main/Anhang/03_Projektplan/02_risikomanagement.typ | typst | === Risiko Management
Für das Projekt werden verschiedene Risiken identifiziert, die in der folgenden Matrix kategorisiert werden. Links ist die Eintrittswahrscheinlichkeit und oben die Auswirkung aufgeführt. Anschliessend werden die einzelnen Risiken beschrieben, sowie die Massnahmen, die ergriffen werden, um das Risi... | |
https://github.com/piepert/philodidaktik-hro-phf-ifp | https://raw.githubusercontent.com/piepert/philodidaktik-hro-phf-ifp/main/src/parts/ephid/grundpositionen/thesen.typ | typst | Other | #import "/src/template.typ": *
== #ix("Abbilddidaktik"), #ix("Konstitutionsthese") und #ix("Transformationsthese")
#table(columns: (33.33%, 33.33%, 33.33%),
stroke: none,
strong(ix("Abbilddidaktik")),
strong(ix("Konstitutionsthese")),
strong(ix("Transformationsthese")),
[
Die Philosophie... |
https://github.com/QQKdeGit/bupt-typst | https://raw.githubusercontent.com/QQKdeGit/bupt-typst/master/main.typ | typst | MIT License | #import "template.typ": *
#show: BUPTBachelorThesis.with(
titleZH: "这是一个本科毕业设计的中文标题",
abstractZH: [
中文摘要。
那只敏捷的棕毛 fox 跳过那只懒狗,消失得无影无踪。
那只敏捷的棕毛狐狸 jumps over 那只懒狗,消失得无影无踪。
思源宋体也和它的兄弟字体思源黑体一样针对屏幕显示进行了优化,但前者具有截然不同的风格,适合用于文学性较强的文本或优雅、时尚的标题。它的打印效果也非常优美。
],
keywordsZH: ("北京邮电大学", "本科生", "毕业设... |
https://github.com/chendaohan/bevy_tutorials_typ | https://raw.githubusercontent.com/chendaohan/bevy_tutorials_typ/main/11_transform/transform.typ | typst | #set page(fill: rgb(35, 35, 38, 255), height: auto, paper: "a3")
#set text(fill: color.hsv(0deg, 0%, 90%, 100%), size: 22pt, font: "Microsoft YaHei")
#set raw(theme: "themes/Material-Theme.tmTheme")
= 1. Transform 变换
Transform 允许你将对象放置到游戏世界中。它是对象的“平移”(位置/坐标)、“旋转”和“缩放”的组合。
你可以通过修改 translation 来移动对象,通过修改 rotation 来旋转对象... | |
https://github.com/lucannez64/Notes | https://raw.githubusercontent.com/lucannez64/Notes/master/Maths_Devoir_Maison_4.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: "Maths Devoir Maison 4",
authors: (
"<NAME>",
),
date: "4 Décembre, 2023",
)
#set heading(numbering: "1.1.")
== Rédacteur <NAME>
<réda... | |
https://github.com/tiankaima/typst-notes | https://raw.githubusercontent.com/tiankaima/typst-notes/master/ffa14c-numerical_algebra/main.typ | typst | #set text(
font: "Source Han Serif SC",
size: 10pt,
)
#set math.equation(numbering: "(1)")
#align(
center,
text(20pt)[
2023秋 数值代数
],
)
#align(
center,
text(12pt)[
马天开 PB21000030
],
)
#align(
center,
text(12pt)[
上次修改:#datetime.today().display("[year]-[month]-[day]")
],
)
#outline(depth... | |
https://github.com/i-am-wololo/cours | https://raw.githubusercontent.com/i-am-wololo/cours/master/main/parties_i23/groupes.typ | typst | #import "../templates.typ": *
| |
https://github.com/p-will/thesis_typst_template | https://raw.githubusercontent.com/p-will/thesis_typst_template/main/README.md | markdown | # thesis_typst_template
A typst template for a thesis at HTWD Dresden
| |
https://github.com/long-paddy-field/typst_template | https://raw.githubusercontent.com/long-paddy-field/typst_template/main/seminor/seminor_temp.typ | typst | #import "@preview/physica:0.9.3":*
#import "@preview/unify:0.5.0":*
#import "@preview/metro:0.2.0":*
#let seminor_article(
fontsize: 11pt,
title: none,
subtitle: none,
header_text: none,
autors: (),
abstruct: [],
date: none,
doc,
)={
let serif = "Noto Serif CJK JP"
let sans = "Noto Sans CJK JP"
/... | |
https://github.com/matteopolak/resume | https://raw.githubusercontent.com/matteopolak/resume/main/README.md | markdown | MIT License | # My Resume
[](.github/workflows/build.yml)
My resume, built with [Typst](https://github.com/typst/typst).
|
https://github.com/lucafluri/typst-templates | https://raw.githubusercontent.com/lucafluri/typst-templates/master/Project_Report_FHNW_MSE/template.typ | typst | #import "appendix.typ"
#let buildMainHeader(mainHeadingContent) = {
[
#align(center, smallcaps(mainHeadingContent))
#line(length: 100%)
]
}
#let buildSecondaryHeader(mainHeadingContent, secondaryHeadingContent) = {
[
#smallcaps(mainHeadingContent) #h(1fr) #emph(secondaryHeadingContent)... | |
https://github.com/adeshkadambi/ut-thesis-typst | https://raw.githubusercontent.com/adeshkadambi/ut-thesis-typst/main/template.typ | typst | MIT License | #let ut-thesis(
title,
author,
degree,
department,
year,
abstract,
ack,
abbrev,
body
) = {
// constants
let rest-margin = 0.75in
let left-margin = 1.25in
let font-size = 12pt
let font = "New Computer Modern"
// Set the document's basic properties
set document(author: author, titl... |
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/auton-routes/program.typ | typst | Creative Commons Attribution Share Alike 4.0 International | #import "/packages.typ": notebookinator
#import notebookinator: *
#import themes.radial.components: *
#import "/utils.typ"
#show: create-body-entry.with(
title: "Program: Offensive Size Auton",
type: "program",
date: datetime(year: 2024, month: 1, day: 20),
author: "<NAME>",
witness: "<NAME>",
)
#grid(
c... |
https://github.com/katamyra/Notes | https://raw.githubusercontent.com/katamyra/Notes/main/Compiled%20School%20Notes/CS3001/Sections/MakeupSection.typ | typst | #import "../../../template.typ": *
= Social Epistemology
#definition[
*Internal Realism* is a point of view in the middle of scientific realism (which is the idea that scientific theories provide true descriptions of our world) and anti-realism (which is the idea that )
] | |
https://github.com/abenson/report | https://raw.githubusercontent.com/abenson/report/master/README.md | markdown | # A Report template for Use with Typst
SPDX-License Identifier: Unlicense
These files are meant to be used with Typst `v0.7.0`. They can be made to work
with older versions, though. I believe the only thing I'm using from `v0.7.0`
currently is `float:true`.
## Status
All of the old templates and plans are being re... | |
https://github.com/marcantoinem/CV | https://raw.githubusercontent.com/marcantoinem/CV/main/fr/education.typ | typst | #import "../src/style.typ": experience
#let polytechnique = {
experience(
"Polytechnique Montréal",
[GPA: 3,71/4.00 $diamond.stroked.small$ 64/120 crédits],
"Août 2022 - Présent",
"Génie informatique",
"",
)
}
| |
https://github.com/TypstApp-team/typst | https://raw.githubusercontent.com/TypstApp-team/typst/master/tests/typ/meta/cite-footnote.typ | typst | Apache License 2.0 | Hello @netwok
And again: @netwok
#pagebreak()
#bibliography("/files/works.bib", style: "chicago-notes")
|
https://github.com/cbr9/CV | https://raw.githubusercontent.com/cbr9/CV/main/modules/certificates.typ | typst | Apache License 2.0 | #import "../template/template.typ": *
#cvSection("Certificates")
#cvHonor(
date: "April 2022",
title: "PyTorch for Deep Learning",
issuer: "Udemy",
url: "https://www.udemy.com/certificate/UC-c8142260-a945-4f41-91f5-d213671b8493"
)
#cvHonor(
date: "March 2022",
title: "Mathematics for Machine Learning",
... |
https://github.com/Treeniks/bachelor-thesis-isabelle-vscode | https://raw.githubusercontent.com/Treeniks/bachelor-thesis-isabelle-vscode/master/presentation.typ | typst | #import "/utils/isabelle.typ": *
#import "@preview/cetz:0.2.2"
#import "@preview/polylux:0.3.1": *
#import themes.clean: *
#import "@preview/fletcher:0.5.1" as fletcher: diagram, node, edge
#import "@preview/codly:1.0.0": *
#set page(paper: "presentation-16-9")
#let tum-blue = rgb(0, 101, 189)
#let date = datetime(y... | |
https://github.com/TypstApp-team/typst | https://raw.githubusercontent.com/TypstApp-team/typst/master/tests/typ/visualize/gradient-math.typ | typst | Apache License 2.0 | // Test that gradients are applied correctly on equations.
---
// Test on cancel
#show math.equation: set text(fill: gradient.linear(..color.map.rainbow))
#show math.equation: box
$ a dot cancel(5) = cancel(25) 5 x + cancel(5) 1 $
---
// Test on frac
#show math.equation: set text(fill: gradient.linear(..color.map.ra... |
https://github.com/rabotaem-incorporated/calculus-notes-2course | https://raw.githubusercontent.com/rabotaem-incorporated/calculus-notes-2course/master/sections/03-lebesgue-integral/05-var-substitution.typ | typst | #import "../../utils/core.typ": *
== Замена переменной в интеграле Лебега
#def(label: "def-diffeomorphism")[
Пусть $Omega_1$ и $Omega_2 subset RR^m$ открытые. $Phi: Omega_1 --> Omega_2$ называется _диффеоморфизмом_, если
1. $Phi$ --- биекция,
2. $Phi$ --- непрерывно дифференцируема на $Omega_1$,
3. $... | |
https://github.com/Simgnt/report-typst-template | https://raw.githubusercontent.com/Simgnt/report-typst-template/main/README.md | markdown | # Report Format
Template typst pour quarto correspondant au format du rapport de stage ENSAE. Il suffit de télécharger le dossier _extensions dans son environnement et de remplir le header de la même façon que dans le template.
| |
https://github.com/Myriad-Dreamin/typst.ts | https://raw.githubusercontent.com/Myriad-Dreamin/typst.ts/main/fuzzers/corpora/math/delimited_08.typ | typst | Apache License 2.0 |
#import "/contrib/templates/std-tests/preset.typ": *
#show: test-page
// Test colored delimiters
$ lr(
text("(", fill: #green) a/b
text(")", fill: #blue)
) $
|
https://github.com/Myriad-Dreamin/typst.ts | https://raw.githubusercontent.com/Myriad-Dreamin/typst.ts/main/fuzzers/corpora/math/matrix_06.typ | typst | Apache License 2.0 |
#import "/contrib/templates/std-tests/preset.typ": *
#show: test-page
$ mat(B, A B) $
$ mat(B, A B, dots) $
$ mat(B, A B, dots;) $
$ mat(#1, #(foo: "bar")) $
|
https://github.com/hash-roar/typst-math-template | https://raw.githubusercontent.com/hash-roar/typst-math-template/main/two_clolumn_thesis/main.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: "math",
authors: (
(name: "<NAME>", email: "<EMAIL>"),
),
abstract: [#lorem(30)],
date: "April 18, 2023",
keywords: ("word1", "word... | |
https://github.com/qujihan/typst-beamer | https://raw.githubusercontent.com/qujihan/typst-beamer/main/example/example.typ | typst | MIT License | #import "../beamer.typ": beamer
#show: beamer.with(
title: "Write a Beamer Template in Typst",
author: "<EMAIL>",
date: "2023-04-03",
)
= Show Time
== Offical Example Code (Fibonacci sequence)
#lorem(20)
$ F_n = round(1/sqrt(5) phi.alt^n), quad phi.alt = (1 + sqrt(5))/2 $
#let count = 8
#let nums = range(1, cou... |
https://github.com/VisualFP/docs | https://raw.githubusercontent.com/VisualFP/docs/main/SA/design_concept/mgmt_summary.typ | typst | = Management Summary
== Initial Situation
Many teachers use tools like Scratch or LEGO Mindstorms when introducing
children and young adults to the programming world. Such visual, block-based
tools eliminate the hurdle of code syntax, allowing beginners to concentrate on
the program they want to write.
However, almo... | |
https://github.com/MALossov/YunMo_Doc | https://raw.githubusercontent.com/MALossov/YunMo_Doc/main/thesis.typ | typst | Apache License 2.0 | #import "./template/template.typ": *
#show: Thesis()
|
https://github.com/7sDream/fonts-and-layout-zhCN | https://raw.githubusercontent.com/7sDream/fonts-and-layout-zhCN/master/chapters/04-opentype/schemtic.typ | typst | Other | #import "/template/theme.typ": theme
#import "/lib/glossary.typ": tr
#let stroke = 1pt + theme.main;
#set grid.vline(stroke: stroke)
#set grid.hline(stroke: stroke)
#let graph-cell = (it, no-stroke: false) => block(
spacing: 0pt,
inset: 0.5em,
outset: 0pt,
stroke: if no-stroke { none } else { stroke },
it,... |
https://github.com/OverflowCat/BUAA-Digital-Image-Processing-Sp2024 | https://raw.githubusercontent.com/OverflowCat/BUAA-Digital-Image-Processing-Sp2024/master/expt01/report.typ | typst | #set page(margin: (left: 1.6cm, right: 1.6cm, top: 2.4cm, bottom: 2.4cm), numbering: "1")
#set text(font:("STIX Two Text", "Noto Serif CJK SC"), size: 1.07em, lang: "zh", cjk-latin-spacing: auto)
#set par(leading: 0.96em, justify: true)
#show par: set block(spacing: 1.25em)
#set heading(bookmarked: true)
#show heading:... | |
https://github.com/thornoar/lambda-calculus-course | https://raw.githubusercontent.com/thornoar/lambda-calculus-course/master/main-lectures/problems-all.typ | typst | #import "template.lib.typ": *
#import "@local/common:0.0.0": *
#show: formatting
#let Mult = combinator([Mult])
#let Fac = combinator([Fac])
#set heading(numbering: none)
#head([ Задачи ])
= Конверсия и редукция
+
- Перепишите в формальной нотации: $y(@x..x y (@z%w..y z))$
- Перепишите в упрощённом виде: $(@v'(@... | |
https://github.com/tingerrr/anti-matter | https://raw.githubusercontent.com/tingerrr/anti-matter/main/src/util.typ | typst | MIT License | #import "@preview/oxifmt:0.2.0"
/// Run `func` in locate to get a location, skip locate if a location is already given.
///
/// - loc (location, none): a `location` which may not be set
/// - func (function): a function which receives a `location`
/// -> any
#let maybe-locate(loc, func) = {
if loc != none {
func... |
https://github.com/lurbano/typstTemplates | https://raw.githubusercontent.com/lurbano/typstTemplates/main/article/Article%20Template%20(Spring%20Experiment)/main.typ | typst | MIT License | #import "template.typ": *
#show: u_ieee.with(
title: "Determining the Spring Constant of a Small, Green, Spring Scale",
abstract: [
We determined that the relationship between force and the displacement (stretching) of a spring was linear. Using linear regression with multiple small masses, the spring constant ... |
https://github.com/Myriad-Dreamin/shiroa | https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/main/packages/shiroa/utils.typ | typst | Apache License 2.0 |
#import "supports-text.typ": plain-text
#let _labeled-meta(label) = (
context {
let res = query(label)
if res.len() <= 0 {
none
} else if res.len() == 1 {
res.at(0).value
} else {
res.map(it => it.value)
}
}
)
#let _store-content(ct) = (
kind: "plain-text",
content: plai... |
https://github.com/crdevio/Livres | https://raw.githubusercontent.com/crdevio/Livres/main/Avant%20la%20MP2I/main.typ | typst | #import "template.typ": *
#import "tablex.typ" : *
#document(title: "Avant la MP2I - Informatique (2024)")[
#imp[Licence] Avant La MP2I is licensed under CC BY-NC-SA 4.0
#imp[Document encore en écriture !] Rejoignez le discord (https://discord.gg/wrAx8B96Jy)pour signaler les fautes d'orthographe (elles doivent êt... | |
https://github.com/AxiomOfChoices/Typst | https://raw.githubusercontent.com/AxiomOfChoices/Typst/master/Courses/Math%20591%20-%20Mathematical%20Logic/Assignments/Assignment%202.typ | typst | #import "/Templates/generic.typ": latex, header
#import "@preview/ctheorems:1.1.0": *
#import "/Templates/math.typ": *
#import "/Templates/assignment.typ": *
#let head(doc) = header(doc, title: "Assignment 2")
#show: head
#show: latex
#show: NumberingAfter
#show: thmrules
#show: symbol_replacing
#set page(margin: (x: ... | |
https://github.com/voxell-tech/velyst | https://raw.githubusercontent.com/voxell-tech/velyst/main/assets/typst/styles/monokai_pro.typ | typst | Apache License 2.0 | #let red = rgb("#FF6188")
#let orange = rgb("#FC9867")
#let yellow = rgb("#FFD866")
#let green = rgb("#A9DC76")
#let blue = rgb("#78DCE8")
#let purple = rgb("#AB9DF2")
#let base0 = rgb("#19181A")
#let base1 = rgb("#221F22")
#let base2 = rgb("#2D2A2E")
#let base3 = rgb("#403E41")
#let base4 = rgb("#5B595C")
#let base5 =... |
https://github.com/Complex2-Liu/macmo | https://raw.githubusercontent.com/Complex2-Liu/macmo/main/contests/2023/content/problem-04.typ | typst | #import "../lib/math.typ": problem, solution, note, ans
#import "../lib/utils.typ": hphantom
#problem[
记 $phi(k)$ 为欧拉函数在正整数 $k$ 的取值. 求: $sum_(k = 1)^n phi(k) floor(n / k)
= underline(hphantom("ANSWER"))$.
]
#solution[
表达式是一个依赖于 $n$ 的函数, 记为 $S_n$. 显然 $S_1 = 1, S_2 = 3$,
下面我们递归的来求 $S_n$. 设 $S_n - S_(n - 1) = su... | |
https://github.com/sitandr/typst-examples-book | https://raw.githubusercontent.com/sitandr/typst-examples-book/main/src/basics/states/locate.md | markdown | MIT License | # Locate
<div class="warning">This section is outdated. It may be still useful, but it is strongly recommended to study new context system (using the reference).</div>
> Link to [reference](https://typst.app/docs/reference/meta/locate/)
Many things should be recompiled depending on some external things.
To understan... |
https://github.com/jgm/typst-hs | https://raw.githubusercontent.com/jgm/typst-hs/main/test/typ/compiler/string-00.typ | typst | Other | // Test the `len` method.
#test("Hello World!".len(), 12)
|
https://github.com/Joshuah143/himmens-resume | https://raw.githubusercontent.com/Joshuah143/himmens-resume/main/himmens_resume_en.typ | typst | // Imported from Overleaf version
#let ubcblue = rgb("#002145")
#show link: underline
#set text(fallback: false)
#set text(font: "Open Sans", size: 11pt)
#show text.where(weight: "bold"): set text(fill: ubcblue)
#show text.where(weight: "regular"): set text(fill: rgb("#333333"))
#set grid.cell(align: top + left)
#sho... | |
https://github.com/tingerrr/subpar | https://raw.githubusercontent.com/tingerrr/subpar/main/test/kind/test.typ | typst | MIT License | // Synopsis:
// - default kind is figure and is not inferred from content
// - the super supplement is propagated down by default
// - same kind correctly usese same counter
#import "/test/util.typ": *
#import "/src/lib.typ" as subpar
// figure by default regardless of inner content
#subpar.grid(
figure(```typst = ... |
https://github.com/TheLukeGuy/backtrack | https://raw.githubusercontent.com/TheLukeGuy/backtrack/main/tests/sample.typ | typst | Apache License 2.0 | // Copyright © 2023 <NAME>
// This file is part of Backtrack.
//
// Licensed under the Apache License, Version 2.0 (the "License"); you may not
// use this file except in compliance with the License. You may obtain a copy of
// the License at <http://www.apache.org/licenses/LICENSE-2.0>.
//
// Unless required by applic... |
https://github.com/SillyFreak/tu-wien-software-engineering-notes | https://raw.githubusercontent.com/SillyFreak/tu-wien-software-engineering-notes/main/formal-methods/notes.typ | typst | #import "@preview/cetz:0.1.2": canvas, draw, tree
#import "@preview/commute:0.2.0": node, arr, commutative-diagram
#import "../template/template.typ": notes
#show: notes.with(
title: "Formal Methods Notes",
authors: (
"<NAME>, 01126573",
),
)
#[
#set heading(numbering: none)
= License
This work ©20... | |
https://github.com/tlsnotary/docs-mdbook | https://raw.githubusercontent.com/tlsnotary/docs-mdbook/main/research/ole-flavors.typ | typst | #set page(paper: "a4")
#set par(justify: true)
#set text(size: 12pt)
= Oblivious Linear Evaluation (OLE) flavors from random OT
Here we sum up different OLE flavors, where some of them are needed for
subprotocols of TLSNotary. All mentioned OLE protocol flavors are
implementations with errors, i.e. in the presence of... | |
https://github.com/0xPARC/0xparc-intro-book | https://raw.githubusercontent.com/0xPARC/0xparc-intro-book/main/summer-notes-evan/0xparc-summer-2024-notes.typ | typst | #import "@local/evan:1.0.0":*
#show: evan.with(
title: [Evan's notes],
subtitle: [0xPARC Summer 2024],
author: "<NAME>",
date: datetime.today(),
)
#toc
#include "src/0801-symposium.typ"
#include "src/0803-research-workshop.typ"
#include "src/0812-math-seminar.typ"
#include "src/0813-math-seminar.typ"
#includ... | |
https://github.com/catarinacps/typst-abnt | https://raw.githubusercontent.com/catarinacps/typst-abnt/main/presets.typ | typst | MIT License | #let bachelors(title, course) = [
Monograph presented as a partial requirement
for the degree of #title in #course
]
#let inf-ufrgs = (
name: [Instituto de Informática],
department-ina: [Departamento de Informática Aplicada],
department-int: [Departamento de Informática Teórica],
director: ([Di... |
https://github.com/protohaven/printed_materials | https://raw.githubusercontent.com/protohaven/printed_materials/main/common-tools/jointer.typ | typst |
#import "/meta-environments/env-features.typ": *
= Jointer
The _jointer_ (or in some countries a _surface planer_) can flatten the face of a board. The newly flattened face can then be presented to the fence to create a board with an edge square to the face.
== Notes
=== Safety
- Keep hands six inches from the cu... | |
https://github.com/m-pluta/bias-in-ai-report | https://raw.githubusercontent.com/m-pluta/bias-in-ai-report/main/report/recommend.typ | typst | = Value Conflict Analysis <S_VCA>
// #highlight([
// - How human values were identified
// - Describe potential value conflicts
// - Data Collection vs. Privacy
// - How these may be resolved, which group's interests should be prioritised - always prioritise individuals freedoms
// ])
Individuals and corporations... | |
https://github.com/typst/packages | https://raw.githubusercontent.com/typst/packages/main/packages/preview/unichar/0.1.0/ucd/block-10B60.typ | typst | Apache License 2.0 | #let data = (
("INSCRIPTIONAL PAHLAVI LETTER ALEPH", "Lo", 0),
("INSCRIPTIONAL PAHLAVI LETTER BETH", "Lo", 0),
("INSCRIPTIONAL PAHLAVI LETTER GIMEL", "Lo", 0),
("INSCRIPTIONAL PAHLAVI LETTER DALETH", "Lo", 0),
("INSCRIPTIONAL PAHLAVI LETTER HE", "Lo", 0),
("INSCRIPTIONAL PAHLAVI LETTER WAW-AYIN-RESH", "Lo",... |
https://github.com/EpicEricEE/typst-plugins | https://raw.githubusercontent.com/EpicEricEE/typst-plugins/master/united/src/united.typ | typst | #import "number.typ": format-number, format-range
#import "unit.typ": format-unit
// Convert the argument to a string.
//
// The argument can be of type `int`, `float`, `symbol`, `str`, or `content`.
//
// If the argument is of type `content`, it can be an `attach`, `frac`, `lr`,
// `smartquote` or `text` element, or ... | |
https://github.com/Myriad-Dreamin/typst.ts | https://raw.githubusercontent.com/Myriad-Dreamin/typst.ts/main/fuzzers/corpora/layout/out-of-flow-in-block_05.typ | typst | Apache License 2.0 |
#import "/contrib/templates/std-tests/preset.typ": *
#show: test-page
// Mix-and-match all the previous ones.
#set page(height: 5cm, margin: 1cm)
Mix-and-match all the previous tests.
#block(breakable: true, above: 1cm, stroke: 1pt, inset: 0.5cm)[
#counter("dummy").step()
#place(dx: -0.5cm, dy: -0.75cm, box(width... |
https://github.com/Turkeymanc/notebook | https://raw.githubusercontent.com/Turkeymanc/notebook/main/entries/entries.typ | typst | #include "./example-entry.typ"
// TODO: add more entries here
// entries will appear in included order
| |
https://github.com/dainbow/MatGos | https://raw.githubusercontent.com/dainbow/MatGos/master/themes/11.typ | typst | #import "../conf.typ": *
= Свойства интеграла с переменным верхним пределом (непрерывность, дифференцируемость). Формула Ньютона-Лейбница.
== Свойства интеграла с переменным верхним пределом
#definition[
*Разбиением* $P$ отрезка $[a, b]$ называется конечное множество точек отрезка $[a, b]$:
#eq[
$P: a = x_0 <... | |
https://github.com/polarkac/MTG-Stories | https://raw.githubusercontent.com/polarkac/MTG-Stories/master/stories/009%20-%20Born%20of%20the%20Gods/003_Emonberry%20Red.typ | typst | #import "@local/mtgstory:0.2.0": conf
#show: doc => conf(
"Emonberry Red",
set_name: "Born of the Gods",
story_date: datetime(day: 05, month: 02, year: 2014),
author: "<NAME>",
doc
)
#emph[There was no need to trouble the Agent for this; it simply required Adrasteia's shears. Such a shame, she thou... | |
https://github.com/Sematre/typst-letter-pro | https://raw.githubusercontent.com/Sematre/typst-letter-pro/main/src/lib.typ | typst | MIT License | // ####################
// # typst-letter-pro #
// ####################
//
// Project page:
// https://github.com/Sematre/typst-letter-pro
//
// References:
// https://de.wikipedia.org/wiki/DIN_5008
// https://www.deutschepost.de/de/b/briefvorlagen/normbrief-din-5008-vorlage.html
// https://www.deutschepost.de/conten... |
https://github.com/HiiGHoVuTi/requin | https://raw.githubusercontent.com/HiiGHoVuTi/requin/main/log/sat-types.typ | typst |
#import "../lib.typ": *
#show heading: heading_fct
=== SAT -- des preuves !
Soit $k in NN$. On appelle _type fini borné par $k$_ un élément de $"Fin"_k := frak(P)[|1, k|]$.
Dans cette partie, tous les types seront finis bornés par $k$.
#question(0)[Mettre en bijection les valuations des formules à $k$ variables et ... | |
https://github.com/qujihan/typst-book-template | https://raw.githubusercontent.com/qujihan/typst-book-template/main/README_zh.md | markdown | <div align="center">
<strong>
<samp>
[English](./README.md)
</samp>
</strong>
</div>
# 一个Typst书籍模板
> [!IMPORTANT]
> 需要提前安装:
> 1. [typst](https://github.com/typst/typst): *0.12.0* 或者更高版本
> 2. [typstyle](https://github.com/Enter-tainer/typstyle)
> 3. [字体](./fonts.json)
> - 中文字体: [Source Han Serif SC](https://github.... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.