repo stringlengths 26 115 | file stringlengths 54 212 | language stringclasses 2
values | license stringclasses 16
values | content stringlengths 19 1.07M |
|---|---|---|---|---|
https://github.com/hekzam/test | https://raw.githubusercontent.com/hekzam/test/main/write.typ | typst | #import "basics.typ": *
#let wb = state("writebuffer", (:))
// Opens a file to the write buffer
#let open(file) = {
return wb.update(x => {
x.insert(file, (:))
x
})
}
#let append(file, key, value) = {
wb.update(x => {
x.insert(file, dict_insert(x.at(file), key, value))
x
})
}
#let checked_ne... | |
https://github.com/maxgraw/bachelor | https://raw.githubusercontent.com/maxgraw/bachelor/main/apps/document/src/2-theory/ar.typ | typst | Das "Reality-Virtuality Continuum", ursprünglich von <NAME> und <NAME> konzipiert, bietet einen Rahmen zur Unterscheidung zwischen realen und virtuellen Umgebungen. An einem Ende des Kontinuums liegt die vollständig reale Umgebung, die unverändert und unbeeinflusst von digitalen Einflüssen bleibt. Am gegenüberliegenden... | |
https://github.com/memset0/ZJU-Project-Report-Template | https://raw.githubusercontent.com/memset0/ZJU-Project-Report-Template/master/README.md | markdown | MIT License | # ZJU-Project-Report-Template 
Typst is a new text markup language, considered the successor of LaTeX. This is yet another Zhejiang University project report template written in Typst, mainly designed for the course "Fundamentals of Data Structures (211C0020)" a... |
https://github.com/storopoli/Bayesian-Statistics | https://raw.githubusercontent.com/storopoli/Bayesian-Statistics/main/slides/05-linear_regression.typ | typst | Creative Commons Attribution Share Alike 4.0 International | #import "@preview/polylux:0.3.1": *
#import themes.clean: *
#import "utils.typ": *
#import "@preview/plotst:0.2.0": plot as pplot, axis, scatter_plot, graph_plot, overlay
#new-section-slide("Linear Regression")
#slide(title: "Recommended References")[
- #cite(<gelman2013bayesian>, form: "prose"):
- Chapter 14: ... |
https://github.com/kdog3682/mathematical | https://raw.githubusercontent.com/kdog3682/mathematical/main/0.1.0/src/examples/state-and-counter-a1.typ | typst | #context {
let c = counter("a")
c.step()
let x = c.get()
c.step()
c.step()
panic(str(c.final().at(0)))
}
// #context {
// let s = state("x", 1)
// s.update((x) => x + 2)
// panic(s.final())
// }
| |
https://github.com/polarkac/MTG-Stories | https://raw.githubusercontent.com/polarkac/MTG-Stories/master/stories/009%20-%20Born%20of%20the%20Gods/004_Kiora's%20Followers.typ | typst | #import "@local/mtgstory:0.2.0": conf
#show: doc => conf(
"Kiora's Followers",
set_name: "Born of the Gods",
story_date: datetime(day: 12, month: 02, year: 2014),
author: "<NAME>",
doc
)
#emph[Every sea is different, but all of them are connected.]
Oh, there were the usual variations. Temperature.... | |
https://github.com/vEnhance/1802 | https://raw.githubusercontent.com/vEnhance/1802/main/lamv.typ | typst | MIT License | #import "@local/evan:1.0.0":*
#let poonen = link("https://math.mit.edu/~poonen/notes02.pdf")[Poonen's notes]
#show: evan.with(
title: [Linear Algebra and Multivariable Calculus],
subtitle: [Notes from 18.02 Fall 2024],
author: "<NAME>",
date: datetime.today(),
)
#toc
#pagebreak()
#include "src/preface.typ"
... |
https://github.com/gongke6642/tuling | https://raw.githubusercontent.com/gongke6642/tuling/main/可视化/椭圆/tuoyuan.typ | typst | = ellipse
具有可选内容的椭圆。
#image("1.png")
#image("2.png")
#image("3.png") | |
https://github.com/justinvulz/typst_packages | https://raw.githubusercontent.com/justinvulz/typst_packages/main/symbol.typ | typst | #let negspace = [#h(-0.005em)]
#let implies = [$==>$]
#let st = $space s.t. space $
#let cir = $circle.stroked.tiny$
#let coinv(a,b) = $[#a,#b)$
#let leq = $<=$
#let iso = $tilde.equiv$
| |
https://github.com/typst/packages | https://raw.githubusercontent.com/typst/packages/main/packages/preview/stonewall/0.1.0/stonewall.typ | typst | Apache License 2.0 | #let trans = (
rgb("#F7A8D8"),
rgb("#55CDFC"),
rgb("#ffffff"),
rgb("#55CDFC"),
rgb("#F7A8D8"),
);
#let graysexual = (
rgb("#740194"),
rgb("#aeb1aa"),
rgb("#ffffff"),
rgb("#aeb1aa"),
rgb("#740194")
);
#let nonbinary = (
rgb("#fcf434"),
rgb("#ffffff"),
rgb("#9c59d1"),
rgb("#2c2c2c")
)
#let bla... |
https://github.com/levinion/typst-dlut-templates | https://raw.githubusercontent.com/levinion/typst-dlut-templates/main/templates/translate/main.typ | typst | MIT License | #import "../util/style.typ":font_family,font_size
#import "./cover.typ":cover
#import "../util/functions.typ":empty_box
#let three_line_table(values, caption: none, columns: auto)={
let _three_line_table(values) = {
let tlt_header(content) = {
set align(center)
rect(width: 100%, stroke: (bottom: 0.3p... |
https://github.com/ymgyt/techbook | https://raw.githubusercontent.com/ymgyt/techbook/master/math/number/number.typ | typst | == ルート
$sqrt(a)$ は2乗してaになる数のうち正のものを表す(定義) \
$ sqrt(a^2) = |a| $
2乗して$a^2$になる数はaと-aがある。$a < 0$のとき(a = -2)、2乗して4になる正の数は$-a$(-(-2))とする必要があり、この操作を絶対値で表現している
== 絶対値
以下が成り立つ
$ abs(a) &= n <=> a = n or a = -n \
abs(a) &< n <=> -n < a < n \
abs(a) &> n <=> a < -n or n < a
$
| |
https://github.com/Myriad-Dreamin/tinymist | https://raw.githubusercontent.com/Myriad-Dreamin/tinymist/main/syntaxes/textmate/tests/unit/basic/bracket.typ | typst | Apache License 2.0 | $((,(#[)],)))$
#for i in range(0) [)]
#if true [)] else if false [}] else [}]
#while false [)]
|
https://github.com/typst/packages | https://raw.githubusercontent.com/typst/packages/main/packages/preview/pinit/0.1.0/README.md | markdown | Apache License 2.0 | # Pinit
Pin things as you like, especially useful for creating slides.
## Example
### Pin things as you like
Have a look at the source [here](./examples/example.typ).

### Dynamic Slides
Have a look at the pdf file [here](./examples/example.pdf).

#cvSkill(
type: [Языки],
info: [Английский #hBar() Казахский #hBar() Русский #hBar() Японский]
)
#cvSkill(
type: [Tech stack],
info: [JS/TS/Python/Java/C/C++/Golang #hBar() React/Angular #hBar() SQL/MSSQL/MongoDB #hBar() Git/Docker]
)
#cvSkill(
... |
https://github.com/cs-24-sw-3-01/typst-documents | https://raw.githubusercontent.com/cs-24-sw-3-01/typst-documents/main/report/chapters/problem_analysis.typ | typst | #import "../custom.typ": *
= Problem Analysis
#include "foundation.typ"
#pagebreak(weak: true)
#include "problem_domain_analysis.typ"
#pagebreak(weak: true)
#include "application_domain_analysis.typ"
#pagebreak(weak: true) | |
https://github.com/qlaush/template_thesis_stuttgart_imvt | https://raw.githubusercontent.com/qlaush/template_thesis_stuttgart_imvt/main/metadata.typ | typst | MIT License | // Enter your thesis data here:
#let titleEnglish = "Understanding ink formulations for high temperature polymer electrolyte membrane fuel cells having ion pair ionomers"
#let titleGerman = "Untersuchungen zu Tintenformulierungen für Hochtemperatur-Polymerelektrolytmembran-Brennstoffzellen mit Ionenpaar-Ionomeren"
#let... |
https://github.com/hugoledoux/msc_geomatics_thesis_typst | https://raw.githubusercontent.com/hugoledoux/msc_geomatics_thesis_typst/main/chapters/introduction.typ | typst | MIT License | #import "../template.typ": *
= Introduction <chap:intro>
This is a complete template for the MSc Geomatics thesis.
It contains all the parts that are required and is structured in such a way that most/all supervisors expect.
Observe that the MSc Geomatics at TU Delft has no formal requirements, how the document looks... |
https://github.com/leesum1/brilliant-cv | https://raw.githubusercontent.com/leesum1/brilliant-cv/master/modules_en/pullrequst.typ | typst | // Import
#import "@preview/brilliant-cv:2.0.2": cvEntry, cvSection
#import "@preview/fontawesome:0.4.0": *
#let metadata = toml("../metadata.toml")
#let cvSection = cvSection.with(metadata: metadata)
#let cvEntry = cvEntry.with(metadata: metadata)
#cvSection("Open Source Contributions")
#cvEntry(
society: [RT-Thre... | |
https://github.com/arakur/typst-sharp | https://raw.githubusercontent.com/arakur/typst-sharp/master/README.md | markdown | # [WIP] Composing Typst document from .NET
## Example
```fsharp
open TypstSyntax
open TypstSyntax.Script
let markup =
Markup
[ setRule?text <&& [ "font" *=* str "Garamond"; "fill" *=* ii "purple" ]
setRule?heading <& "numbering" *=* str "1."
heading 1 [ tt "Our First Section" ]
... | |
https://github.com/rabotaem-incorporated/calculus-notes-2course | https://raw.githubusercontent.com/rabotaem-incorporated/calculus-notes-2course/master/sections/03-lebesgue-integral/02-summable-functions.typ | typst | #import "../../utils/core.typ": *
== Суммируемые функции
#def(label: "def-sfn")[
Измеримая $f: E --> overline(RR)$ называется _суммируемой на $E$_, если оба следующих интеграла#rf("def-integral") конечны:
$
integral_E f_plus.minus dif mu < +oo.
$
]
#props(label: "sfn-props")[
1. #sublabel("a... | |
https://github.com/Dherse/boxaroo | https://raw.githubusercontent.com/Dherse/boxaroo/main/example/simple.typ | typst | MIT License | #import "../boxaroo.typ": boxaroo, binfo
#set page(width: 250pt, height: auto, margin: 2pt)
#show: boxaroo
#binfo(footer: "It even has a footer")[
This is an info box for all of your important information.
] |
https://github.com/chengluyu/typst-template | https://raw.githubusercontent.com/chengluyu/typst-template/main/README.md | markdown | # Typst Template
This is a Typst slide template for my PQE.
## Features
- Scala 3 syntax highlight.
- MLscript syntax highlight.
## Usage
- Install typst-lsp in VSCode.
- Instlal typst-preview for live preview in VSCode.
- Enable this settings in your VSCode's settings.json.
```json
{ "typst-lsp.exportPdf": "o... | |
https://github.com/Fabioni/Typst-TUM-Thesis-Template | https://raw.githubusercontent.com/Fabioni/Typst-TUM-Thesis-Template/main/titlepage.typ | typst | MIT No Attribution | #import "cover.typ": covertitel
#let titlepage(
title: "",
titleGerman: "",
degree: "",
program: "",
supervisor: "",
advisors: (),
author: "",
startDate: none,
submissionDate: none,
) = {
covertitel(degree: degree, program: program)
align(center, text(2em, weight: 700, title))
align(c... |
https://github.com/jgm/typst-hs | https://raw.githubusercontent.com/jgm/typst-hs/main/test/typ/compiler/recursion-05.typ | typst | Other | #let f(x) = "hello"
#let f(x) = if x != none { f(none) } else { "world" }
#test(f(1), "world")
|
https://github.com/Quaternijkon/Typst_ADSL | https://raw.githubusercontent.com/Quaternijkon/Typst_ADSL/main/content.typ | typst | #import "config.typ": *
#outline-slide()
= NNS
- Brute Force Approach
- Tree-Based Approach
- KD-tree
- Ball-tree
- R-tree
- M-tree
== KD-tree
#slide(composer:(2fr,1fr))[
KD树是每个叶子节点都为k维点的二叉树。所有非叶子节点可以视作用一个超平面把空间分割成两个半空间。节点左边的子树代表在超平面左边的点,节点右边的子树代表在超平面右边的点。
#set text(size: 0.8em)
#pseudocode-list(hooks: .5e... | |
https://github.com/piepert/philodidaktik-hro-phf-ifp | https://raw.githubusercontent.com/piepert/philodidaktik-hro-phf-ifp/main/src/changelog.typ | typst | Other | #import "template.typ": *
= Änderungsverlauf
Da der KÜK noch in Arbeit ist, werden hier die Änderungen jeder Version transparent aufgelistet.
*Die nächsten Ziele:*
- Text, fachlich:
- Lösungsvorschläge der Aufgaben
== Version 2024-10 // naja, mal schauen wann's wirklich rauskommt...
*Hinzugefügt:*
- Text, fach... |
https://github.com/ChristophVanDeest/FH-Kiel-Typst-Template | https://raw.githubusercontent.com/ChristophVanDeest/FH-Kiel-Typst-Template/main/examples/bachelor-thesis/main.typ | typst | MIT License | // Import dependencies such as glossaries etc.
#import "dependencies.typ": *
// Take a look at the file `template.typ` in the file panel
// to customize this template and discover how it works.
#import "../../src/lib.typ": bachelor-thesis
#show: bachelor-thesis.with(
language: "en",
title-de: "Antwort auf die end... |
https://github.com/Myriad-Dreamin/tinymist | https://raw.githubusercontent.com/Myriad-Dreamin/tinymist/main/crates/tinymist-query/src/fixtures/completion/let-context.typ | typst | Apache License 2.0 | // contains: a
#let a = 1;
#let b = /* range after 1..2 */ #();
#let add(x, y) = {
x + y
}
|
https://github.com/ooliver1/a-level-project | https://raw.githubusercontent.com/ooliver1/a-level-project/master/writeup/writeup.typ | typst | #import "./palettes/xcolor.typ": xcolor
#import "@preview/fletcher:0.4.2" as fletcher: node, edge, shapes
#show heading.where(level: 1): set text(24pt)
#show heading.where(level: 2): set text(20pt)
#show heading.where(level: 3): set text(18pt)
#show heading.where(level: 4): set text(16pt)
#set page(numbering: "1")
#set... | |
https://github.com/Its-Alex/resume | https://raw.githubusercontent.com/Its-Alex/resume/master/lib/interests.typ | typst | MIT License | #import "components/title.typ": customTitle
#let interests(title, interests) = [
#customTitle(title)
#grid(
columns: (50%, 50%),
gutter: 0pt,
row-gutter: 1.5em,
..interests.map((interest) => [
#text(weight: 600)[#interest]
])
)
] |
https://github.com/mkpoli/ipsj-typst-template | https://raw.githubusercontent.com/mkpoli/ipsj-typst-template/master/lib/mixed-font.typ | typst | /// 和文・欧文で異なるフォントを指定する
///
/// - jfont (string, array): 和文フォントの種類
/// - jweight (string, integer): 和文フォントの太さ
/// - efont (string, array): 欧文フォントの種類
/// - eweight (string, integer): 欧文フォントの太さ
/// - body (content): 本文
/// -> content
#let mixed(jfont, jweight: "regular", jsize: 1em, efont, eweight: "bold", esize: 1.05em, ... | |
https://github.com/erictapen/typst-invoice | https://raw.githubusercontent.com/erictapen/typst-invoice/main/README.md | markdown | MIT No Attribution | # German invoice template
A template for writing invoices, inspired by the [beautiful LaTeX template by @mrzool.](https://github.com/mrzool/invoice-boilerplate/)
```typ
#import "@preview/classy-german-invoice:0.3.0": invoice
#show: invoice(
// Invoice number
"2023-001",
// Invoice date
datetime(year: 2024, m... |
https://github.com/Kasci/LiturgicalBooks | https://raw.githubusercontent.com/Kasci/LiturgicalBooks/master/CSL_old/oktoich/Hlas8/2_Utorok.typ | typst | #let V = (
"HV": (
("","O preslávnaho čudesé!","Ni umilénija sťažách, nižé sléz istóčnika, ni téplaho ispovídanija, nižé pláča omyvájuščaho, ni serdéčnaho smirénija: ni mytarjú revníteľ bých, nižé bludníci, nižé blúdnomu ótroku. Káko úbo obrjášču mojích mnóhich hrichóv ostavlénije? No ímiže Christé vísi suďbámi, ... | |
https://github.com/fredguth/tufte-typst | https://raw.githubusercontent.com/fredguth/tufte-typst/main/example/main.typ | typst | #import "../tufte_handout_template.typ": template, sidenote
#import "@preview/tablex:0.0.5": tablex, rowspanx, colspanx, hlinex
#let tbl_1 = text(size: 9pt, weight: "thin", tablex(
columns: (1fr, 2fr, 2fr),
rows: auto,
inset: .3em,
auto-lines: false,
hlinex(stroke:.75pt),
[$n$],[$C_... | |
https://github.com/Myriad-Dreamin/typst.ts | https://raw.githubusercontent.com/Myriad-Dreamin/typst.ts/main/CHANGELOG/CHANGELOG-0.5.md | markdown | Apache License 2.0 | # v0.5.0 (Unreleased)
## Changelog since v0.5.0
**Full Changelog**: https://github.com/Myriad-Dreamin/typst.ts/compare/v0.4.1...v0.5.0
## New Contributors
- @sinchang made their first contribution in https://github.com/Myriad-Dreamin/typst.ts/pull/438
- @winstonewert made their first contribution in https://github.... |
https://github.com/soul667/typst | https://raw.githubusercontent.com/soul667/typst/main/PPT/test/1.typ | typst | #import "@preview/touying:0.2.1": *
#import "notes.typ": note, notes
#let (init, slide, slides) = utils.methods(s)
#show: init
#set text(font:("Times New Roman","STSong"))
// #set heading(numbering: "none")
#let bianxi(word1,word2)=[
#word1,
#word2
]
#show: slides
// 用于辨析
= 雅思笔记
== 3-4日
/ Alternatively: instead... | |
https://github.com/mariunaise/HDA-Thesis | https://raw.githubusercontent.com/mariunaise/HDA-Thesis/master/content/introduction.typ | typst | #import "@preview/glossarium:0.4.1": *
#import "@preview/bob-draw:0.1.0": *
= Introduction
In the field of cryptography, @puf devices are a popular tool for key generation and storage @PUFIntro @PUFIntro2.
In general, a @puf refers to a type of circuit that exhibits slightly different behaviors during operation due t... | |
https://github.com/VisualFP/docs | https://raw.githubusercontent.com/VisualFP/docs/main/SA/design_concept/content/design/design_iteration_2_proposal.typ | typst | #import "../../../style.typ": *
#let load-drawio-svg(path, ..args) = image.decode(read(path).replace("Text is not SVG - cannot display", ""), ..args)
= Final Design Proposal <design-proposal-2>
#grid(
columns: (2fr, 1.4fr),
column-gutter: 5pt,
[The basic structure consists of nested blocks, each representing a ... | |
https://github.com/typst/packages | https://raw.githubusercontent.com/typst/packages/main/packages/preview/numty/0.0.2/README.md | markdown | Apache License 2.0 | # Numty
Numeric Typst
Mathematical functions to operate vectors / arrays and numbers in typst, with simple broadcasting and Nan handling.
```typ
#import "numty.typ" as nt
#let a = (1,2,3)
#let b = 2
#nt.mult(a,b) => (2,4,6)
#nt.add(a,a) => (2,4,6)
#nt.add(2,a) => (3,4,5)
#nt.dot(a,a) => 11
#calc.sin((3,4)) -> ... |
https://github.com/storopoli/Bayesian-Statistics | https://raw.githubusercontent.com/storopoli/Bayesian-Statistics/main/slides/12-mcmc.typ | typst | Creative Commons Attribution Share Alike 4.0 International | #import "@preview/polylux:0.3.1": *
#import themes.clean: *
#import "utils.typ": *
#import "@preview/cetz:0.1.2": *
#import "@preview/algo:0.3.3": algo, i, d, comment, code
#new-section-slide("Markov Chain Monte Carlo (MCMC) and Model Metrics")
#slide(title: "Recommended References")[
#text(size: 18pt)[
- #cite... |
https://github.com/stephane-klein/typst-sklein-resume-poc | https://raw.githubusercontent.com/stephane-klein/typst-sklein-resume-poc/main/template.typ | typst | #let colors = (
subtlegray: rgb("#ededee"),
lightgray: rgb("#343a40"),
darkgray: rgb("#212529"),
)
#let awesomeColors = (
skyblue: rgb("#0395DE"),
red: rgb("#DC3522"),
nephritis: rgb("#27AE60"),
concrete: rgb("#95A5A6"),
darknight: rgb("#131A28"),
)
#let themeColor = awesomeColors.red
#... | |
https://github.com/JvandeLocht/assignment-template-typst-hfh | https://raw.githubusercontent.com/JvandeLocht/assignment-template-typst-hfh/main/metadata.typ | typst | MIT License | // Enter your thesis data here:
#let titleEnglish = "(Title English)"
#let titleGerman = "(Title German)"
#let degree = "Bachelor"
#let company = "Firma xyz"
#let program = "Mechanical Engineering"
#let supervisor = "Prof. Dr. <NAME>"
#let advisors = ("<NAME>, M.Sc.",)
#let author = "(Author)"
#let matriculationNumber ... |
https://github.com/Slyde-R/not-jku-thesis-template | https://raw.githubusercontent.com/Slyde-R/not-jku-thesis-template/main/template/thesis.typ | typst | MIT No Attribution | //#import "@local/not-JKU-thesis:0.1.0": jku-thesis // for development
#import "@preview/not-JKU-thesis:0.1.0": jku-thesis
#import "utils.typ": inwriting, draft, todo, flex-caption, flex-caption-styles
#import "glossary.typ": glossary
#import "@preview/glossarium:0.2.6": make-glossary, print-glossary, gls, glspl
#sho... |
https://github.com/liuxu89/liuxu89.github.io | https://raw.githubusercontent.com/liuxu89/liuxu89.github.io/main/book.typ | typst |
#import "@preview/shiroa:0.1.1": *
#show: book
#book-meta(
title: "Wiki",
summary: [
= 文摘
- #chapter("src/daijinhua1.typ")[大众文化的隐形政治学]
]
)
// re-export page template
#import "/templates/page.typ": project
#let book-page = project
| |
https://github.com/EpicEricEE/typst-droplet | https://raw.githubusercontent.com/EpicEricEE/typst-droplet/master/tests/justify/test.typ | typst | MIT License | #import "/src/lib.typ": dropcap
#set page(width: 6cm, height: auto, margin: 1em)
// Test different justify values.
#dropcap(justify: true, lorem(20))
#set par(justify: true)
#dropcap(justify: auto, lorem(20))
#dropcap(justify: false, lorem(20))
|
https://github.com/goshakowska/Typstdiff | https://raw.githubusercontent.com/goshakowska/Typstdiff/main/documentation/docs/bibliography.md | markdown | ## Bibliography:
Sources that were helpful throughout the Typstdiff implementation:
<li> <a href="https://docs.python.org/3/">Python documentation</a> </li>
<li> <a href="https://typst.app/docs/">Typst documentation</a> </li>
<li> <a href="https://www.rust-lang.org/learn">Rust documentation</a> </li>
<li> <a href="ht... | |
https://github.com/Myriad-Dreamin/typst.ts | https://raw.githubusercontent.com/Myriad-Dreamin/typst.ts/main/fuzzers/corpora/visualize/image_06.typ | typst | Apache License 2.0 |
#import "/contrib/templates/std-tests/preset.typ": *
#show: test-page
//
// // Error: 8-29 file not found (searched at typ/visualize/path/does/not/exist)
// #image("path/does/not/exist") |
https://github.com/0x1B05/nju_os | https://raw.githubusercontent.com/0x1B05/nju_os/main/book_notes/content/02_virtualization_02_memory_04_VM.typ | typst | #import "../template.typ": *
#pagebreak()
= Complete Virtual Memory Systems
What features are needed to realize a complete virtual memory system? How do they improve performance, increase security, or otherwise improve the system?
We’ll do this by covering two systems.
The first is one of the earliest exampl... | |
https://github.com/Br0kenSmi1e/ScatteringComputation | https://raw.githubusercontent.com/Br0kenSmi1e/ScatteringComputation/main/main.typ | typst | #import "@preview/touying:0.4.2": *
#import "@preview/touying-simpl-hkustgz:0.1.0" as hkustgz-theme
#import "@preview/cetz:0.2.2": canvas, draw, tree
#let vertex(location, name, color) = {
import draw: *
circle(location, radius: 4pt, name: name, fill: color)
}
#let edge(from, to) = {
import draw: *
line(from, ... | |
https://github.com/Jollywatt/typst-fletcher | https://raw.githubusercontent.com/Jollywatt/typst-fletcher/master/src/utils.typ | typst | MIT License | #import "deps.typ": cetz
#import cetz: vector
#let error(message, ..args) = {
let pairs = args.pos().enumerate() + args.named().pairs()
let ticks(x) = "`" + if type(x) == str { x } else { repr(x) } + "`"
for (k, v) in pairs {
if type(v) == array {
message = message.replace("#.." + str(k), v.map(ticks).join(", ... |
https://github.com/WinstonMDP/knowledge | https://raw.githubusercontent.com/WinstonMDP/knowledge/master/cardinals.typ | typst | #import "cfg.typ": cfg
#show: cfg
= Кардиналы
$x lt.tilde y := exists z$ - инъекця из $x$ в $y$.
$x$ равномощно $y := x tilde y := exists z$ - биекция между $x$ и $y$.
$|x| :=$ кардинальное число $x$.
$|x| = |y| := x tilde y$.
Теорема Кантора-Бернштейна-Шрёдера: $cases(x lt.tilde y, y lt.tilde x) <-> x tilde y$.
... | |
https://github.com/typst/packages | https://raw.githubusercontent.com/typst/packages/main/packages/preview/unichar/0.1.0/ucd/block-10C00.typ | typst | Apache License 2.0 | #let data = (
("OLD TURKIC LETTER ORKHON A", "Lo", 0),
("OLD TURKIC LETTER YENISEI A", "Lo", 0),
("OLD TURKIC LETTER YENISEI AE", "Lo", 0),
("OLD TURKIC LETTER ORKHON I", "Lo", 0),
("OLD TURKIC LETTER YENISEI I", "Lo", 0),
("OLD TURKIC LETTER YENISEI E", "Lo", 0),
("OLD TURKIC LETTER ORKHON O", "Lo", 0),
... |
https://github.com/Myriad-Dreamin/typst.ts | https://raw.githubusercontent.com/Myriad-Dreamin/typst.ts/main/fuzzers/corpora/layout/terms_01.typ | typst | Apache License 2.0 |
#import "/contrib/templates/std-tests/preset.typ": *
#show: test-page
// Test joining.
#for word in lorem(4).split().map(s => s.trim(".")) [
/ #word: Latin stuff.
]
|
https://github.com/japanoise/strategos-m | https://raw.githubusercontent.com/japanoise/strategos-m/main/format.typ | typst | Creative Commons Attribution Share Alike 4.0 International | #let heading-font = "Cooper*"
#let body-font = "Hyde"
#let format-modern(doc) = {
// Set up page
set page(
header: context {
// Reset the footnote counter on each page
counter(footnote).update(0)
},
footer: context {
// Don't show page number on pream... |
https://github.com/crd2333/crd2333.github.io | https://raw.githubusercontent.com/crd2333/crd2333.github.io/main/src/docs/Courses/计算机视觉导论.typ | typst | #import "/src/components/TypstTemplate/lib.typ": *
#show: project.with(
title: "计算机视觉导论",
lang: "zh",
)
#info()[
- 部分参考 #link("https://lhxcs.github.io/note/AI/cv/icv/")[lhxcs 的计算机视觉笔记]
]
= Introduction
== What's Computer Vision
- Computer vision tasks
- 3D reconstruction 3D 重建
3D reconstruction 3D重建, localiz... | |
https://github.com/typst/packages | https://raw.githubusercontent.com/typst/packages/main/packages/preview/genealotree/0.1.0/draw-functions.typ | typst | Apache License 2.0 | #import "calc-functions.typ": get-person-by-name, set-generations, set-subtree-unions, set-unions-sizes-compact, get-root-couples, get-root-spacings
#import "@preview/cetz:0.2.2": draw
#import draw: *
#let draw-infos(person) = {
let paddings = if person.partners-names == () {
(0.4em, 1.5em)
} else {
... |
https://github.com/yonatanmgr/university-notes | https://raw.githubusercontent.com/yonatanmgr/university-notes/main/0366-%5BMath%5D/03661111-%5BLinear%20Algebra%201A%5D/src/lectures/03661111_lecture_4.typ | typst | #import "/0366-[Math]/globals/template.typ": *
#show: project.with(
title: "אלגברה לינארית 1א׳ - שיעור 4",
authors: ("<NAME>",),
date: "11 בינואר, 2024",
)
#set enum(numbering: "(1.א)")
= מערכות משוואות לינאריות
== הגדרה
מערכות משוואות לינאריות באותן נעלמים נקראות *שקולות* אם יש להן את אותו אוסף פתרונות.
=== ... | |
https://github.com/angelcerveraroldan/notes | https://raw.githubusercontent.com/angelcerveraroldan/notes/main/algorithms_ds/algorithms_ds.typ | typst | #import "../preamble.typ" : *
#let abstract = [
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit ... | |
https://github.com/fufexan/cv | https://raw.githubusercontent.com/fufexan/cv/typst/README.md | markdown | # Mihai Fufezan CV
Resume written in [Typst](https://typst.app), built using Nix.
### Building
- `nix build github:fufexan/cv` - English version
- `nix build github:fufexan/cv#romanian` - Romanian version
Now open `result/CV[_ro]_MihaiFufezan.pdf` using your preferred PDF viewer.
### Prebuilt
You can find a PDF c... | |
https://github.com/FA555/ignite | https://raw.githubusercontent.com/FA555/ignite/main/readme_zh.md | markdown | MIT License | Ignite 是一个美观的索引文档生成工具,适用于开卷考试、文档等场景。
Readme 中文 | [English](readme.md)
## 前置
- Python 3.4+ (with pip)
- Typst
## 如何使用
### 索引文件语法
首先将索引内容写入 `data/index.txt` 中。索引文件由若干行构成。除空行(会被忽略)外,任何一行应当符合两种格式之一:
1. 以 `<` 开头且以 `>` 结尾,表示章节划分。尖括号以内的内容会被视为章节标题。
2. 由任意内容加末尾的一个数字构成,表示一个条目。数字的语义是该条目的页码。
### 生成文档
```bash
python3 -m pi... |
https://github.com/piepert/philodidaktik-hro-phf-ifp | https://raw.githubusercontent.com/piepert/philodidaktik-hro-phf-ifp/main/src/kurzentwuerfe/uebung01/main.typ | typst | Other | #import "/src/kurzentwuerfe/template.typ": *
#schedule(class: 9,
title-lesson: "Descartes' cogito-Argument",
title-series: "Erkenntnistheorie",
justification: [
Gemäß der Themen des Rahmenplans für die 9. Klasse sollen die SuS hier im Themenbereich 1 Bedingungen der Möglichkeit der Selbsterkenntnis... |
https://github.com/Skimmeroni/Appunti | https://raw.githubusercontent.com/Skimmeroni/Appunti/main/C++/Introduzione/Compilazione.typ | typst | Creative Commons Zero v1.0 Universal | #import "@preview/showybox:2.0.1": showybox
// Aggiungere disegno preso dalle slide, da fare con Graphviz
Un programma scritto nel linguaggio C++ é in genere costituito da uno o piú
*file sorgente*, dei file di testo ciascuno contiene una parte del codice.
Quando la compilazione viene invocata, prima che avvenga la c... |
https://github.com/Otto-AA/tt-flaky-mre | https://raw.githubusercontent.com/Otto-AA/tt-flaky-mre/main/tests/example%20copy%202/test.typ | typst | #import "@preview/linguify:0.4.1": linguify, set-database
Test | |
https://github.com/mismorgano/UG-FunctionalAnalyisis-24 | https://raw.githubusercontent.com/mismorgano/UG-FunctionalAnalyisis-24/main/config.typ | typst | #import "./lemmify/src/lib.typ": *
// lemmify setup
#let (
proof, rules: thm-rules
) = default-theorems("thm-group", lang: "es")
// The template setup
#let config(title, doc) = {
show: thm-rules
// latex-like setup
set text(12pt, font: "New Computer Modern")
set par(leading: 0.55em, first-line-indent: 0em... | |
https://github.com/konradroesler/edym-skript | https://raw.githubusercontent.com/konradroesler/edym-skript/main/skript.typ | typst | #import "@preview/physica:0.9.3": *
#import "utils.typ": *
#import "template.typ": uni-script-template
#show: doc => uni-script-template(
title: [Vorlesungsskript],
author: [<NAME>],
module-name: [Elektrodynamik],
doc
)
= Worum geht es in der Elektrodynamik?
#bold[In der klassischen Mechanik:]
fundamentale ... | |
https://github.com/yhtq/Notes | https://raw.githubusercontent.com/yhtq/Notes/main/数学模型/作业/hw6.typ | typst | #import "../../template.typ": proof, note, corollary, lemma, theorem, definition, example, remark, proposition,der, partialDer, Spec
#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: "作业6",
au... | |
https://github.com/mitex-rs/mitex | https://raw.githubusercontent.com/mitex-rs/mitex/main/packages/mitex/specs/mod.typ | typst | Apache License 2.0 |
#import "prelude.typ": *
#import "latex/standard.typ": package as latex-std
// 1. import all the packages and form a mitex-scope for mitex to use
#let packages = (latex-std,)
#let mitex-scope = packages.map(pkg => pkg.scope).sum()
// 2. export all packages with specs by metadata and <mitex-packages> label,
// mit... |
https://github.com/jianqih/Hopenhayn-Replicate-Julia | https://raw.githubusercontent.com/jianqih/Hopenhayn-Replicate-Julia/main/main.typ | typst |
#set text(size: 14pt,font: "Linux Libertine")
#set page("a4",number-align: center, numbering: "1")
#let title = [Firm Dynamics]
#align(center, text(18pt)[*#title*])
#set heading(numbering: "1.")
#set math.equation(numbering: "(1)")
#import "@preview/physica:0.9.2": *
#set cite(style: "chicago-author-date")
#let pc = (... | |
https://github.com/alberto-lazari/computer-science | https://raw.githubusercontent.com/alberto-lazari/computer-science/main/type-theory/theory-exercises/exercises/singleton.typ | typst | #import "/common.typ": *
#exercise(
section: (num: "3.1", title: "Singleton type and exercises"),
ex: 3,
solution: false,
[Show that the rule #ES is derivable in the type theory $T_1$ replacing the rule #ES elimination with the E-$N1prog)$ rule and adding the substitution and weakening rules and the sanitary c... | |
https://github.com/MattiaOldani/Generatore-Turni-Grest | https://raw.githubusercontent.com/MattiaOldani/Generatore-Turni-Grest/master/README.md | markdown | # Generatore turni Grest
Questo "progetto" nasce dall'esigenza dei coordinatori del Grest di Capralba di poter organizzare i turni degli animatori in modo rapido e senza perdite di tempo.
## Workflow
### Fase preliminare
La fase preliminare di tutto il workflow è il __setup dell'environment__, che viene effettuato ... | |
https://github.com/Dioprz/Notes | https://raw.githubusercontent.com/Dioprz/Notes/main/Haskell/Haskell_Programming_from_first_principles/Chapter_1/Chapter_1.typ | typst | #let eq = math.attach(sym.equiv, t: sym.alpha)
#let eqn = math.attach(sym.equiv.not, t: sym.alpha)
= Chapter 1: All You Need is Lambda
== Contexto
#block(
inset: 10pt,
)[
_Even the greatest mathematicians, the ones that we would put into our mythology
of great mathematicians, had to do a gread deal of leg work... | |
https://github.com/Toniolo-Marco/git-for-dummies | https://raw.githubusercontent.com/Toniolo-Marco/git-for-dummies/main/slides/practice/status-analysis.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 "../components/gh-button.typ": gh_button
#import "../c... | |
https://github.com/JakMobius/courses | https://raw.githubusercontent.com/JakMobius/courses/main/mipt-os-basic-2024/sem05/main.typ | typst |
#import "@preview/polylux:0.3.1": *
#import "@preview/cetz:0.2.2"
#import "../theme/theme.typ": *
#import "../theme/asm.typ": *
#import "./utils.typ": *
#show: theme
#title-slide[
#align(horizon + center)[
= Ассемблер (AArch64)
АКОС, МФТИ
10 октября, 2024
]
]
#show: enable-handout
#slide(backgrou... | |
https://github.com/r8vnhill/apunte-bibliotecas-de-software | https://raw.githubusercontent.com/r8vnhill/apunte-bibliotecas-de-software/main/Unit1/Kotlin.typ | typst | == Kotlin
Kotlin es un lenguaje de programación multiplataforma, desarrollado por JetBrains, que integra características
de la programación orientada a objetos y funcional. Es conocido por su sintaxis concisa y capacidad para
compilar no solo en JavaScript (JS) y WebAssembly (WASM) para ejecución en navegadores, sino ... | |
https://github.com/typst/packages | https://raw.githubusercontent.com/typst/packages/main/packages/preview/unichar/0.1.0/ucd/block-1E2C0.typ | typst | Apache License 2.0 | #let data = (
("WANCHO LETTER AA", "Lo", 0),
("WANCHO LETTER A", "Lo", 0),
("WANCHO LETTER BA", "Lo", 0),
("WANCHO LETTER CA", "Lo", 0),
("WANCHO LETTER DA", "Lo", 0),
("WANCHO LETTER GA", "Lo", 0),
("WANCHO LETTER YA", "Lo", 0),
("WANCHO LETTER PHA", "Lo", 0),
("WANCHO LETTER LA", "Lo", 0),
("WANCH... |
https://github.com/frosty884/vex-typst-notebook | https://raw.githubusercontent.com/frosty884/vex-typst-notebook/main/main.typ | typst | #import "template.typ": *
#show: notebook.with(
title: "Engineering Notebook 2023-2024",
authors: "<NAME>, <NAME>",
organization: "Illinois Institute of Technology",
location: "Chicago, Illinois",
header: "header.jpg",
)
// We generated the example code below so you can see how
// your document will look. G... | |
https://github.com/typst/packages | https://raw.githubusercontent.com/typst/packages/main/packages/preview/colorful-boxes/1.0.0/lib.typ | typst | Apache License 2.0 | #let colorbox(title: "title", color: none, radius: 2pt, width: auto, body) = {
let stroke-color = luma(70)
let background-color = white
if color == "red" {
stroke-color = rgb(237, 32, 84)
background-color = rgb(253, 228, 224)
} else if color == "green" {
stroke-color = rgb(102, 174, 62)
backgr... |
https://github.com/profetia/me | https://raw.githubusercontent.com/profetia/me/main/src/lib.typ | typst | #import "option.typ" as option
#import "option_ext.typ" as option_ext
| |
https://github.com/typst/packages | https://raw.githubusercontent.com/typst/packages/main/packages/preview/unichar/0.1.0/ucd/block-0D80.typ | typst | Apache License 2.0 | #let data = (
(),
("SINHALA SIGN CANDRABINDU", "Mn", 0),
("SINHALA SIGN ANUSVARAYA", "Mc", 0),
("SINHALA SIGN VISARGAYA", "Mc", 0),
(),
("SINHALA LETTER AYANNA", "Lo", 0),
("SINHALA LETTER AAYANNA", "Lo", 0),
("SINHALA LETTER AEYANNA", "Lo", 0),
("SINHALA LETTER AEEYANNA", "Lo", 0),
("SINHALA LETTER... |
https://github.com/jgm/typst-hs | https://raw.githubusercontent.com/jgm/typst-hs/main/test/typ/text/space-06.typ | typst | Other | // Test that trailing space does not force a line break.
LLLLLLLLLLLLLLLLLL R _L_
|
https://github.com/felsenhower/kbs-typst | https://raw.githubusercontent.com/felsenhower/kbs-typst/master/examples/03.typ | typst | MIT License | $
H psi_n = E_n psi_n \
H = - hbar/(2m) dv(,x,2)
+ 1/2 m omega^2 x^2 \
E_n = hbar omega (n + 1/2) \
braket(psi_n, psi_m) = delta_(n m)
$
|
https://github.com/typst/packages | https://raw.githubusercontent.com/typst/packages/main/packages/preview/cetz/0.1.2/src/lib/decorations.typ | typst | Apache License 2.0 | #import "../vector.typ"
#import "../matrix.typ"
#import "../util.typ"
#import "../draw.typ": *
/// Rotates the vector 'ab' around 'a' and scales it to 'len', returns the absolute point 'c'.
#let _rotate-around(a, b, angle: 90deg, len: auto) = {
let rel = vector.sub(b, a)
let rotated = util.apply-transform(matrix.t... |
https://github.com/Edubmstr/typst_public | https://raw.githubusercontent.com/Edubmstr/typst_public/main/supercharged-dhbw1/lib.typ | typst | #import "@preview/codelst:2.0.1": *
#import "acronym-lib.typ": init-acronyms, print-acronyms, acr, acrpl, acrs, acrspl, acrl, acrlpl, acrf, acrfpl
#import "titlepage.typ": *
#import "confidentiality-statement.typ": *
#import "declaration-of-authorship.typ": *
#import "check-attributes.typ": *
// Workaround for the la... | |
https://github.com/sitandr/conchord | https://raw.githubusercontent.com/sitandr/conchord/main/tabs/gen.typ | typst | MIT License | #let to-int(s) = {
if s.matches(regex("^\d+$")).len() != 0 { int(s) } else { panic("Bad number: " + s) }
}
#let parse-note(n, s-num: 6) = {
if n == "p" {
return ()
}
return n.split("+").map(
n => {
let cont = if n.starts-with("^") { "^" } else if n.starts-with("`") { "`" } else { none }
if... |
https://github.com/jneug/typst-ccicons | https://raw.githubusercontent.com/jneug/typst-ccicons/main/docs/ccicons-manual.typ | typst | MIT License | #import "../src/ccicons.typ" as ccicons: *
// Official creative commons color palette
#let cctomato = rgb("#ed592f")
#let ccdarkslategray = rgb("#333333")
#let ccgold = rgb("#efbe00")
#let ccorange = rgb("#fb7729")
#let ccforestgreen = rgb("#04a635")
#let ccdarkturquoise = rgb("#05b5da")
#let ccdarkslateblue = rgb("#3... |
https://github.com/veilkev/jvvslead | https://raw.githubusercontent.com/veilkev/jvvslead/Typst/files/91_bank99.typ | typst | #import "../sys/packages.typ": *
#import "../sys/sys.typ": *
#import "../sys/header.typ": *
#import "@preview/bob-draw:0.1.0": *
// Space between header
#v(150pt)
// Shows heading
#text(size: 12pt
)[= Bank 99]
#note("Bank 99 (operator 99) is a term used in bookeeping to refer to the forms of currency that have not ... | |
https://github.com/jackkyyh/ZXCSS | https://raw.githubusercontent.com/jackkyyh/ZXCSS/main/scripts/1_qec.typ | typst | #import "../import.typ": *
#slide(title: [Stabilizer codes])[
#write_footer[<NAME>. (1997). Stabilizer codes and quantum error correction. California Institute of Technology.]
/ Stabilizers: an Abelian subgroup $cal(S) < cal(P)_n$
#pause
/ Codespace: $cal(C):={ket(psi) in cal(H)^(times.circle n): S ket(ps... | |
https://github.com/dismint/docmint | https://raw.githubusercontent.com/dismint/docmint/main/multicore/pset1.typ | typst | #import "template.typ": *
#show: template.with(
title: "6.5081 Problem Set #1",
subtitle: "<NAME>",
pset: true
)
_Collaborators: <NAME>_
= Problem 1
/ Safety: Something bad will never happen.
/ Liveness: Something good will eventually happen.
I will consider "good" and "bad" to be placeholders for arbitrary e... | |
https://github.com/MattiaOldani/Informatica-Teorica | https://raw.githubusercontent.com/MattiaOldani/Informatica-Teorica/master/capitoli/calcolabilità/09_calcolabilità.typ | typst | #import "../alias.typ": *
#import "@preview/algo:0.3.3": code
#import "@preview/lemmify:0.1.5": *
#let (
theorem, lemma, corollary,
remark, proposition, example,
proof, rules: thm-rules
) = default-theorems("thm-group", lang: "it")
#show: thm-rules
#show thm-selector("thm-group", subgroup: "theorem"): it => ... | |
https://github.com/pascalguttmann/git-presentation | https://raw.githubusercontent.com/pascalguttmann/git-presentation/master/git-presentation.typ | typst | #import "@preview/polylux:0.3.1": *
#import themes.university: *
#let title = "Version Control with Git"
#let subtitle = ""
#let author = ("<NAME>")
#let institution-name = "<NAME>"
#let date = datetime.today().display(
"[day padding:space] [month repr:short] [year repr:full]"
)
#let accent-color = rgb... | |
https://github.com/yaoyuanArtemis/resume | https://raw.githubusercontent.com/yaoyuanArtemis/resume/main/cv_1-zh.typ | typst | Do What The F*ck You Want To Public License | #import "template.typ": *
#import "data.typ": *
#show: project.with(
title: namezh,
author: authorzh,
)
#section[ #titleemj("curl.svg") #selftitlezh ]
#selfzh
#section[ #titleemj("mortarboard.svg") #edutitlezh ]
#eduzh
#section[ #titleemj("seedling.svg") #techtitlezh ]
#techzh
#section[ #titleemj("telescope... |
https://github.com/Kasci/LiturgicalBooks | https://raw.githubusercontent.com/Kasci/LiturgicalBooks/master/CSL_old/oktoich/Hlas2/0_Nedela.typ | typst | #let M = (
"HV": (
("", "", "Préžde vík ot Otcá róždšemusja Bóžiju Slóvu, voplóščšemusja ot Ďívy Maríji, prijidíte poklonímsja: krest bo preterpív, pohrebéniju predadésja, jáko sám voschoťí: i voskrés iz mértvych, spasé mja zabluždájuščaho čelovíka."),
("", "", "Préžde vík ot Otcá róždšemusja Bóžiju Slóvu, vo... | |
https://github.com/dyc3/senior-design | https://raw.githubusercontent.com/dyc3/senior-design/main/use-cases.typ | typst | #import "lib/use-cases.typ": usecase
= Use Cases <Chapter::UseCases>
#usecase(
[Deploy to Fly],
description: [
In this use case, the maintainer of OTT is hosting the official website, OpenTogetherTube.com. The website needs to remain deployable to Fly.io, and the deployment pipelines need to continue to be fu... | |
https://github.com/typst/packages | https://raw.githubusercontent.com/typst/packages/main/packages/preview/rich-counters/0.1.0/example.typ | typst | Apache License 2.0 | #import "@preview/rich-counters:0.1.0": *
#set heading(numbering: "1.1")
#let mycounter = richcounter(identifier: "mycounter", inherited_levels: 1)
// DOCUMENT
Displaying `mycounter` here: #context (mycounter.display)("1.1")
= First level heading
Displaying `mycounter` here: #context (mycounter.display)("1.1")
St... |
https://github.com/atareao/fondos-productivos | https://raw.githubusercontent.com/atareao/fondos-productivos/master/src/gnome_shell.typ | typst | MIT License | //ref https://gist.github.com/rothgar/7079722
#set page(
"presentation-16-9",
fill: black,
margin: 0.5cm)
#set text(size: 11pt, fill: white)
= GNOME Shell
#columns(3, gutter: 12pt)[
== Navegación general
#line(stroke: white, length: 100%)
#table(
columns: (1fr, 1.7fr),
gutter: -4pt,
... |
https://github.com/giZoes/justsit-thesis-typst-template | https://raw.githubusercontent.com/giZoes/justsit-thesis-typst-template/main/resources/pages/bachelor-decl-page.typ | typst | MIT License | #import "../utils/indent.typ": indent
#import "../utils/style.typ": 字号, 字体
#import "../../others/bachelor-assignment.typ":bachelor-assignment
// 本科生声明页
#let bachelor-decl-page(
// need-assignment: false,
anonymous: false,
twoside: false,
fonts: (:),
info: (:),
) = {
// 0. 如果需要匿名则短路返回
if anonymous {
r... |
https://github.com/Myriad-Dreamin/typst.ts | https://raw.githubusercontent.com/Myriad-Dreamin/typst.ts/main/fuzzers/corpora/bugs/flow-2_00.typ | typst | Apache License 2.0 |
#import "/contrib/templates/std-tests/preset.typ": *
#show: test-page
#set page(height: 60pt)
#v(19pt)
#block[
But, soft! what light through yonder window breaks?
It is the east, and Juliet is the sun.
]
|
https://github.com/HeZeBang/shtthesis-typst | https://raw.githubusercontent.com/HeZeBang/shtthesis-typst/main/template.typ | typst | MIT License | // Font Declaration
#let oldfont = (
heiti : ("Heiti SC", "Heiti TC", "SimHei", "PT Sans"),
heitibf : ("Heiti SC", "Heiti TC", "SimHeiBold", "SimHei"),
songti : ("Times New Roman", "Songti SC", "Songti TC", "SimSun"),
songtibf : ("Times New Roman", "Songti SC", "Songti TC", "SimSunBold", "SimSun"),
zhongsong... |
https://github.com/mvuorre/quarto-apaish | https://raw.githubusercontent.com/mvuorre/quarto-apaish/main/_extensions/apaish/typst-template.typ | typst | Creative Commons Zero v1.0 Universal | // document mode
#let doc(
title: none,
running-head: none,
authors: none,
affiliations: none,
authornote: none,
abstract: none,
keywords: none,
margin: (x: 2.5cm, y: 2.5cm),
paper: "us-letter",
font: ("New Computer Modern"),
fontsize: 11pt,
leading: 0.55em,
spacing: 0.55em,
first-line-inden... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.