repo stringlengths 26 115 | file stringlengths 54 212 | language stringclasses 2
values | license stringclasses 16
values | content stringlengths 19 1.07M |
|---|---|---|---|---|
https://github.com/polarkac/MTG-Stories | https://raw.githubusercontent.com/polarkac/MTG-Stories/master/stories/027%20-%20Conspiracy%3A%20Take%20the%20Crown/006_Leovold's%20Dossiers.typ | typst | #import "@local/mtgstory:0.2.0": conf
#show: doc => conf(
"Leovold's Dossiers",
set_name: "Conspiracy: Take the Crown",
story_date: datetime(day: 24, month: 08, year: 2016),
author: "<NAME>",
doc
)
#emph[In these uncertain times in Paliano, information is as valuable as any treasure, and no one kno... | |
https://github.com/Myriad-Dreamin/typst.ts | https://raw.githubusercontent.com/Myriad-Dreamin/typst.ts/main/fuzzers/corpora/math/multiline_07.typ | typst | Apache License 2.0 |
#import "/contrib/templates/std-tests/preset.typ": *
#show: test-page
// Test single trailing line break.
$
"abc" &= c \
$
One trailing line break.
|
https://github.com/protohaven/printed_materials | https://raw.githubusercontent.com/protohaven/printed_materials/main/README.md | markdown | # printed_materials
Typst-based documentation and other printed materials for Protohaven.
This monorepo holds all of the sources and supporting material to produce printed, paginated documentation for Protohaven.
## Repositories
### admin-code_of_conduct/
This repo is mainly used as an inclusion for the member gui... | |
https://github.com/typst/packages | https://raw.githubusercontent.com/typst/packages/main/packages/preview/unichar/0.1.0/ucd/block-AA80.typ | typst | Apache License 2.0 | #let data = (
("TAI VIET LETTER LOW KO", "Lo", 0),
("TAI VIET LETTER HIGH KO", "Lo", 0),
("TAI VIET LETTER LOW KHO", "Lo", 0),
("TAI VIET LETTER HIGH KHO", "Lo", 0),
("TAI VIET LETTER LOW KHHO", "Lo", 0),
("TAI VIET LETTER HIGH KHHO", "Lo", 0),
("TAI VIET LETTER LOW GO", "Lo", 0),
("TAI VIET LETTER HIGH... |
https://github.com/indicatelovelace/typstTemplates | https://raw.githubusercontent.com/indicatelovelace/typstTemplates/main/README.md | markdown | MIT License | # typstTemplates
Awesome Typst Templates.
## DHBW
Use at your own risk. This template is unoffical.
For the DHBW Ravensburg Template, look in themes and copy the whole folder. Then follow the instructions listed [here][https://github.com/typst/packages/?tab=readme-ov-file#local-packages].
|
https://github.com/benjamineeckh/kul-typst-template | https://raw.githubusercontent.com/benjamineeckh/kul-typst-template/main/src/core/component/preface.typ | typst | MIT License | #let insert-preface(preface, authors, lang:"en") = {
// preface
if preface != none {
heading(
level: 1,
numbering: none,
outlined: true,
if lang == "en" {
"Preface"
} else {
"Voorwoord"
}
)
block[#sym.zws#label("start-of-preamble")]
v(-1em)
pre... |
https://github.com/Ngan-Ngoc-Dang-Nguyen/thesis | https://raw.githubusercontent.com/Ngan-Ngoc-Dang-Nguyen/thesis/main/docs/reverse.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
#import "@preview/cetz:0.1.2": canvas, plot
#import "@preview/cetz:0.1.2"
#... | |
https://github.com/MALossov/YunMo_Doc | https://raw.githubusercontent.com/MALossov/YunMo_Doc/main/contents/6Appendix.typ | typst | Apache License 2.0 | = 附录
== 边缘检测算法推理
==== SOBEL算法
在边缘检测算法当中,我们使用的是较为经典的SOBEL算法:
+ 先求x,y方向的梯度$d x$,$d y$
+ 然后求出近似梯度
$
G = d x^2 + d y^2 (1+ pi times alpha sum ^123 _12 /2
$<SOBEL>
然后开根号,也可以为了分别计算近似为
$
G = ∣ d x ∣ + ∣ d y ∣
$
+ 最后根据G的值,来判断该点是不是边缘点,是的话,就将该点的像素复制为255,否则为0,,当然0或255可以自己随意指定,也可以是其他两个易于区分的像素值。
... |
https://github.com/freundTech/typst-forge | https://raw.githubusercontent.com/freundTech/typst-forge/main/matryoshka/test.typ | typst | #import "@typst-forge/matryoshka:0.1.0": compile
| |
https://github.com/goshakowska/Typstdiff | https://raw.githubusercontent.com/goshakowska/Typstdiff/main/tests/test_complex/ordered_list/ordered_list_updated_result.typ | typst | + The #strike[climate];#underline[CLIMATE]
- #strike[Precipitation];#underline[Precipitation2]
- Temperature
+ degree
- #strike[hot];#underline[cold]
- #underline[really];#underline[ ];#strike[cold];#underline[hot]
- warm
+ #strike[sun];#underline[rain]
+ The #strike[geology];#unde... | |
https://github.com/lucifer1004/leetcode.typ | https://raw.githubusercontent.com/lucifer1004/leetcode.typ/main/problems/p0014.typ | typst | #import "../helpers.typ": *
#import "../solutions/s0014.typ": *
= Longest Common Prefix
Write a function to find the longest common prefix string amongst an array of strings.
If there is no common prefix, return an empty string `""`.
#let longest-common-prefix(strs) = {
// Solve the problem here
}
#testcases(
... | |
https://github.com/EpicEricEE/typst-plugins | https://raw.githubusercontent.com/EpicEricEE/typst-plugins/master/droplet/assets/example-transform.typ | typst | #import "../src/lib.typ": dropcap
#set text(size: 14pt)
#set page(
width: 8cm,
height: auto,
margin: 1em,
background: pad(0.5pt, box(
width: 100%,
height: 100%,
radius: 4pt,
fill: white,
stroke: white.darken(10%),
)),
)
#dropcap(
height: 2,
justify: true,
gap: 6pt,
transform: let... | |
https://github.com/typst/packages | https://raw.githubusercontent.com/typst/packages/main/packages/preview/fletcher/0.4.3/src/deps.typ | typst | Apache License 2.0 | #import "@preview/cetz:0.2.1"
|
https://github.com/ice-kylin/typst-cv-miku | https://raw.githubusercontent.com/ice-kylin/typst-cv-miku/main/README.md | markdown | Do What The F*ck You Want To Public License | # typst-cv-miku
This is a simple, elegant, academic style CV template for [typst](https://typst.app/). Support for English and Chinese (and more).
You can see the online demo [here](https://typst.app/project/rbxGsQC-tEkDq0mnNIuxkv).
## Showcases


## Usage
1.... |
https://github.com/DashieTM/ost-5semester | https://raw.githubusercontent.com/DashieTM/ost-5semester/main/compiler/weeks/week9.typ | typst | #import "../../utils.typ": *
#section("OO in VM")
#subsection("Heap")
#align(
center,
[#image("../../Screenshots/2023_11_13_08_43_17.png", width: 100%)],
)
#align(
center,
[#image("../../Screenshots/2023_11_13_08_43_29.png", width: 100%)],
)
E.g. the issue with reference object is both the liftetime -> aka whe... | |
https://github.com/505000677/2060-hw5 | https://raw.githubusercontent.com/505000677/2060-hw5/main/ebook.typ | typst | #import "@preview/book:0.2.4": *
#import "/templates/ebook.typ"
#show: ebook.project.with(title: "typst-book", spec: "book.typ")
// set a resolver for inclusion
#ebook.resolve-inclusion(it => include it)
| |
https://github.com/wcshds/manual-of-chinese-phonology | https://raw.githubusercontent.com/wcshds/manual-of-chinese-phonology/main/preface.typ | typst | #set page(
width: 595.35pt,
height: 800pt,
margin: (x: 57pt, y: 57pt),
)
#set text(
font: ("Source Serif 4", "Simsun", "TH-Tshyn-P0", "TH-Tshyn-P1", "TH-Tshyn-P2"),
lang: "zh",
region: "cn",
size: 10.7pt,
)
#show regex("[“”。:,、《》()「」]+"): it => {
set text(font: "Simsun")
it
}
#show par: set block(spac... | |
https://github.com/lucannez64/Notes | https://raw.githubusercontent.com/lucannez64/Notes/master/Papa_Lausanne.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: "Papa Lausanne",
authors: (
"<NAME>",
),
date: "10 Août, 2024",
)
#set heading(numbering: "1.1.")
== Papa
<papa>
- Portable
- #link(... | |
https://github.com/lxl66566/my-college-files | https://raw.githubusercontent.com/lxl66566/my-college-files/main/信息科学与工程学院/算法导论/排序.typ | typst | The Unlicense | #import "../template.typ": *
#import "@preview/tablex:0.0.7": tablex, colspanx, rowspanx
#import "@preview/tablem:0.1.0": tablem
#show: project.with(
title: "5",
authors: (
"absolutex",
)
)
= 排序
== 课本2.3-1 使用图2-4作为模型,说明归并排序在数组A=\<3,41,52,26,38,57,9,49\>上的操作。
(不好画图)
#tablex(
columns: 8,
align: center +... |
https://github.com/7sDream/fonts-and-layout-zhCN | https://raw.githubusercontent.com/7sDream/fonts-and-layout-zhCN/master/chapters/03-unicode/norm-decomp.typ | typst | Other | #import "/template/template.typ": web-page-template
#import "/template/components.typ": note, cross-ref
#import "/template/util.typ"
#import "/lib/glossary.typ": tr
#show: web-page-template
// ## Normalization and decomposition
== #tr[normalization]和#tr[decompose] <heading:normalization-decomposition>
// The Unicod... |
https://github.com/ShapeLayer/ucpc-solutions__typst | https://raw.githubusercontent.com/ShapeLayer/ucpc-solutions__typst/main/lib/utils/make-hero.typ | typst | Other | #import "/lib/colors.typ": color
#let __ucpc_build_hero_subtitle(
authors: (),
datetime: none,
) = [
#text(size: 2em)[
#if type(authors) == array [
#authors.map(each => each).join(", ")
] else if type(authors) == str [
#authors
]
]
\
#if datetime != none [#datetime]
]
#let make-he... |
https://github.com/pku-typst/ichigo | https://raw.githubusercontent.com/pku-typst/ichigo/main/README.md | markdown | MIT License | # ichigo - 苺
Homework Template - 作业模板
## Usage - 使用方法
```typ
#import "@preview/ichigo:0.1.0": config, prob
#show: config.with(
course-name: "Typst 使用小练习",
serial-str: "第 1 次作业",
author-info: [
sjfhsjfh from PKU-Typst
],
author-names: "sjfhsjfh",
)
#prob[
Calculate the 25th number in the Fibonacci s... |
https://github.com/typst/packages | https://raw.githubusercontent.com/typst/packages/main/packages/preview/fletcher/0.4.3/src/coords.typ | typst | Apache License 2.0 | #import "utils.typ": *
/// Convert from elastic to absolute coordinates, $(u, v) |-> (x, y)$.
///
/// _Elastic_ coordinates are specific to the diagram and adapt to row/column
/// sizes; _absolute_ coordinates are the final, physical lengths which are
/// passed to `cetz`.
///
/// - grid (dictionary): Representation o... |
https://github.com/michidk/cv | https://raw.githubusercontent.com/michidk/cv/main/src/resume-onepage.typ | typst | #import "template/mod.typ": *
#show: template.with(
data: json("../data/resume.json"),
displayTagline: false,
displaySummary: false,
displayInterests: false,
displayVolunteering: false,
importanceFilter: 3, // filter everything that is less important than 3
maxHighlights: 2, // show only the first 2 high... | |
https://github.com/JarKz/math_analysis_with_typst | https://raw.githubusercontent.com/JarKz/math_analysis_with_typst/main/groups/fourth.typ | typst | MIT License | = Четвертая группа вопросов
1. *Понятие числового ряда, его суммы, сходимости и расходимости. Свойства сходящихся рядов.*
2. *Критерий Коши сходимости ряда. Необходимый признак сходимости ряда. Его недостаточность.*
3. *Критерий схгодимости положительных рядов. Признаки сравнения.*
4. *Признаки Коши и Даламбера для по... |
https://github.com/drupol/master-thesis | https://raw.githubusercontent.com/drupol/master-thesis/main/resources/typst/scientific-method-w-r13y.typ | typst | Other | #import "../../src/thesis/imports/preamble.typ": *
#render(
read("../../resources/graphviz/scientific-method-with-reproducibility.dot"),
width: 100%,
labels: (
step0: [#text(font: "Virgil 3 YOFF", size: .95em)[Observation]],
step1: [#text(font: "Virgil 3 YOFF", size: .95em)[Question]],
step2: [#text(... |
https://github.com/crd2333/crd2333.github.io | https://raw.githubusercontent.com/crd2333/crd2333.github.io/main/src/docs/Reading/index.typ | typst | #import "/src/components/TypstTemplate/lib.typ": *
#show: project.with(
title: "paper_reading",
lang: "zh",
)
- Acceleration via Fractal Learning Rate Schedules
- Deep Patch Visual Odometry
- Error bounds for approximations with deep ReLU networks
- 跟李沐学 AI 之论文精读
+ CLIP: #link("https://www.bilibili.com/video... | |
https://github.com/OverflowCat/BUAA-Digital-Image-Processing-Sp2024 | https://raw.githubusercontent.com/OverflowCat/BUAA-Digital-Image-Processing-Sp2024/master/chap11/shape.typ | typst | #import "@preview/cetz:0.2.2"
#cetz.canvas(length: 2cm,{
import cetz.draw: *
// 外框
set-style(mark: (end: "straight"))
line((1, 0), (0, 0), stroke: blue) // 底部
line((3, 0), (2, 0), stroke: blue) // 底部
line((0, 1), (0, 2), stroke: blue)
line((0, 0), (0, 1), stroke: blue)
line((1, 1), (1, 0), stroke: ... | |
https://github.com/HEIGVD-Experience/docs | https://raw.githubusercontent.com/HEIGVD-Experience/docs/main/S4/ISI/docs/4-Defense/defense.typ | typst | #import "/_settings/typst/template-note.typ": conf
#show: doc => conf(
title: [
Défense
],
lesson: "ISI",
chapter: "4 - Defense",
definition: "Cette note parle de la sécurité informatique, abordant le protocole TLS pour sécuriser les communications web, l'utilisation de HTTPS, la sécurisation des emails a... | |
https://github.com/tingerrr/chiral-thesis-fhe | https://raw.githubusercontent.com/tingerrr/chiral-thesis-fhe/main/src/core/kinds.typ | typst | #import "/src/core/authors.typ" as _authors
#let kinds = (
report: (
key: "report",
name: "Belegarbeit",
),
thesis-bachelor: (
key: "thesis-bachelor",
name: "Bachelorarbeit",
),
thesis-master: (
key: "thesis-master",
name: "Masterarbeit"
),
)
#let report(
title: [Mustertitel],
... | |
https://github.com/Kasci/LiturgicalBooks | https://raw.githubusercontent.com/Kasci/LiturgicalBooks/master/CSL_old/oktoich/Hlas2/4_Stvrtok.typ | typst | #let V = (
"HV": (
("", "Jehdá ot dréva", "Vsjú napojíste zémľu, jákože ríki razďíľšesja duchóvnyja iz Jedéma, júže i poorávše vsíjaste spasíteľnoje propovídanije, i klás blahoplóden požáste múdriji, dúšy spasénnych, sích v mýslennych sokróviščach sokryvájušče učenicý Hospódni, jáko mnohocínnoje bohátstvo."),
... | |
https://github.com/jgm/typst-hs | https://raw.githubusercontent.com/jgm/typst-hs/main/test/typ/compiler/string-06.typ | typst | Other | // Error: 2-15 no default value was specified and string index out of bounds (index: 5, len: 5)
#"Hello".at(5)
|
https://github.com/typst-jp/typst-jp.github.io | https://raw.githubusercontent.com/typst-jp/typst-jp.github.io/main/tests/suite/layout/place.typ | typst | Apache License 2.0 | // Test the `place` function.
--- place-basic ---
#set page("a8")
#place(bottom + center)[© Typst]
= Placement
#place(right, image("/assets/images/tiger.jpg", width: 1.8cm))
Hi there. This is \
a placed element. \
Unfortunately, \
the line breaks still had to be inserted manually.
#stack(
rect(fill: eastern, heigh... |
https://github.com/lucifer1004/leetcode.typ | https://raw.githubusercontent.com/lucifer1004/leetcode.typ/main/solutions/s0013.typ | typst | #import "../helpers.typ": *
#let roman-to-integer-ref(s) = {
let s = s.clusters()
let n = s.len()
let d = ("I": 1, "V": 5, "X": 10, "L": 50, "C": 100, "D": 500, "M": 1000)
let ans = 0
for i in range(n) {
if i < n - 1 and d.at(s.at(i)) < d.at(s.at(i + 1)) {
ans -= d.at(s.at(i))
} else {
an... | |
https://github.com/Area-53-Robotics/53B-Notebook-Over-Under-2023-2024 | https://raw.githubusercontent.com/Area-53-Robotics/53B-Notebook-Over-Under-2023-2024/master/cover.typ | typst | Creative Commons Attribution Share Alike 4.0 International | #align(center)[
#set text(
font: "Times New Roman",
35pt
)
== Engineering Notebook
Team 53B
#line(length: 75%, stroke: 2pt)
#image("/assets/over_under_field.png", width: 75%)
#line(length: 75%, stroke: 2pt)
== Over Under
2023 - 2024
#pagebreak()
] |
https://github.com/PgBiel/iterino | https://raw.githubusercontent.com/PgBiel/iterino/main/test.typ | typst | Apache License 2.0 | #import "src/lib.typ" as iter
#let i = iter.from-array((1, 2, 3))
#let i = iter.map(i, fn: x => x + 1)
#assert.eq(iter.to-array(i), (2, 3, 4))
#let i = iter.chain(
iter.range(10),
iter.map.with(fn: x => x + 1),
iter.filter.with(pred: n => n != 3),
iter.inspect.with(fn: v => if v == 3 { panic("don't") }),
it... |
https://github.com/Icxolu/typst-qr | https://raw.githubusercontent.com/Icxolu/typst-qr/main/example.typ | typst | MIT License | #set page(width: auto, height: auto)
#let typst_qr = plugin("target/wasm32-unknown-unknown/release/typst_qr.wasm")
#let qr(data, dark_color: black, light_color: white, has_quiet_zone: true, width: auto) = image.decode(
str(typst_qr.qr(
cbor.encode((
data,
dark_color.hex(),
... |
https://github.com/Dicarbene/note-typst | https://raw.githubusercontent.com/Dicarbene/note-typst/master/templates/SimplePaper/main.typ | typst | MIT License | #import "simplepaper.typ": *
#show: project.with(
title: "SimplePaper 中文模板使用说明",
authors: (
"张三",
),
)
= 模版简介
SimplePaper 是 Typst 的模版,用于生成简单的论文。
= 使用说明
模版默认使用的字体包括 "FZShuSong-Z01", "FZXiaoBiaoSong-B05", "FZHei-B01", "FZKai-Z03", "FZFangSong-Z02", "DejaVu Sans Mono for Powerline",我们推荐你在方正官网安装这些字体。
如果你的系统... |
https://github.com/mem-courses/discrete-mathmatics | https://raw.githubusercontent.com/mem-courses/discrete-mathmatics/main/homework/week4.typ | typst | MIT License | #import "../template.typ": *
#import "../functions.typ": *
#show: project.with(
course: "Discrete Mathmatics",
course_fullname: "Discrete Mathematics and Application",
course_code: "211B0010",
title: "Homework #4: Functions & Sets & Algorithms",
authors: ((
name: "<NAME>",
email: "<EMAIL>",
id: "A10"
),),
... |
https://github.com/pluttan/os | https://raw.githubusercontent.com/pluttan/os/main/lab4/lab4.typ | typst | #import "@docs/bmstu:1.0.0":*
#import "@preview/tablex:0.0.8": tablex, rowspanx, colspanx, cellx
#show: student_work.with(
caf_name: "Компьютерные системы и сети",
faculty_name: "Информатика и системы управления",
work_type: "лабораторной работе",
work_num: 4,
study_field: "09.03.01 Информатика и вычислител... | |
https://github.com/The-Notebookinator/notebookinator | https://raw.githubusercontent.com/The-Notebookinator/notebookinator/main/lib.typ | typst | The Unlicense | #import "./internals.typ": *
#import "./entries.typ": *
#import "./utils.typ"
#import "./themes/themes.typ"
#import "./glossary.typ"
/// The base notebook template. This function is meant to be applied to your entire document as a show rule.
///
/// *Example Usage:*
///
/// ```typ
/// #import themes.default: default-t... |
https://github.com/N3M0-dev/Notes | https://raw.githubusercontent.com/N3M0-dev/Notes/main/CS/Algorithm/Intro_to_Algor/Ch_3/ch3.typ | typst | #import "@local/note_template:0.0.1": *
#set par(justify: true)
#set heading(numbering: "1.1")
#set page(numbering: "1", number-align: center)
#frontmatter(
title: "Chapter 3: Data Sturctures",
date: "2023 Oct 31",
authors: ("Nemo",)
)
#outline(indent: auto)
#pagebreak()
= Elementary Data Sturctures
== Sta... | |
https://github.com/typst/packages | https://raw.githubusercontent.com/typst/packages/main/packages/preview/unichar/0.1.0/ucd/block-10F30.typ | typst | Apache License 2.0 | #let data = (
("SOGDIAN LETTER ALEPH", "Lo", 0),
("SOGDIAN LETTER BETH", "Lo", 0),
("SOGDIAN LETTER GIMEL", "Lo", 0),
("SOGDIAN LETTER HE", "Lo", 0),
("SOGDIAN LETTER WAW", "Lo", 0),
("SOGDIAN LETTER ZAYIN", "Lo", 0),
("SOGDIAN LETTER HETH", "Lo", 0),
("SOGDIAN LETTER YODH", "Lo", 0),
("SOGDIAN LETTER... |
https://github.com/kotfind/hse-se-2-notes | https://raw.githubusercontent.com/kotfind/hse-se-2-notes/master/prob/seminars/2024-09-30.typ | typst | = Формула Пуанкаре
Пять человек подбросили шляпы в воздух и каждый поймал одну случайную.
Всего $5! = 120$ перестановок
Никто не получил свою шляпу:
$ 120 - 5 dot (5 - 1)! + 10 dot (5 - 2)! - 10 dot (5 - 3)! + 5 dot 1 - 1 = 44 $
Общая формула:
$ n(A_1 + A_2 + ... + A_n) = sum_(s = 1)^n (-1)^(s - 1) C^s_n (n - s)!
... | |
https://github.com/Myriad-Dreamin/shiroa | https://raw.githubusercontent.com/Myriad-Dreamin/shiroa/main/packages/shiroa-tests/test-summary.typ | typst | Apache License 2.0 | #import "../shiroa/summary-internal.typ": *
#import "../shiroa/lib.typ": *
#let test(inp) = {
let s = _convert-summary(metadata((kind: "book", summary: inp)))
_numbering-sections(s.summary)
}
#let res = ()
#let t = test[
= Test
]
#res.push(t)
#let t = test[
= Test
- #chapter("chapter1.typ")["Chapter 1"]
... |
https://github.com/gongke6642/tuling | https://raw.githubusercontent.com/gongke6642/tuling/main/Math/roots.typ | typst | #set text(
size:10pt,
)
#set page(
paper:"a5",
margin:(x:1.8cm,y:1.5cm),
)
#set par(
justify: true,
leading: 0.52em,
)
= 根
平方根或其他次方根。
= 例
#image("39.png")
= 函数组
= 根
一般根
#image("40.png")
= 指数
要开几次方,即根式的底数。
默认:none
= 底数
进行方根运算的表达式,即根式的底数。
= 平方根
平方根
#image("41.png")
= 表达式
要开平方根的表达式。 | |
https://github.com/gabrielluizep/typst-ifsc | https://raw.githubusercontent.com/gabrielluizep/typst-ifsc/main/template/assignment.typ | typst | Creative Commons Zero v1.0 Universal | #let lista(title: "Título", course: "Programação I", doc) = {
set text(font: "Latin Modern Roman", size: 1.1em, lang: "pt")
set par(justify: true)
show link: underline
show heading.where(level: 1): it => [
#set align(center)
#v(3em, weak: true)
#it.body
#v(2em, weak: true)
]
show heading.w... |
https://github.com/Error-418-SWE/Documenti | https://raw.githubusercontent.com/Error-418-SWE/Documenti/src/2%20-%20RTB/Documentazione%20interna/Verbali/23-12-17/23-12-17.typ | typst | #import "/template.typ": *
#show: project.with(
date: "17/12/23",
subTitle: "Meeting di retrospettiva e pianificazione",
docType: "verbale",
authors: (
"<NAME>",
),
timeStart: "15:00",
timeEnd: "16:00",
);
= Ordine del giorno
- Analisi Keep doings e Improvements;
- To do e divisione ruoli.
== Anali... | |
https://github.com/kotfind/hse-se-2-notes | https://raw.githubusercontent.com/kotfind/hse-se-2-notes/master/os/lectures/2024-10-07.typ | typst | #import "/utils/math.typ": *
== Очереди сообщений
Примитивы обмена информацией
+ `send(address, message)`: отправить сообщение `message` в очередь `address`
Блокируется при попытке записи в полный буфер
+ `receive(address, message)`: получить сообщение `message` из очереди `address`
Блокируется при чтении и... | |
https://github.com/Arrata-TTRPG/Arrata-TTRPG | https://raw.githubusercontent.com/Arrata-TTRPG/Arrata-TTRPG/main/src/sections/dice.typ | typst | Other | #import "../typst-boxes.typ": *
= Dice
== Why Dice?
Dice are tools that are used to generate random numbers, which are in turn used to determine the outcome of certain scenarios. By adjusting things like how we count the value of each die, how many dice are rolled, and what special rules apply to them, we turn comp... |
https://github.com/typst/templates | https://raw.githubusercontent.com/typst/templates/main/cereal-words/template/main.typ | typst | MIT No Attribution | #import "@preview/cereal-words:0.1.0": game
#show: game
// Type the words here
|
https://github.com/a-dixon/typst-template-ieee | https://raw.githubusercontent.com/a-dixon/typst-template-ieee/main/README.md | markdown | # Typst template for two-column IEEE-like papers at the Cooperative State University Baden-Würrtemberg
This file aims to give a short overview of how IEEE-like papers can be created using this repo. For an introduction to the markup-based typesetting system *Typst*, please refer to the official [documentation](https:/... | |
https://github.com/Dav1com/minerva-report-fcfm | https://raw.githubusercontent.com/Dav1com/minerva-report-fcfm/master/lib/util.typ | typst | MIT No Attribution | #import "../meta.typ": *
/// Arreglo con los meses en español.
/// -> array
#let meses = ("Enero", "Febrero", "Marzo", "Abril", "Mayo", "Junio", "Julio",
"Agosto", "Septiembre", "Octubre", "Noviembre", "Diciembre")
/// Arreglo con los días de la semana en español.
/// -> array
#let dias = ("Lunes", "Mar... |
https://github.com/xkevio/parcio-typst | https://raw.githubusercontent.com/xkevio/parcio-typst/main/parcio-thesis/chapters/introduction/intro.typ | typst | MIT License | #import "../../template/template.typ": subfigure, section
= Introduction<intro>
_In this chapter, #lorem(50)_
== Motivation
// Subfigures.
#subfigure(
caption: "Caption",
columns: 2,
label: <fig:main>,
figure(caption: "Left")[
#image(alt: "Blue OVGU logo", width: 75%, "../../template/ovgu.jpg")
],... |
https://github.com/bpkleer/typst-modern-acad-cv | https://raw.githubusercontent.com/bpkleer/typst-modern-acad-cv/main/README.md | markdown | MIT License | # modern-acad-cv
This template for an academic CV serves the peculiarities of academic CVs. If you are not an academic, this template is not useful. Most of the times in academics, applicants need to show everything they have done. This makes it a bit cumbersome doing it by single entries. In addition, academics might... |
https://github.com/Isaac-Fate/booxtyp | https://raw.githubusercontent.com/Isaac-Fate/booxtyp/master/src/book.typ | typst | Apache License 2.0 | #import "page-header.typ": page-header-rules
#import "outline.typ": outline-rules
#import "paragraph.typ": paragraph-rules
#import "sectioning.typ": chapter-rules, section-rules
#import "equation.typ": equation-rules
#import "reference.typ": reference
#import "theorems/mod.typ": theorem-rules
#import "figure.typ": figu... |
https://github.com/xsro/xsro.github.io | https://raw.githubusercontent.com/xsro/xsro.github.io/zola/typst/nlct/math/common.typ | typst | #import "@preview/ctheorems:0.1.0": *
#set heading(numbering: "1.1.")
#let theorem = thmbox("theorem", "Theorem", fill: rgb( "#E1F5FE"),stroke:rgb("#4FC3F7"))
#let proposition = thmbox("proposition", "Proposition", fill: rgb( "#E1F5FE"),stroke:rgb("#4FC3F7"))
#let corollary = thmplain(
"corollary",
"Corollary",
... | |
https://github.com/fenjalien/metro | https://raw.githubusercontent.com/fenjalien/metro/main/tests/angle/number-angle-product/test.typ | typst | Apache License 2.0 | #import "/src/lib.typ": *
#set page(width: auto, height: auto, margin: 1cm)
#ang(2.67)
#ang(2.67, number-angle-product: " ") |
https://github.com/7sDream/fonts-and-layout-zhCN | https://raw.githubusercontent.com/7sDream/fonts-and-layout-zhCN/master/chapters/06-features-2/anchor/mark-to-mark.typ | typst | Other | #import "/template/template.typ": web-page-template
#import "/template/components.typ": note
#import "/template/lang.typ": arabic
#import "/lib/glossary.typ": tr
#show: web-page-template
// ### Mark-to-mark
=== 符号叠放
// The third kind of mark positioning, mark-to-mark, does what its name implies - it allows marks to... |
https://github.com/rabotaem-incorporated/probability-theory-notes | https://raw.githubusercontent.com/rabotaem-incorporated/probability-theory-notes/master/sections/02-general/01-kolmogorov.typ | typst | #import "../../utils/core.typ": *
== Колмогоровская модель теории вероятностей
#ticket[Вероятностное пространство. Условная вероятность. Независимые события.]
#def[
_Вероятностное пространство_ --- это тройка $(Omega, Ff, P)$, где
- $Omega$ --- пространство _элементарных исходов_ (множество)
- $Ff$ --- $... | |
https://github.com/AntonioSilva03/CurriculumVitae | https://raw.githubusercontent.com/AntonioSilva03/CurriculumVitae/main/Curriculum%20in%20English/template/resume.typ | typst | #import "@preview/modern-cv:0.4.0": *
#show: resume.with(
author: (
firstname: "António",
lastname: "Silva",
email: "<EMAIL>",
phone: "(+351) 968780666",
github: "AntonioSilva03",
linkedin: "antónio-silva03",
address: "Braga, Braga",
positions: (
"Computer Engineer",
),
),... | |
https://github.com/Meisenheimer/Notes | https://raw.githubusercontent.com/Meisenheimer/Notes/main/src/Cluster.typ | typst | MIT License | #import "@local/math:1.0.0": *
= Cluster
== K-means
#env("Definition")[
Given points $mathbf(x)_1, dots, mathbf(x)_m in RR^n$, *k-means clustering* aims to partition the points into $k lt.eq n$ sets $S = {S_1, dots, S_k}$ satisfies
$ S = limits(arg min)_(S) {sum_(i=1)^k sum_(mathbf(x) in S_i) ||mathbf(x) - math... |
https://github.com/jrihon/multi-bibs | https://raw.githubusercontent.com/jrihon/multi-bibs/main/chapters/01_chapter/mod.typ | typst | MIT License | #import "../../lib/multi-bib.typ": *
#import "bib_01_chapter.typ": biblio // import dictionary from the generated file
= Chapter 1
#include "introduction.typ"
#include "methods.typ"
#include "results.typ"
#include "discussion.typ"
#mbibliography(biblio, "ieee")
|
https://github.com/Myriad-Dreamin/typst.ts | https://raw.githubusercontent.com/Myriad-Dreamin/typst.ts/main/fuzzers/corpora/layout/enum_04.typ | typst | Apache License 2.0 |
#import "/contrib/templates/std-tests/preset.typ": *
#show: test-page
// In the line.
1.2 \
This is 0. \
See 0.3. \
|
https://github.com/protohaven/printed_materials | https://raw.githubusercontent.com/protohaven/printed_materials/main/common-tools/drill_press_metal.typ | typst |
#import "/meta-environments/env-features.typ": *
= Metal Drill Press
== Notes
// General and specific to Protohaven
=== Safety
Keep workpiece firmly attached to the table at all times. If the workpiece becomes loose, it may lift up and begin to spin on the drill bit, creating a very dangerous cutting hazard.
===... | |
https://github.com/Myriad-Dreamin/typst.ts | https://raw.githubusercontent.com/Myriad-Dreamin/typst.ts/main/fuzzers/corpora/layout/cjk-punctuation-adjustment_01.typ | typst | Apache License 2.0 |
#import "/contrib/templates/std-tests/preset.typ": *
#show: test-page
#set text(lang: "zh", region: "CN", font: "Noto Serif CJK SC")
《书名〈章节〉》 // the space between 〉 and 》 should be squeezed
〔茸毛〕:很细的毛 // the space between 〕 and : should be squeezed
|
https://github.com/maucejo/cnam_templates | https://raw.githubusercontent.com/maucejo/cnam_templates/main/src/presentation/_slides.typ | typst | MIT License | #import "@preview/touying:0.5.2": *
#import "_pres-utils.typ": *
#let _typst-builtin-align = align
#let slide(
title: auto,
subtitle: none,
align: horizon,
config: (:),
repeat: auto,
setting: body => body,
composer: auto,
..bodies,
) = touying-slide-wrapper(self => {
if align != auto {
self.... |
https://github.com/crd2333/crd2333.github.io | https://raw.githubusercontent.com/crd2333/crd2333.github.io/main/src/docs/Reading/Reconstruction/DeepSDF.typ | typst | ---
order: 1
---
#import "/src/components/TypstTemplate/lib.typ": *
#show: project.with(
title: "Reading DeepSDF",
lang: "zh",
)
#let SDF = math.text("SDF")
#let clamp = math.text("clamp")
#let Occupancy = math.text("Occupancy")
#let NeRF = math.text("NeRF")
= SDF(DeepSDF)
- DeepSDF: Learning Continuous Signed ... | |
https://github.com/jgm/typst-hs | https://raw.githubusercontent.com/jgm/typst-hs/main/test/typ/compiler/show-bare-04.typ | typst | Other | // Error: 4-19 show is only allowed directly in code and content blocks
#((show: body => 2) * body)
|
https://github.com/Mc-Zen/quill | https://raw.githubusercontent.com/Mc-Zen/quill/main/tests/tequila/ranges-with-two-qubit-gates/test.typ | typst | MIT License | #set page(width: auto, height: auto, margin: 0pt)
#import "/src/quill.typ"
#import quill: tequila as tq
#quill.quantum-circuit(
..tq.build(
tq.cx((0, 1), (1, 2)),
tq.cx(0, (1,2)),
tq.cx((1, 2), 0),
)
)
|
https://github.com/ChristophVanDeest/FH-Kiel-Typst-Template | https://raw.githubusercontent.com/ChristophVanDeest/FH-Kiel-Typst-Template/main/lib/lib.typ | typst | MIT License | #let report(
language: "en",
title: "",
author: "",
faculty: "",
department: "",
include-declaration-of-independent-processing: false,
body,
) = {
import "template.typ": template
template(
is-thesis: false,
is-master-thesis: false,
is-bachelor-thesis: false,
is-report: true,
langu... |
https://github.com/jamesrswift/ionio-illustrate | https://raw.githubusercontent.com/jamesrswift/ionio-illustrate/main/README.md | markdown | MIT License | <a name="readme-top"></a>
# The `ionio-illustrate` package
<div align="center">
<a href="https://github.com/jamesxx/ionio-illustrate/blob/master/LICENSE">
<img alt="GitHub" src="https://img.shields.io/github/license/jamesxx/ionio-illustrate">
</a>
<a href="https://github.com/typst/packages/tree/main/packages/preview... |
https://github.com/yhtq/Notes | https://raw.githubusercontent.com/yhtq/Notes/main/数学模型/论文/pkuthss-typst/thesis.typ | typst | #import "template.typ": *
#import "@local/common-note-template:0.1.0": *
#import "@preview/curryst:0.3.0": rule, proof-tree
#show: doc => conf(
cauthor: "郭子荀",
studentid: "2100012990",
blindid: "2100012990",
cthesisname: "数学模型课程论文",
cheader: "数学模型课程论文",
ctitle: "类型、范畴与程序语言模型",
school: "数学科学学院",
cfirstma... | |
https://github.com/gerome-andry/typst-CV | https://raw.githubusercontent.com/gerome-andry/typst-CV/main/cv.typ | typst | #set text(size: 12pt, font: "PT Sans")
#set page(paper: "a4")
#let email = symbol("")
#let scholar = symbol("")
#let site = symbol("")
#let git = symbol("")
#text(30pt)[
*<NAME>*
]
#grid(
columns: (1fr, 1fr),
align(left)[
Montefiore Institute\
University of Liège\
Allée de la Découverte, 10\
... | |
https://github.com/ruben-hude/typst-prepa | https://raw.githubusercontent.com/ruben-hude/typst-prepa/main/typst-prepa.typ | typst | Apache License 2.0 | #import "@preview/ctheorems:1.0.0": *
#import "@preview/big-todo:0.2.0": *
#import "@preview/lovelace:0.1.0": *
// Mise en page
#set page(width: 16cm, height: auto, margin: 1.5cm)
#set heading(numbering: "1.1.")
#let last_num = (..nums) => nums.pos().last()
#let theorem = thmbox("théorème", "Théorème", fill: rgb("#... |
https://github.com/alliso/resume | https://raw.githubusercontent.com/alliso/resume/main/typ/cv.typ | typst | #set page(
margin: 5%
)
#set text(font: "JetBrains Mono")
#grid(
columns: (80%, 20%),
rows: auto,
align(center + bottom,text(18pt)[
= <NAME>
#align(center,text(12pt)[== *DESARROLLADOR FULL STACK*])
]),
text(6pt)[#list(marker: [],
[+34 651 353 777],
[#text("<EMAIL>")],
[#underline[#link("www.link... | |
https://github.com/LDemetrios/Typst4k | https://raw.githubusercontent.com/LDemetrios/Typst4k/master/src/test/resources/suite/visualize/gradient.typ | typst | --- gradient-linear-angled ---
// Test gradients with direction.
#set page(width: 90pt)
#grid(
gutter: 3pt,
columns: 4,
..range(0, 360, step: 15).map(i => box(
height: 15pt,
width: 15pt,
fill: gradient.linear(angle: i * 1deg, (red, 0%), (blue, 100%)),
))
)
--- gradient-linear-oklab ---
// The test... | |
https://github.com/suspenss/Undergraduate-mathematics | https://raw.githubusercontent.com/suspenss/Undergraduate-mathematics/main/mathmatics-analysis/mainproblem.typ | typst | #import "./../setup/templates.typ": *
#import "./../setup/theorem.typ": *
#show: thmrules
#show: project.with(
title: "Mathmatics Analysis", authors: ("epoche",), language: "ch", outl: [
#outline(indent: true, title: "目录", depth: 2)
],
)
#show math.ast: math.thin
#let obey = math.tilde
#let vb = $bold(beta)$
... | |
https://github.com/benjft/CV | https://raw.githubusercontent.com/benjft/CV/master/benedict_thompson_cv.typ | typst | #set page(paper: "a4", margin: (top:1.5cm, bottom:1.5cm))
#text(size: 20pt, align(center)[= <NAME>])
#sym.bullet #link("tel:+447964629416")[`07964-629-416`] #h(1fr)
#sym.bullet #link("mailto:<EMAIL>")[`<EMAIL>`] #h(1fr)
#sym.bullet #link("https://github.com/benjft")[`github.com/benjft`] #h(1fr)
#sym.bullet #link("http... | |
https://github.com/kaewik/din5008-typst | https://raw.githubusercontent.com/kaewik/din5008-typst/master/din5008-letter.typ | typst | MIT License | #let iconGrid(icon, content) = box( height: 8pt, grid(
columns: (auto, auto),
column-gutter: 1em,
icon, content
))
#let githubLink(content) = iconGrid(
image(
width: 10pt,
"github-mark.png"
),
content
)
#let email(content) = iconGrid(
emoji.mail,
content
)
#let phone(content) = iconGrid(
em... |
https://github.com/pluttan/electron | https://raw.githubusercontent.com/pluttan/electron/main/lab1/lab1.typ | typst | #import "@docs/bmstu:1.0.0":*
#import "@preview/tablex:0.0.8": tablex, rowspanx, colspanx, cellx
#show: student_work.with(
caf_name: "Компьютерные системы и сети",
faculty_name: "Информатика и системы управления",
work_type: "лабораторной работе",
work_num: "1",
discipline_name: "Электроника",
theme: "Диоды... | |
https://github.com/goshakowska/Typstdiff | https://raw.githubusercontent.com/goshakowska/Typstdiff/main/tests/test_complex/para/para_updated_result.typ | typst | In this report, we will explore the various factors that influence
#emph[fluid dynamics] in #strike[glaciers];#underline[changed] ha they
contribute to the formation and behaviour of these
#strike[natural];#underline[changed] structures.
All manuscripts are to be #strike[submitted];#underline[changed]
electronically t... | |
https://github.com/MrToWy/Bachelorarbeit | https://raw.githubusercontent.com/MrToWy/Bachelorarbeit/master/Chapters/5-Review.typ | typst | #import "../abbreviations.typ": *
#import "../Template/customFunctions.typ": *
= Review <review>
In diesem Kapitel wird das erstellte System überprüft. Es soll herausgefunden werden, ob das neue System einsetzbar ist. Hierzu wird ein Interview geführt und die in @anforderungsanalyse aufgestellten Anforderungen üb... | |
https://github.com/drupol/master-thesis | https://raw.githubusercontent.com/drupol/master-thesis/main/src/thesis/theme/infos.typ | typst | Other | #import "./colors.typ": *
#let info-settings = (
info: (
prefix: none,
icon: "circle-info",
fill_color: umons-turquoise.lighten(90%),
stroke_color: umons-turquoise,
),
cite: (
prefix: none,
icon: "quote-left",
fill_color: rgb("#ffffff"),
stroke_color: black,
),
definition: (
... |
https://github.com/ldq3/summary_of_OS_camp | https://raw.githubusercontent.com/ldq3/summary_of_OS_camp/master/src/main.typ | typst | #import "/global.typ": *
#show link: underline
#show: init
#show strong: alert
#show: slides
#touying-outline()
#include "content.typ" | |
https://github.com/RiccardoTonioloDev/Bachelor-Thesis | https://raw.githubusercontent.com/RiccardoTonioloDev/Bachelor-Thesis/main/Riccardo_Toniolo_BSc_thesis.typ | typst | Other | #import "./config/variables.typ": *
#import "./config/thesis-config.typ": *
#import "@preview/glossarium:0.4.1": make-glossary
#import "@preview/codly:1.0.0": *
#show: codly-init.with()
#set text(hyphenate: false)
#show: make-glossary
#show: config.with(
myAuthor: myName,
myTitle: myTitle,
myNumbering: "1.",
my... |
https://github.com/Myriad-Dreamin/tinymist | https://raw.githubusercontent.com/Myriad-Dreamin/tinymist/main/crates/tinymist-query/src/fixtures/references/cross_module_alias.typ | typst | Apache License 2.0 | // path: base.typ
#let x = 1;
-----
#import "base.typ": x as /* ident after */ ff
#ff |
https://github.com/dmtr-m/typst-assignments-template | https://raw.githubusercontent.com/dmtr-m/typst-assignments-template/main/README.md | markdown | # typst-assignments-template
| |
https://github.com/typst/packages | https://raw.githubusercontent.com/typst/packages/main/packages/preview/unichar/0.1.0/ucd/block-A830.typ | typst | Apache License 2.0 | #let data = (
("NORTH INDIC FRACTION ONE QUARTER", "No", 0),
("NORTH INDIC FRACTION ONE HALF", "No", 0),
("NORTH INDIC FRACTION THREE QUARTERS", "No", 0),
("NORTH INDIC FRACTION ONE SIXTEENTH", "No", 0),
("NORTH INDIC FRACTION ONE EIGHTH", "No", 0),
("NORTH INDIC FRACTION THREE SIXTEENTHS", "No", 0),
("NO... |
https://github.com/3akev/autofletcher | https://raw.githubusercontent.com/3akev/autofletcher/main/README.md | markdown | MIT License | # autofletcher
This small module provides functions to (sort of) abstract away manual
placement of coordinates.
See the [manual](https://raw.githubusercontent.com/3akev/autofletcher/main/manual.pdf)
for usage examples.
## Credits
[fletcher](https://github.com/Jollywatt/typst-fletcher)
|
https://github.com/mattyoung101/uqthesis_eecs_hons | https://raw.githubusercontent.com/mattyoung101/uqthesis_eecs_hons/master/pages/chapters/conclusion.typ | typst | ISC License | = Conclusion
#lorem(300)
|
https://github.com/exusiaiwei/quarto-ilm | https://raw.githubusercontent.com/exusiaiwei/quarto-ilm/main/README.md | markdown | MIT License | <div align="center">
<h1>🎓 Quarto ILM Template</h1>
<p>
<b>English</b> |
<a href="README.zh-CN.md">简体中文</a>
</p>
<!-- Badges -->
<p>
<img src="https://img.shields.io/badge/quarto-template-blue" alt="quarto template">
<img src="https://img.shields.io/github/stars/exusiaiwei/quarto-ilm" alt="st... |
https://github.com/m20027/typst-jp-conf-template | https://raw.githubusercontent.com/m20027/typst-jp-conf-template/main/main.typ | typst | MIT No Attribution | // MIT No Attribution
// Copyright 2024 <NAME>
#import "libs/rsj-conf/lib.typ": rsj-conf
#show: rsj-conf.with(
title: [Typst を使った国内学会論文の書き方 \ - 国内学会予稿集に似せたフォーマットの作成 - ],
authors: [◯ 著者姓1 著者名1,著者姓2 著者名2(○○○大学),著者姓3 著者名3 (□□□株式会社)],
abstract: [#lorem(80)],
bibliography: bibliography("refs.yml", full: false)
)
... |
https://github.com/JJ-IsShort/typst-math-paper | https://raw.githubusercontent.com/JJ-IsShort/typst-math-paper/main/site/template.typ | typst | // The project function defines how your document looks.
// It takes your content and some metadata and formats it.
// Go ahead and customize it to your liking!
#let project(title: "", authors: (), body) = {
// Set the document's basic properties.
set document(author: authors, title: title)
// set page(numbering:... | |
https://github.com/jgm/typst-hs | https://raw.githubusercontent.com/jgm/typst-hs/main/test/typ/layout/page-00.typ | typst | Other | // Just empty page.
// Should result in auto-sized page, just like nothing.
#page[]
|
https://github.com/polarkac/MTG-Stories | https://raw.githubusercontent.com/polarkac/MTG-Stories/master/typst_packages/mtgstory/0.2.0/mtgstory.typ | typst | #let conf(
title,
set_name: "Unknown set",
story_date: datetime(day: 05, month: 08, year: 1993),
author: "Unknown author",
doc
) = {
let header = [
#grid(
columns: (1fr, 1fr),
gutter: 2em,
[*#title\ by #author*],
align(right)[*#set_name*],
... | |
https://github.com/Besthope-Official/backend | https://raw.githubusercontent.com/Besthope-Official/backend/master/camp/qa/qa.typ | typst | #import "@preview/cuti:0.2.1": show-cn-fakebold
#show: show-cn-fakebold
#let title = [2024奇点后端部面试]
#set text(font: ("Source Han Serif SC"))
#set page(
header: align(right + horizon, title),
background: image("backend_logo_opacity_0.4.png", fit: "cover", width: 30%),
numbering: "1",
number-align: right,
)
#ali... | |
https://github.com/dainbow/MatGos | https://raw.githubusercontent.com/dainbow/MatGos/master/themes/1.typ | typst | #import "../conf.typ": *
= Теорема Больцано-Вейерштрасса и критерий Коши сходимости числовой последовательности
== Теорема Больцано-Вейерштрасса
#definition[
Пусть имеется правило, которое каждому натуральному числу $n$ ставит в
соответствие некоторое $x_n$ из множества $G$. Тогда *последовательностью*
называет... | |
https://github.com/rem3-1415926/Typst_Thesis_Template | https://raw.githubusercontent.com/rem3-1415926/Typst_Thesis_Template/main/appendix/app1.typ | typst | MIT License |
= Appendix One <app:one>
== sub a
#lorem(30)
== sub b
#lorem(30)
=== subsub b-a
#lorem(30) |
https://github.com/pedrofp4444/BD | https://raw.githubusercontent.com/pedrofp4444/BD/main/report/content/[2] Levantamento e Análise de Requisitos/validacao.typ | typst | #let validacao = {
[
== Análise e Validação Geral dos Requisitos
Como foi previamente referido, nesta última fase, o levantamento e organização dos requisitos sofreu um processo rigoroso e crucial de validação da sua consistência e integridade. Deste modo, atendeu-se aos resultados do Inquérito Estatístico d... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.