repo stringlengths 26 115 | file stringlengths 54 212 | language stringclasses 2
values | license stringclasses 16
values | content stringlengths 19 1.07M |
|---|---|---|---|---|
https://github.com/Jollywatt/typst-wordometer | https://raw.githubusercontent.com/Jollywatt/typst-wordometer/master/src/lib.typ | typst | MIT License | #let dictionary-sum(a, b) = {
let c = (:)
for k in a.keys() + b.keys() {
c.insert(k, a.at(k, default: 0) + b.at(k, default: 0))
}
c
}
/// Get a basic word count from a string.
///
/// Returns a dictionary with keys:
/// - `characters`: Number of non-whitespace characters.
/// - `words`: Number of words, d... |
https://github.com/jens-hj/ds-exam-notes | https://raw.githubusercontent.com/jens-hj/ds-exam-notes/main/catppuccin.typ | typst | #let catppuccin = (
latte: (
rosewater: color.rgb(220, 138, 120),
flamingo: color.rgb(221, 120, 120),
pink: color.rgb(234, 118, 203),
mauve: color.rgb(136, 57, 239),
red: color.rgb(210, 15, 57),
maroon: color.rgb(230, 69, 83),
peach: color.rgb(254, 100, 11),
yellow: color.rgb(223, 142,... | |
https://github.com/typst/packages | https://raw.githubusercontent.com/typst/packages/main/packages/preview/unichar/0.1.0/ucd/block-0B00.typ | typst | Apache License 2.0 | #let data = (
(),
("ORIYA SIGN CANDRABINDU", "Mn", 0),
("ORIYA SIGN ANUSVARA", "Mc", 0),
("ORIYA SIGN VISARGA", "Mc", 0),
(),
("ORIYA LETTER A", "Lo", 0),
("ORIYA LETTER AA", "Lo", 0),
("ORIYA LETTER I", "Lo", 0),
("ORIYA LETTER II", "Lo", 0),
("ORIYA LETTER U", "Lo", 0),
("ORIYA LETTER UU", "Lo",... |
https://github.com/jneug/typst-mantys | https://raw.githubusercontent.com/jneug/typst-mantys/main/README.md | markdown | MIT License | # Mantys (v0.1.4)
> **MAN**uals for **TY**p**S**t
Template for documenting [typst](https://github.com/typst/typst) packages and templates.
## Usage
Just import the package at the beginning of your manual:
```typst
#import "@preview/mantys:0.1.4": *
```
Mantys supports **Typst 0.11.0** and newer.
## Writing basics... |
https://github.com/typst/packages | https://raw.githubusercontent.com/typst/packages/main/packages/preview/chronos/0.1.0/src/participant.typ | typst | Apache License 2.0 | #import "@preview/cetz:0.2.2": draw
#import "consts.typ": *
#let PAR-SPECIALS = "?[]"
#let SHAPES = (
"participant",
"actor",
"boundary",
"control",
"entity",
"database",
"collections",
"queue",
"custom"
)
#let _par(
name,
display-name: auto,
from-start: true,
invisible: false,
shape: "par... |
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/brainstorm-drivetrain-sensors.typ | typst | Creative Commons Attribution Share Alike 4.0 International | #import "/packages.typ": notebookinator
#import notebookinator: *
#import themes.radial.components: *
#show: create-body-entry.with(
title: "Brainstorm: Drivetrain Sensors",
type: "brainstorm",
date: datetime(year: 2023, month: 7, day: 28),
author: "<NAME>",
witness: "Violet Ridge",
)
In order to be able to... |
https://github.com/FrightenedFoxCN/cetz-cd | https://raw.githubusercontent.com/FrightenedFoxCN/cetz-cd/main/src/parser.typ | typst | #import "arrows.typ": *
#let to-table(str) = {
str.split(";")
.map(s => s.trim(" ").split("&"))
}
#let is-direction(str) = {
resolve-arrow-string(str) != none
}
#let possible-styles = (
"->", // ordinary arrow
"=>", // double line
"-", // single ... | |
https://github.com/rabotaem-incorporated/algebra-conspect-1course | https://raw.githubusercontent.com/rabotaem-incorporated/algebra-conspect-1course/master/sections/01-number-theory/10-chinese-rem-th.typ | typst | Other | #import "../../utils/core.typ": *
== Китайская теорема об остатках
#th[
Пусть $m_1 bot m_2, space.quad a_1, a_2 in ZZ$, тогда:
+ $exists x_0 in ZZ$:
$cases(
x_0 equiv_(m_1) a_1,
x_0 equiv_(m_2) a_2
)$
+ Пусть $x_0$ удовлетворяет системе выше, тогда:
... |
https://github.com/appare45/Typst-template | https://raw.githubusercontent.com/appare45/Typst-template/main/readme.md | markdown | # Typst-template
macでビルド可能なGitHub Actions付きTypest Template
[](https://github.com/appare45/Typst-template/actions/workflows/build.yaml)
## Credit
クレジットを設定する必要がある。
クレジットは`.env`より提供される。
```
CREDIT=appare45
```
## Build
### D... | |
https://github.com/frectonz/the-pg-book | https://raw.githubusercontent.com/frectonz/the-pg-book/main/book/169.%20bias.html.typ | typst | bias.html
A Way to Detect Bias
October 2015This will come as a surprise to a lot of people, but in some cases
it's possible to detect bias in a selection process without knowing
anything about the applicant pool. Which is exciting because among
other things it means third parties can use this technique to detect
bias... | |
https://github.com/jonathan-iksjssen/jx-style | https://raw.githubusercontent.com/jonathan-iksjssen/jx-style/main/0.2.0/irgot.typ | typst | #let coll = (
"red": (
"bg": rgb("#FEF2F2"), "tx": rgb("#450A0A"), "ac": rgb("#DC2626"), "la": rgb("#FECACA"), "da": rgb("#991B1B") ),
"scarlet": (
"bg": rgb("#FFF5F0"), "tx": rgb("#440F09"), "ac": rgb("#E33F19"), "la": rgb("#FED1BA"), "da": rgb("#9A2817") ),
"orange": (
"bg": rgb("#FFF7ED"), "tx": rgb("#43140... | |
https://github.com/LDemetrios/Typst4k | https://raw.githubusercontent.com/LDemetrios/Typst4k/master/src/test/resources/suite/model/ref.typ | typst | // Test references.
--- ref-basic ---
#set heading(numbering: "1.")
= Introduction <intro>
See @setup.
== Setup <setup>
As seen in @intro, we proceed.
--- ref-label-missing ---
// Error: 1-5 label `<foo>` does not exist in the document
@foo
--- ref-label-duplicate ---
= First <foo>
= Second <foo>
// Error: 1-5 la... | |
https://github.com/jgm/typst-hs | https://raw.githubusercontent.com/jgm/typst-hs/main/test/typ/layout/transform-03.typ | typst | Other | // Test setting scaling origin.
#let r = rect(width: 100pt, height: 10pt, fill: red)
#set page(height: 65pt)
#box(scale(r, x: 50%, y: 200%, origin: left + top))
#box(scale(r, x: 50%, origin: center))
#box(scale(r, x: 50%, y: 200%, origin: right + bottom))
|
https://github.com/kotfind/hse-se-2-notes | https://raw.githubusercontent.com/kotfind/hse-se-2-notes/master/cpp/lectures/main.typ | typst | #import "/utils/template.typ": conf
#import "/utils/datestamp.typ": datestamp
#show: body => conf(
title: "C++",
subtitle: "Лекции",
author: "<NAME>, БПИ233",
year: [2024--2025],
body,
)
#datestamp("2024-09-13")
#include "./2024-09-13.typ"
#datestamp("2024-09-20")
#include "2024-09-20.typ"
#date... | |
https://github.com/swaits/typst-collection | https://raw.githubusercontent.com/swaits/typst-collection/main/glossy/0.1.0/README.md | markdown | MIT License | # Glossy
This package provides utilities to manage and render glossaries within
documents. It includes functions to define and use glossary terms, track their
usage, and generate a glossary list with references to where terms are used in
the document.

## Motivation
Glossy is... |
https://github.com/floriandejonckheere/utu-thesis | https://raw.githubusercontent.com/floriandejonckheere/utu-thesis/master/thesis/figures/06-automated-modularization/algorithms.typ | typst | #import "@preview/cetz:0.2.2"
#let algorithms = yaml("/bibliography/literature-review.yml").at("categories").at("algorithms")
#let total = algorithms.values().sum().len()
#let data = (
([Clustering#linebreak()algorithms#v(8em)], algorithms.at("clustering").len()),
([Other algorithms], algorithms.at("other").len()... | |
https://github.com/Ngan-Ngoc-Dang-Nguyen/thesis | https://raw.githubusercontent.com/Ngan-Ngoc-Dang-Nguyen/thesis/main/docs/chapter1.typ | typst | // #include "../tools/multi-section-ref.typ"
// #import "../tools/macros.typ": eqref
#include "../tools/multi-section-ref.typ"
#import "../tools/macros.typ": eqref
#import "../typst-orange.typ": theorem, proof, lemma, proposition, corollary, example
// Nhớ đánh số trang và footnote
// Canh đều toàn văn bản
//#set alig... | |
https://github.com/xrarch/books | https://raw.githubusercontent.com/xrarch/books/main/documents/xlospec/titlepage.typ | typst | *XR/station Project* \
*XLO File Format Specification* \
_Revision 1.0, May 29, 2024_
_Revision 2.0, June 26, 2024_ | |
https://github.com/antonWetzel/Masterarbeit | https://raw.githubusercontent.com/antonWetzel/Masterarbeit/main/arbeit/einleitung.typ | typst | #import "setup.typ": *
= Einleitung <einleitung>
== Motivation
Größere Gebiete wie Teile von Wäldern können mit 3D-Scanners abgetastet werden. Dabei wird entweder vom Boden aus ein Waldgebiet abgetastet oder der Scanner ist an einem Flugzeug oder einer Drohne befestigt, womit der gewünschte Bereich abgeflogen wird... | |
https://github.com/Rhinemann/mage-hack | https://raw.githubusercontent.com/Rhinemann/mage-hack/main/src/chapters/Assets.typ | typst | #import "../templates/interior_template.typ": *
#show: chapter.with(chapter_name: "Assets")
= Assets
#show: columns.with(2, gutter: 1em)
A conveniently prepared spell, a friend in the right office or a perfectly practiced gunplay trick, mages are a crafty bunch, able to find advantages in the moment or prepare for v... | |
https://github.com/kmitsutani/jnsarticle-typ | https://raw.githubusercontent.com/kmitsutani/jnsarticle-typ/main/sample_propagator.typ | typst | MIT No Attribution | #import "jnsarticle.typ": main, appendix, thebibliography
#import "@preview/physica:0.9.3": *
#show: main.with(
title: [伝搬関数と$T$-積], authors: [三ツ谷和也], abstract: [
散乱過程では一般に複数の粒子が複雑に相互作用しながら伝播していくことが予想される.
しかし近接相互作用のみを仮定するならば相互作用と相互作用の間で
自由な粒子の伝播を考えることができる.
したがって自由粒子の伝播振幅について考察しておくことは散乱を考えるうえで基礎となるだろう.
本節では自... |
https://github.com/typst/packages | https://raw.githubusercontent.com/typst/packages/main/packages/preview/fletcher/0.1.1/src/marks.typ | typst | Apache License 2.0 | #import "@preview/cetz:0.1.2"
#import "utils.typ": *
/// Calculate cap offset of round-style arrow cap
///
/// - r (length): Radius of curvature of arrow cap.
/// - θ (angle): Angle made at the the arrow's vertex, from the central stroke
/// line to the arrow's edge.
/// - y (length): Lateral offset from the centra... |
https://github.com/elenev/elenev.github.io | https://raw.githubusercontent.com/elenev/elenev.github.io/main/README.md | markdown | # Academic Personal Website
This README contains a brief description of my website for anyone who may want to use it as a template for their own. In creating this website, my goal was to create a simple, clean, and professional website, which is easy to maintain. Given that both the website and my PDF CV contain some ... | |
https://github.com/AHaliq/DependentTypeTheoryReport | https://raw.githubusercontent.com/AHaliq/DependentTypeTheoryReport/main/chapters/chapter4/index.typ | typst | #import "../../preamble/dtt.typ": *
#import "../../preamble/catt.typ": *
#import "@preview/curryst:0.3.0": rule, proof-tree
#import "@preview/fletcher:0.5.1" as fletcher: diagram, node, edge
#import "@preview/cetz:0.2.2"
= Homotopy Type Theory (HoTT)
$
{c in Tm(Gamma. Id(U,A,B), C) | upright("elim") } iso {star}
$
$... | |
https://github.com/Dav1com/minerva-report-fcfm | https://raw.githubusercontent.com/Dav1com/minerva-report-fcfm/master/template/main.typ | typst | MIT No Attribution | #import "@preview/minerva-report-fcfm:0.3.0" as minerva
#import "meta.typ" as meta
#show: minerva.informe.with(
meta,
showrules: true,
)
//#minerva.resumen[
// Aquí iría el resumen del informe
//]
#outline()
= Escribiendo simples parrafos
Typst se parece mucho a Markdown y secuencias de carácteres especiales pu... |
https://github.com/adam-zhang-lcps/papers | https://raw.githubusercontent.com/adam-zhang-lcps/papers/main/bridge-to-government-apush.typ | typst | Creative Commons Attribution Share Alike 4.0 International | #set page(
paper: "us-letter",
margin: 1in,
header: context if counter(page).get().first() > 1 {
// HACK: There's probably a better way to do this…
align(right, str(counter(page).get().first() - 1))
},
)
#set text(font: "Liberation Serif", size: 12pt)
#set par(leading: 1.3em, first-line-indent: 0.5in)
... |
https://github.com/ntjess/wrap-it | https://raw.githubusercontent.com/ntjess/wrap-it/main/docs/readme.typ | typst | The Unlicense | #import "@preview/showman:0.1.0"
#import "@preview/wrap-it:0.1.0"
#show: showman.formatter.template.with(
eval-kwargs: (
scope: (wrap-it: wrap-it),
eval-prefix: "
#let wrap-content(..args) = output(wrap-it.wrap-content(..args))
#let wrap-top-bottom(..args) = output(wrap-it.wrap-top-bottom(..args)... |
https://github.com/VZkxr/Typst | https://raw.githubusercontent.com/VZkxr/Typst/master/Seminario/Proyecto%20Final/codly-0.2.1/codly.typ | typst | #let __codly-enabled = state("codly-enabled", false)
#let __codly-offset = state("codly-offset", 0)
#let __codly-range = state("codly-range", none)
#let __codly-languages = state("codly-languages", (:))
#let __codly-display-names = state("codly-display-names", true)
#let __codly-display-icons = state("codly-display-ico... | |
https://github.com/Misterio77/typst-nix | https://raw.githubusercontent.com/Misterio77/typst-nix/main/example/main.typ | typst | #import "@preview/gentle-clues:0.9.0": tip
#tip[
Hi there!
#lorem(30)
]
#set text(font: "Fira Sans")
I like Fira.
#image("tux.png", width: 50%)
#let info(data) = [Nix is #data.nix, Guix is #data.guix]
#info(json("data.json"))
| |
https://github.com/fenjalien/cirCeTZ | https://raw.githubusercontent.com/fenjalien/cirCeTZ/main/components.typ | typst | Apache License 2.0 | #import "../typst-canvas/draw.typ": *
#import "parts.typ"
#import "utils.typ": anchors
#let geographical-anchors(pts) = {
assert(type(pts) == "array" and pts.len() == 8, message: "Invalid format for geographical anchor positions " + repr(pts))
let headings = ("west", "north west", "north", "north east", "east... |
https://github.com/cathblatter/ins-poster-typst | https://raw.githubusercontent.com/cathblatter/ins-poster-typst/main/_extensions/ins-poster-typst/typst-template.typ | typst |
// This is an example typst template (based on the default template that ships
// with Quarto). It defines a typst function named 'article' which provides
// various customization options. This function is called from the
// 'typst-show.typ' file (which maps Pandoc metadata function arguments)
//
// If you are creati... | |
https://github.com/TheOnlyMrCat/tree-sitter-typst | https://raw.githubusercontent.com/TheOnlyMrCat/tree-sitter-typst/master/test/corpus/markup.typ | typst | Apache License 2.0 | ============
Basic markup
============
Lorem ipsum dolor sit amet _yes I'm typing this out instead of using the builtin function_,
consecteur adispicing elit \ *And now some bold text after a linebreak*.
// This is a comment
/* These are /* nested */ block comments */
`Inline raw text` also works.
---
(source_file... |
https://github.com/binhtran432k/ungrammar-docs | https://raw.githubusercontent.com/binhtran432k/ungrammar-docs/main/contents/literature-review/gherkin.typ | typst | #import "/components/glossary.typ": gls
== Gherkin <sec-gherkin>
Gherkin is a #gls("dsl") widely used in #gls("bdd") (@sec-bdd) to describe
software requirements in a human-readable format. This section explores the key
features, benefits, and challenges of using Gherkin, focusing on its
applications in defining requ... | |
https://github.com/polarkac/MTG-Stories | https://raw.githubusercontent.com/polarkac/MTG-Stories/master/stories/003%20-%20Gatecrash/003_The%20Absolution%20of%20the%20Guildpact.typ | typst | #import "@local/mtgstory:0.2.0": conf
#show: doc => conf(
"The Absolution of the Guildpact",
set_name: "Gatecrash",
story_date: datetime(day: 16, month: 01, year: 2013),
author: "<NAME>",
doc
)
<NAME> leaned back in his chair and rubbed the white stubble of his chin while he watched the crowd file ... | |
https://github.com/JarKz/math_analysis_with_typst | https://raw.githubusercontent.com/JarKz/math_analysis_with_typst/main/groups/second.typ | typst | MIT License | = Вторая группа вопросов
1. *Понятие первообразной функции, теорема об общем виде первообразных функций. Понятие неопределенного интеграла.*
*Определение.* Фукнция $F(x)$ в данном промежутке называется _первообразной функцией_ для функции $f(x)$ или интегралом от $f(x)$, если во всем этом промежутке $f(x)$ является п... |
https://github.com/piepert/philodidaktik-hro-phf-ifp | https://raw.githubusercontent.com/piepert/philodidaktik-hro-phf-ifp/main/src/parts/ephid/unterrichtsplanung/methoden.typ | typst | Other | #import "/src/template.typ": *
== #ix("Methoden", "Methode", "Unterrichtsmethode")
#def("Methode")[
"#ix("Unterrichtsmethoden", "Methode", "Unterrichtsmethode") sind die Formen und Verfahren, mit deren Hilfe sich Lehrer und Schüler die sie umgebende natürliche und gesellschaftliche Wirklichkeit unter dem institut... |
https://github.com/Kasci/LiturgicalBooks | https://raw.githubusercontent.com/Kasci/LiturgicalBooks/master/CSL_old/texts.typ | typst | #import "/utilsMenlive.typ": *
#let h_st = (
"Izvedí iz temnícy dúšu mojú, ispovídatisja ímeni tvojemú.",
"Mené ždút právednicy, dóndeže vozdási mňi.",
"Iz hlubiný vozvách k tebí Hóspodi, Hóspodi uslýši hlas moj.",
"Da búdut úši tvojí vnémľušči hlásu molénija mojehó.",
"Ašče bezzakónija nazriši Hóspod... | |
https://github.com/7sDream/fonts-and-layout-zhCN | https://raw.githubusercontent.com/7sDream/fonts-and-layout-zhCN/master/chapters/04-opentype/whats-font.typ | typst | Other | #import "/template/template.typ": web-page-template
#import "/template/components.typ": note
#import "/lib/glossary.typ": tr
#show: web-page-template
// ## What is a font?
== 字体是什么?
// From a computer's perspective, a font is a database. It's a related collection of *tables* - lists of information. Some of the info... |
https://github.com/7sDream/fonts-and-layout-zhCN | https://raw.githubusercontent.com/7sDream/fonts-and-layout-zhCN/master/chapters/02-concepts/dimension/dim-1.typ | typst | Other | #import "/lib/draw.typ": *
#import "/lib/glossary.typ": tr
#import "/template/lang.typ": armenian
#let start = (0, 0)
#let end = (300, 200)
#let base = (125, 75)
#let up = 125
#let down = 45
#let width = 136
#let line-color = gray.darken(30%)
#let lt = (base.at(0), base.at(1) + up)
#let rb = (base.at(0) + width, base.... |
https://github.com/Origami404/kaoyan-shuxueyi | https://raw.githubusercontent.com/Origami404/kaoyan-shuxueyi/main/微积分/05-中值定理.typ | typst | #import "../template.typ": sectionline, gray_table, colored
#let dx = $dif x$
= 中值定理
#set list(marker: ([★], [⤥], [›]))
== 定理本体
- 普通定理
- 最值定理: 闭连, 闭区间内必有最值
- 介值定理: 闭连, 闭区间内必能取到最值之间的任意一个值
- 零点存在: 闭连, $f(a) f(b) < 0$, 零点存在
- 微分中值
- 费马: 极值点 $and$ 可导 $==>$ $f'(x_0) = 0$
- *罗尔*: 闭连开导, $f(a) = f(b) ==> exists x... | |
https://github.com/AliothCancer/AppuntiUniversity | https://raw.githubusercontent.com/AliothCancer/AppuntiUniversity/main/capitoli_fisica/scambiatori_calore.typ | typst | #import "@preview/cetz:0.2.2": plot, canvas
= Scambiatori di Calore <scambiatori-di-calore>
== Temperatura Media Logaritmica <temperatura-media-logaritmica>
=== Caso Controcorrente e capacità termiche uguali
ipotesi:
- *Controcorrente*
- $C_"caldo" = C_"freddo"$
$
Delta T_"ml" = Delta T_"ingresso" = Delta T_"uscita... | |
https://github.com/qujihan/toydb-book | https://raw.githubusercontent.com/qujihan/toydb-book/main/src/chapter3/intro.typ | typst | #import "../../typst-book-template/book.typ": *
#let path-prefix = figure-root-path + "src/pics/"
#code(
"tree src/raft",
"Raft算法",
```zsh
src/raft
├── log.rs # 定义了Raft中的Log
├── message.rs # 定义了Raft中Node之间交互的信息
├── mod.rs
├── node.rs # 定义了Node(Leader, Follower, Candidate)以及其行为
├── state.rs # 定义了Raft中... | |
https://github.com/felsenhower/kbs-typst | https://raw.githubusercontent.com/felsenhower/kbs-typst/master/examples/08.typ | typst | MIT License | Typst ist einfacher @mädje22 und schneller @haug22 als LaTeX.
#bibliography("bibliography.yml")
|
https://github.com/QuadnucYard/cpp-coursework-template | https://raw.githubusercontent.com/QuadnucYard/cpp-coursework-template/main/msgbox.typ | typst | #import "template.typ": codify
#import "@preview/showybox:2.0.1": showybox
#let __msgbox(body, title, code, frame) = {
let content = showybox(frame: frame, title: strong(title), breakable: true, body)
if code { codify(content) } else { content }
}
#let wrong-answer(body, title: "Typical wrong answers", code: true... | |
https://github.com/Quaternijkon/notebook | https://raw.githubusercontent.com/Quaternijkon/notebook/main/content/组合数学/课后习题.typ | typst | #import "../../lib.typ": *
= 课后习题
== 第1章:鸽巢原理<ch1>
=== $P_22,6.$
#showybox(
title: [
证明:从1,2,…,200 中任取100 个整数,其中之一小于16,那么必有两个数,一个能被另一个整除。
])[
首先,将整数1至200按照$1*2^n,3*2^n,5*2^n,…,197,199$的形式分成100个抽屉,从1到200中任取100个,其中有一数a小于16,假设没有两个构成整除关系,首先按抽屉原理,这100个数必须为每个抽屉中仅取且必取1个数,否则假设不成立,所以:
- 当a为小于16的奇数时(比如15),显然有数与其构成整数关系(比如... | |
https://github.com/madhank93/typst-resume-template | https://raw.githubusercontent.com/madhank93/typst-resume-template/main/templates/template.typ | typst | // #let font_color = rgb("#2A2D31")
#let font_color = rgb("#28282B")
#let font_color_headings = rgb("#1B1212")
// Utility functions
#let justify_align(left_body, right_body) = {
block[
#left_body
#box(width: 1fr)[#align(right)[#right_body]]
]
}
#let title_section(title) = {
set text(size: 14pt, weight:... | |
https://github.com/Student-Smart-Printing-Service-HCMUT/ssps-docs | https://raw.githubusercontent.com/Student-Smart-Printing-Service-HCMUT/ssps-docs/main/contents/categories/task2/2.1.typ | typst | Apache License 2.0 | #pagebreak()
= System modelling
== Activity diagram
_Draw an activity diagram to capture the business process between systems and the stakeholders in Task
Assignment module_
#figure(caption: [Activity diagram for Order Printing],
image("../../images/Activity_Diagram.png")
)
#pagebreak()
*Activity Diagram fo... |
https://github.com/x14ngch3n/CV | https://raw.githubusercontent.com/x14ngch3n/CV/main/template.typ | typst | #import "fonts/fontawesome.typ": *
// top-level template
#let cv(
doc
) = {
set text(size: 10pt, font: "TeX Gyre Pagella")
set page(margin: (x: 1.2cm, y: 1.2cm))
set par(justify: true)
set align(left)
set strong(delta: 250)
set list(indent: 0pt)
show link: url => underline(url)
show heading.where... | |
https://github.com/typst/packages | https://raw.githubusercontent.com/typst/packages/main/packages/preview/xarrow/0.1.0/README.md | markdown | Apache License 2.0 | # typst-xarrow
Variable-length arrows in Typst, fitting the width of a given content.
## Usage
This library mainly provides the `xarrow` functions. This function takes one
positional argument, which is the content to display on top of the arrow.
Additionnaly, the library provides the following arrow styles:
- `xarr... |
https://github.com/maucejo/cnam_templates | https://raw.githubusercontent.com/maucejo/cnam_templates/main/src/letters/_convention.typ | typst | MIT License | #import "../common/_colors.typ": *
#import "../common/_utils.typ": *
#let cnam-convention(
composante: "cnam",
convention: none,
titre: none,
partenaires: none,
lieu: none,
date: none,
toc: false,
body
) = {
let logo-height = 4.08cm
let decx = -0.073cm
let decy = 0.085cm
if composante != "cnam"... |
https://github.com/Tetragramm/flying-circus-typst-template | https://raw.githubusercontent.com/Tetragramm/flying-circus-typst-template/main/template/Main.typ | typst | MIT License | #import "@preview/flyingcircus:3.2.0" : *
#import "@preview/cetz:0.3.1"
#let title = "Sample Flying Circus Book"
#let author = "Tetragramm"
#show: FlyingCircus.with(
Title: title,
Author: author,
CoverImg: image("images/Cover.png"),
Dedication: [Look strange? You probably don't have the fonts installed.
... |
https://github.com/Br0kenSmi1e/MyDFT | https://raw.githubusercontent.com/Br0kenSmi1e/MyDFT/main/notes/theory.typ | typst | MIT License | #import "@preview/fletcher:0.5.1" as fletcher: diagram, node, edge
#set math.equation(numbering: "(1)", supplement: [Eq.])
#align(center)[= Density Functional Theory in a Nutshell]
== Introduction
The goal of Density Functional Theory (DFT) is to solve ground states of many-body systems,
mainly focused on electronic... |
https://github.com/VisualFP/docs | https://raw.githubusercontent.com/VisualFP/docs/main/SA/style.typ | typst | #let include_section(path, heading_increase: 0) = {
let content = include(path);
let updated = content.children.map(it =>
if not it.func() == heading { it }
else [
#heading(level: it.level + heading_increase, it.body)
#it.at("label", default: none)
]
)
for c in updated { c }
}
#let sa_t... | |
https://github.com/imkochelorov/ITMO | https://raw.githubusercontent.com/imkochelorov/ITMO/main/src/algorithms/s2/template.typ | typst | #let project(title: "", authors: (), date: none, body) = {
set document(author: authors, title: title)
set page(numbering: none, number-align: center)
align(center)[
#block(text(weight: 700, 1.75em, title))
#v(1em, weak: true)
#date
]
pad(
top: 0.5em,
bottom: 0.5em,
x: 2em,
grid(... | |
https://github.com/sses7757/sustech-graduated-thesis | https://raw.githubusercontent.com/sses7757/sustech-graduated-thesis/main/sustech-graduated-thesis/pages/abstract-en.typ | typst | Apache License 2.0 | #import "@preview/pinit:0.1.3": pin, pinit-place
#import "../utils/style.typ": 字号, 字体
#import "../utils/indent.typ": fake-par
#import "../utils/double-underline.typ": double-underline
#import "../utils/custom-tablex.typ": gridx, colspanx
// #import "../utils/invisible-heading.typ": invisible-heading
// 研究生英文摘要页
#let a... |
https://github.com/LDemetrios/Typst4k | https://raw.githubusercontent.com/LDemetrios/Typst4k/master/src/test/resources/suite/scripting/for.typ | typst | // Test for loops.
--- for-loop-basic ---
// Empty array.
#for x in () [Nope]
// Dictionary is traversed in insertion order.
// Should output `Name: Typst. Age: 2.`.
#for (k, v) in (Name: "Typst", Age: 2) [
#k: #v.
]
// Block body.
// Should output `[1st, 2nd, 3rd, 4th]`.
#{
"["
for v in (1, 2, 3, 4) {
if... | |
https://github.com/daskol/mpl-typst | https://raw.githubusercontent.com/daskol/mpl-typst/main/README.md | markdown | MIT License | ![Linting and testing][1]
![Nightly][2]
[1]: https://github.com/daskol/typst-mpl-backend/actions/workflows/on-push.yml/badge.svg
[2]: https://github.com/daskol/typst-mpl-backend/actions/workflows/on-schedule.yml/badge.svg
# Typst Matplotlib Backend
*Typst backend for matplotlib (Python visualization library).*
## O... |
https://github.com/juicebox-systems/ceremony | https://raw.githubusercontent.com/juicebox-systems/ceremony/main/instructions/routines.typ | typst | MIT License | // This module contains a bunch of reusable steps for `ceremony.typ`.
#import "debug.typ": debug_level, debug_text
#import "model.typ": /*
*/ assert_card, /*
*/ assert_card_reader, /*
*/ assert_component_loaded, /*
*/ assert_dvd_drive, /*
*/ assert_hsm_mode, /*
*/ boot_dvd, /*
*/ dvd_drive, /*
*/ real... |
https://github.com/polarkac/MTG-Stories | https://raw.githubusercontent.com/polarkac/MTG-Stories/master/stories/007%20-%20Theros/007_I%20Iroan.typ | typst | #import "@local/mtgstory:0.2.0": conf
#show: doc => conf(
"I Iroan",
set_name: "Theros",
story_date: datetime(day: 06, month: 11, year: 2013),
author: "<NAME>",
doc
)
#figure(image("007_I Iroan/01.jpg", width: 100%), caption: [Priest of Iroas | Art by Clint Cearley], supplement: none, numbering: no... | |
https://github.com/augustebaum/epfl-thesis-typst | https://raw.githubusercontent.com/augustebaum/epfl-thesis-typst/main/example/main/ch5_the_others.typ | typst | MIT License | = The others (_not the movie_)
== Useful stuff for citation
This is to cite stuff in-line `#cite(<bla-bla>)` #sym.arrow @REF:3 @REF:1.
Now for brief foot citations you can put citations in a footnote: `#footnote[#cite(<bla-bla>)]` #sym.arrow look
down!#footnote[#cite(<REF:1>)]
See https://typst.app/docs/reference/m... |
https://github.com/pluttan/asmlearning | https://raw.githubusercontent.com/pluttan/asmlearning/master/lab2/lab2.typ | typst | #import "@docs/bmstu:1.0.0":*
#show: student_work.with(
caf_name: "Компьютерные системы и сети",
faculty_name: "Информатика и системы управления",
work_type: "лабораторной работе",
work_num: "2",
discipline_name: "Машинно-зависимые языки и основы компиляции",
theme: "Программирование целочисленных вычислени... | |
https://github.com/kdog3682/2024-typst | https://raw.githubusercontent.com/kdog3682/2024-typst/main/src/test.typ | typst |
#let page-setup() = {
return
// you can return functions ... that allow absolute placement
// you can use anchoring systems
}
#let margin = 0.5in
#set page(margin: 0.5in, paper: "us-letter")
#{
let width = 20pt
let green-square = square(width, green)
place(dx: -0.5in, dy: -0.5in, green-square... | |
https://github.com/cdotwang/SCMB_report_template | https://raw.githubusercontent.com/cdotwang/SCMB_report_template/main/progress_report_template.typ | typst | #set page(
paper: "a4",
margin: (x: 3cm, y: 2cm),
numbering: "1",
) // set the page size, margin and numbering
#set text(size: 11pt, font: "New Computer Modern") // set the text size and font
#set heading(numbering: "1.1. ") // set the head... | |
https://github.com/Misaka19986/typst-template | https://raw.githubusercontent.com/Misaka19986/typst-template/main/source.typ | typst | /* set page */
#set page(
header: align(right, text(9pt,
weight: "thin",
)[A template created by ririka]),
width: 21cm,
height: 29.7cm,
numbering: "-1-"
)
/* set heading */
#set heading(numbering: "1.")
/* set body font */
#set text(14pt, font: ("Noto Serif CJK SC", "JetBrains Mono"))
/... | |
https://github.com/NwaitDev/Typst-Accessibility-Template | https://raw.githubusercontent.com/NwaitDev/Typst-Accessibility-Template/main/article_template.typ | typst | #import "Components/title.typ": print_title
#import "Components/authors.typ": print_authors
#import "Components/abstract.typ": print_abstract
#let article_template(
title:"",
subtitle:"",
authors:(),
abstract:none,
cols:1,
fontsize: 12pt,
doc,) = [
#set math.equation(numbering: "(1)... | |
https://github.com/rowanc1/typst-book | https://raw.githubusercontent.com/rowanc1/typst-book/main/template.typ | typst | MIT License | #import "book.typ": *
#show: template.with(
title: "[-doc.title-]",
[# if doc.subtitle #]
subtitle: "[-doc.subtitle-]",
[# endif #]
)
[-IMPORTS-]
[-CONTENT-]
[# if doc.bibtex #]
#{
show bibliography: set text(8pt)
bibliography("[-doc.bibtex-]", title: text(10pt, "References"), style: "apa")
}
[# endif #]
|
https://github.com/Myriad-Dreamin/typst.ts | https://raw.githubusercontent.com/Myriad-Dreamin/typst.ts/main/fuzzers/corpora/text/linebreak_00.typ | typst | Apache License 2.0 |
#import "/contrib/templates/std-tests/preset.typ": *
#show: test-page
// Test overlong word that is not directly after a hard break.
This is a spaceexceedinglylongy.
|
https://github.com/typst-community/valkyrie | https://raw.githubusercontent.com/typst-community/valkyrie/main/src/types.typ | typst | Other | #import "base-type.typ": base-type
#import "assertions.typ": one-of
#import "types/array.typ": array
#import "types/dictionary.typ": dictionary
#import "types/logical.typ": either
#import "types/number.typ": number, integer, floating-point
#import "types/sink.typ": sink
#import "types/string.typ": string, ip, email
#im... |
https://github.com/ecrax/packages | https://raw.githubusercontent.com/ecrax/packages/main/local/island/0.1.0/template/main.typ | typst | #import "@local/island:0.1.0": *
#import "@preview/splash:0.3.0": tailwind
#import "@preview/big-todo:0.2.0": *
#show: island.with(
lang: "de",
title: "Test Island",
authors: ((name: "<NAME>", matnr: "11158198"),),
bibliography: bibliography("refs.bib"),
)
// ==================================================... | |
https://github.com/Quaternijkon/QUAD | https://raw.githubusercontent.com/Quaternijkon/QUAD/main/main.typ | typst | #import "/config.typ": *
#import "@preview/suiji:0.3.0": *
#import "lib.typ":*
#show: init
// #show strong: alert
#show strong: alert
// #show strong: it=>{
// set text(fill: rgb("#EA4335"))
// [#it]
// }
#show emph: it => {
let colors = (
rgb("#4285F4"),
rgb("#34A853"),
rgb("#FBBC05"),
rg... | |
https://github.com/TGM-HIT/typst-diploma-thesis | https://raw.githubusercontent.com/TGM-HIT/typst-diploma-thesis/main/template/chapters/retrospektive.typ | typst | MIT License | #import "../lib.typ": *
= Retrospektive
Kurz vor dem Ende wird der Verlauf des Projekts analysiert und geprüft, ob die Ziele erreicht und die Probleme gelöst wurden. Es wird auch auf Schwierigkeiten eingegangen, welche erst während der Arbeit zum Vorschein kamen und es können Verbesserungsvorschläge und Erkenntnisse ... |
https://github.com/deadManAlive/ui-thesis-typst-template | https://raw.githubusercontent.com/deadManAlive/ui-thesis-typst-template/master/primer/auth.typ | typst | #import "../config.typ": cfg
#let auth = [
#set align(center)
= Halaman Pernyataan Orisinalitas
#v(6em)
*Skripsi ini adalah hasil karya saya sendiri, \ dan semua sumber baik yang dikutip maupun dirujuk \ telah saya nyatakan dengan benar.*
#v(6em)
#table(
columns: 3,
align: (left, left + horizo... | |
https://github.com/dantevi-other/kththesis-typst | https://raw.githubusercontent.com/dantevi-other/kththesis-typst/main/README.md | markdown | MIT License | # kththesis-typst
A Typst template for writing a thesis at KTH, based on the original LaTeX template.
|
https://github.com/typst-doc-cn/tutorial | https://raw.githubusercontent.com/typst-doc-cn/tutorial/main/src/graph/mod.typ | typst | Apache License 2.0 | #import "/src/book.typ"
#import "/typ/templates/page.typ"
#import "../mod.typ": code, exec-code
|
https://github.com/RaphGL/ElectronicsFromBasics | https://raw.githubusercontent.com/RaphGL/ElectronicsFromBasics/main/DC/chap3/10_electric_shock_data.typ | typst | Other | === Electric shock data
The table of electric currents and their various bodily effects was
obtained from online (Internet) sources: the safety page of
Massachusetts Institute of Technology (website:
#link("http://web.mit.edu/safety")[\[\*\]]), and a safety handbook
published by Cooper Bussmann, Inc (website:
#link("h... |
https://github.com/typst/packages | https://raw.githubusercontent.com/typst/packages/main/packages/preview/chronos/0.1.0/src/renderer.typ | typst | Apache License 2.0 | #import "@preview/cetz:0.2.2": canvas, draw
#import "utils.typ": get-participants-i, get-style
#import "group.typ"
#import "participant.typ"
#import participant: PAR-SPECIALS
#import "sequence.typ"
#import "separator.typ"
#import "sync.typ"
#import "consts.typ": *
#import "note.typ" as note: get-note-box
#let DEBUG-IN... |
https://github.com/Myriad-Dreamin/typst.ts | https://raw.githubusercontent.com/Myriad-Dreamin/typst.ts/main/fuzzers/corpora/layout/place-float-auto_05.typ | typst | Apache License 2.0 |
#import "/contrib/templates/std-tests/preset.typ": *
#show: test-page
//
// // Error: 2-34 floating placement must be `auto`, `top`, or `bottom`
// #place(right, float: true)[Hello] |
https://github.com/cliarie/resume | https://raw.githubusercontent.com/cliarie/resume/main/src.typ | typst | #import "style.typ": *
#show: project
#let title_items = (
link("mailto:<EMAIL>"),
link("https://linkedin.com/in/cliarie")[#fab("linkedin") cliarie],
link("https://github.com/cliarie")[#fab("github-alt") cliarie],
)
// Title row.
#align(center)[
#block(text(weight: 700, size: 1.5em)[<NAME>])
#title_items.jo... | |
https://github.com/f14-bertolotti/bedlam | https://raw.githubusercontent.com/f14-bertolotti/bedlam/main/src/probability-theory/main.typ | typst | #import "../measure-theory/introduction.typ" : sigma-algebra-product, measure, measure-space
#import "../theme.typ": example, definition, comment
= Probability Theory
#let probability-space = (
tag : link(<probability-space>)[probability space]
)
#definition("Probability Space")[
$(Omega, Sigma, p)$ is said a... | |
https://github.com/alejandrgaspar/pub-analyzer | https://raw.githubusercontent.com/alejandrgaspar/pub-analyzer/main/docs/acknowledgement.md | markdown | MIT License | # Acknowledgements
## Projects we use
Pub Analyzer is the result of the work of many people, not just the author and the contributors of the project. Behind there is a lot of effort from big projects that make all this possible. That is why we want to recognize them in this section and we also invite you to support t... |
https://github.com/npikall/vienna-tech | https://raw.githubusercontent.com/npikall/vienna-tech/main/template/appendix.typ | typst | The Unlicense | #import "@preview/vienna-tech:0.1.1": *
Ein möglicher Anhang sollte direkt nach dem Literaturverzeichnis ohne
Seitenumbruch angeführt werden.
Jede Anhangüberschrift wird wie eine normale Überschrift eingeleitet, jedoch gibt es keine Nummerierung.
Es empfiehlt sich den Anhang bzw. alle Kapitel in einer eigenen Datei ... |
https://github.com/Isaac-Fate/booxtyp | https://raw.githubusercontent.com/Isaac-Fate/booxtyp/master/src/cover.typ | typst | Apache License 2.0 | #import "colors.typ": color-schema
#let cover(
title,
image-content,
authors: (),
bar-color: color-schema.orange.primary,
) = {
// Set page
set page(margin: (x: 0pt, y: 0pt))
// Cover image
set image(width: 100%, height: 40%)
image-content
// Remove the whitespace between the image and the rectan... |
https://github.com/imatpot/typst-ascii-ipa | https://raw.githubusercontent.com/imatpot/typst-ascii-ipa/main/src/lib/converters/sil.typ | typst | MIT License | // https://help.keyman.com/keyboard/sil_ipa/1.8.7/sil_ipa
// https://en.wikipedia.org/wiki/Comparison_of_ASCII_encodings_of_the_International_Phonetic_Alphabet
#let sil-unicode = (
("!", "ǃ"),
("!<", "ǀ"),
("!=", "ǂ"),
("!>", "ǁ"),
("#!", "ꜞ"),
("##!", "ꜟ"),
("#&", "͡"),
("#<", "ꜜ"),
("#<<", "↘"),
... |
https://github.com/arthurcadore/typst-intelbras | https://raw.githubusercontent.com/arthurcadore/typst-intelbras/main/reports/example-confidential-ptbr.typ | typst | MIT License | #import "../templates/report-confidential-ptbr.typ": *
#import "@preview/codelst:2.0.1": sourcecode
#show: doc => report(
title: "Relatório de Teste de API Intelbras",
subtitle: "ITB Redes Empresariais - Projetos Especiais",
authors: "<NAME>",
date: "02 de Maio de 2023",
doc,
)
= Objetivo
#lorem(10)
== Ob... |
https://github.com/Jacobgarm/typst_linalg | https://raw.githubusercontent.com/Jacobgarm/typst_linalg/master/pkg/lib.typ | typst | The Unlicense | #let p = plugin("./linalg.wasm")
#let mat_bytes(m) = bytes(m.rows.map(row => row.map(item => item.text.replace("−","-")).join(",")).join(";"))
#let bytes_mat(b) = math.mat(..str(b).split(";").map(row_s => row_s.split(",").map(entry_s => float(entry_s))))
#let vec_bytes(v) = bytes(v.map(item => str(item).replace("−","... |
https://github.com/typst/packages | https://raw.githubusercontent.com/typst/packages/main/packages/preview/unichar/0.1.0/ucd/block-3200.typ | typst | Apache License 2.0 | #let data = (
("PARENTHESIZED HANGUL KIYEOK", "So", 0),
("PARENTHESIZED HANGUL NIEUN", "So", 0),
("PARENTHESIZED HANGUL TIKEUT", "So", 0),
("PARENTHESIZED HANGUL RIEUL", "So", 0),
("PARENTHESIZED HANGUL MIEUM", "So", 0),
("PARENTHESIZED HANGUL PIEUP", "So", 0),
("PARENTHESIZED HANGUL SIOS", "So", 0),
("... |
https://github.com/Mc-Zen/zero | https://raw.githubusercontent.com/Mc-Zen/zero/main/tests/assertations/test.typ | typst | MIT License | #set page(width: auto, height: auto, margin: 10pt)
#include "/src/rounding.typ"
#include "/src/formatting.typ"
#include "/src/num.typ"
#include "/src/parsing.typ"
|
https://github.com/AU-Master-Thesis/thesis | https://raw.githubusercontent.com/AU-Master-Thesis/thesis/main/lib/unitfmt.typ | typst | MIT License |
#let KiB(bytes) = bytes / 1024
#let MiB(bytes, decimals: 2) = {
let value = bytes / 1024 / 1024
$#value "MiB"$
}
#let GiB(bytes) = bytes / 1024 / 1024 / 1024
#let KB(bytes) = bytes / 1000
#let MB(bytes) = bytes / 1000 / 1000
#let GB(bytes) = bytes / 1000 / 1000 / 1000
|
https://github.com/Myriad-Dreamin/shiroa | https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/main/github-pages/docs/cli/build.typ | typst | Apache License 2.0 | #import "/github-pages/docs/book.typ": book-page
#show: book-page.with(title: "CLI Build Command")
= The build command
The build command is used to render your book:
```bash
shiroa build
```
It will try to parse your `book.typ` file to understand the structure and metadata
of your book and fetch the corresponding ... |
https://github.com/The-Notebookinator/notebookinator | https://raw.githubusercontent.com/The-Notebookinator/notebookinator/main/themes/radial/components/pro-con.typ | typst | The Unlicense | #import "../colors.typ": *
#import "/utils.typ"
#let pro-con = utils.make-pro-con((pros, cons) => {
let cell = rect.with(
width: 100%,
inset: 5pt,
)
grid(
columns: (1fr, 1fr),
column-gutter: 4pt,
cell(
fill: green,
radius: (top: 1.5pt),
)[*Pros*],
cell(
fill: red,
... |
https://github.com/Kasci/LiturgicalBooks | https://raw.githubusercontent.com/Kasci/LiturgicalBooks/master/SK/akatisty/akatistMikulas.typ | typst | #import "/style.typ": *
#import "/styleAkatist.typ": *
= Akatist k sv. Mikulášovi Divotvorcovi
#align(horizon + center)[#primText[
#text(50pt)[Akatist k \
sv. Mikulášovi\
Divotvorcovi]
]]
#let akatist = (
(
"index": 1,
"kondak": [Predivný a slávny divotvorca, svätiteľ Mikuláš. Počas života si sa páči... | |
https://github.com/Sepax/Typst | https://raw.githubusercontent.com/Sepax/Typst/main/DIT323/Assignments/A2/main.typ | typst |
#import "template.typ": *
#show: template.with(
title: [Finite automata and formal languages #linebreak() Assignment 2],
short_title: "DIT084",
description: [
DIT323 (Finite automata and formal languages)\ at Gothenburg University
],
authors: ((name: "<NAME>"),),
lof: false,
lot: false,
lol: false,... | |
https://github.com/typst/packages | https://raw.githubusercontent.com/typst/packages/main/packages/preview/unichar/0.1.0/ucd/block-16A70.typ | typst | Apache License 2.0 | #let data = (
("TANGSA LETTER OZ", "Lo", 0),
("TANGSA LETTER OC", "Lo", 0),
("TANGSA LETTER OQ", "Lo", 0),
("TANGSA LETTER OX", "Lo", 0),
("TANGSA LETTER AZ", "Lo", 0),
("TANGSA LETTER AC", "Lo", 0),
("TANGSA LETTER AQ", "Lo", 0),
("TANGSA LETTER AX", "Lo", 0),
("TANGSA LETTER VZ", "Lo", 0),
("TANGS... |
https://github.com/typst/packages | https://raw.githubusercontent.com/typst/packages/main/packages/preview/minerva-report-fcfm/0.1.0/template/main.typ | typst | Apache License 2.0 | #import "@preview/minerva-report-fcfm:0.1.0" as minerva
#import "meta.typ" as meta
#show: minerva.report.with(
meta,
showrules: true,
)
//#minerva.abstract[
//]
#outline()
= Escribiendo simples parrafos
Typst toma bastante de Markdown y secuencias de carácteres especiales puedes dar
estilo al texto, por ejemplo... |
https://github.com/hu-hicoder/embedded-rust-seminar | https://raw.githubusercontent.com/hu-hicoder/embedded-rust-seminar/main/chapter1/chapter1.typ | typst | #import "@preview/touying:0.4.2": *
#import "@preview/pinit:0.1.3": *
#import "@preview/sourcerer:0.2.1": code
#set text(font: "Noto Sans JP", lang: "ja")
#let set_link(url) = link(url)[#text(olive)[[link]]]
// Themes: default, simple, metropolis, dewdrop, university, aqua
#let s = themes.metropolis.register(aspect-... | |
https://github.com/Wybxc/typst-packages | https://raw.githubusercontent.com/Wybxc/typst-packages/master/packages/local/simple-chinese/0.1.0/lib.typ | typst |
#let project(title: "", authors: (), date: none, body) = {
set document(author: authors, title: title)
set page(numbering: "1 / 1", number-align: end)
set text(
font: ("Inria Serif", "FZNewShuSong-Z10", "Source Han Serif SC"),
weight: "medium",
lang: "zh",
)
set heading(numbering: "1 ")
show ... | |
https://github.com/lucas-bublitz/tUDESC | https://raw.githubusercontent.com/lucas-bublitz/tUDESC/main/main.typ | typst | Creative Commons Zero v1.0 Universal | //tUDESC é um delo para trabalhos acadêmicos da UDESC,
//sua utilização é livre e gratuita.
#import "macros.typ": *
#import "template.typ": udesc
#let config = (
abstract: [pipoca],
title : [Manual de Trabalho Acadêmico da UDESC],
authors : "é",
epigraph : none,
congratulations : none,
)
//Chamamento da fu... |
https://github.com/smorad/um_cisc_7026 | https://raw.githubusercontent.com/smorad/um_cisc_7026/main/lecture_5_classification.typ | typst | #import "@preview/polylux:0.3.1": *
#import themes.university: *
#import "@preview/cetz:0.2.2": canvas, draw, plot
#import "common.typ": *
#import "@preview/algorithmic:0.1.0"
#import algorithmic: algorithm
// FUTURE TODO: Remove event space, only sample space
// FUTURE TODO: Fix bounds for probs (0, 1) or [0, 1]
#se... | |
https://github.com/typst/packages | https://raw.githubusercontent.com/typst/packages/main/packages/preview/cheda-seu-thesis/0.2.0/seu-thesis/lib.typ | typst | Apache License 2.0 | #import "templates/bachelor.typ": bachelor-conf, thanks, appendix
#import "templates/degree.typ": degree-conf |
https://github.com/Slyde-R/not-jku-thesis-template | https://raw.githubusercontent.com/Slyde-R/not-jku-thesis-template/main/template/content/DataCollection.typ | typst | MIT No Attribution | #import "../utils.typ": todo, silentheading, flex-caption
= Data Collection
#todo[Replace this chapter!]
This chapter details the data collection process used to investigate feline manipulation tactics and their impact on human behavior. The study utilized a combination of observational methods, surveys, and intervi... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.