repo stringlengths 26 115 | file stringlengths 54 212 | language stringclasses 2
values | license stringclasses 16
values | content stringlengths 19 1.07M |
|---|---|---|---|---|
https://github.com/lucannez64/Notes | https://raw.githubusercontent.com/lucannez64/Notes/master/Category_Theory.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: "Category Theory",
authors: (
"<NAME>",
),
date: "30 Octobre, 2023",
)
#set heading(numbering: "1.1.")
== Outline
<outline>
=== Introd... | |
https://github.com/Thumuss/brainfuck | https://raw.githubusercontent.com/Thumuss/brainfuck/main/example.typ | typst | MIT License | #import "./index.typ": *;
#set page(height: auto, width: 100pt)
#brainf("++++++++[>++++[>++>+++>+++>+<<<<-]>+>+>->>+[<]<-]>>.>---.+++++++..+++.>>.<-.<.+++.------.--------.>>+.>++.");
#brainf("++++++++++++++[->,.<]", inp: "Goodbye World!"); |
https://github.com/hyuunnn/CV | https://raw.githubusercontent.com/hyuunnn/CV/main/CV.typ | typst | #import "@preview/modern-cv:0.4.0": *
#show: resume.with(
author: (
firstname: "Hyun",
lastname: "Yi",
email: "<EMAIL>",
phone: "(+1) 111-111-1111",
github: "hyuunnn",
linkedin: "hyuunnn",
address: "Manan-gu, Anyang-si, Gyeonggi-do, Republic of Korea",
positions: (
"Security Eng... | |
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/management-plastic-map/entry.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: "Management: Plastic Map",
type: "management",
date: datetime(year: 2024, month: 2, day: 28),
author: "<NAME>",
witness: "Violet Ridge",
)
#image("./Plastic Map Drawing... |
https://github.com/ParaN3xus/typress | https://raw.githubusercontent.com/ParaN3xus/typress/main/font_test.typ | typst | MIT License |
#let eq = $
F_( n ) (z)
& = sum_( m >= 0 ) ( S_( m ) (n) ) / ( m! ) z^( m ) \
& = sum_( m >= 0 ) sum_( i = 0 )^( n - 1 ) ( i^( m ) z^( m ) ) / ( m! ) \
$
#let display(fonts) = {
for font in fonts {
text(font: font)[#font]
show math.equation: set text(font: font)
eq
line(length: 100%)
}
}
#l... |
https://github.com/bradmartin333/TypstNotes | https://raw.githubusercontent.com/bradmartin333/TypstNotes/main/main.typ | typst | #import "template.typ": *
#show: notepad.with(
title: "Brad's Notes",
description: "Everything!"
)
= Intro
Hello all!
== Something
Hello all again!
=== Even more!
Wow!
#include "./sections/test1.typ"
#include "./sections/test2.typ" | |
https://github.com/maxgraw/bachelor | https://raw.githubusercontent.com/maxgraw/bachelor/main/apps/document/src/4-concept/group.typ | typst | Im Folgenden wird die Zielgruppenanalyse für die Anwendung durchgeführt. Hierbei soll auf Basis der Zielgruppen die Anforderungen an die Anwendung definiert werden. Grundsätzlich lässt sich hierbei zwischen zwei Zielgruppen unterscheiden.
Die primäre Zielgruppe der entwickelten Anwendung besteht aus Endnutzern, die di... | |
https://github.com/typst-gost/2.105-2019 | https://raw.githubusercontent.com/typst-gost/2.105-2019/main/main.typ | typst | #import "templates/index.typ": *
#import "templates/utils.typ": *
#import "libs/tablex.typ": *
// Тут указываем только авторов [authors] и название работы [title]
#show: index.with(authors: ("<NAME>", ), title: [Разработка мобильного приложения "Музыкальный плеер"])
// ch -- center heading
#ch("Введение")
= Проект... | |
https://github.com/eneoli/kit-thesis-template | https://raw.githubusercontent.com/eneoli/kit-thesis-template/main/readme.md | markdown | # Typst template for thesis at KIT
**This project is not associated in any way with Karlsruhe Institute of Technology**

## Quick start guide
- Add your informations under `meta.typ`
- Add your abstract under `abstract.typ`
- Start writing in `content.typ`
- Compile `thesis.typ` | |
https://github.com/gongke6642/tuling | https://raw.githubusercontent.com/gongke6642/tuling/main/布局/block/block.typ | typst | = block
块级容器。
这样的容器可用于分隔内容、调整其大小并为其提供背景或边框。
== 例子
使用块,您可以为内容提供背景,同时仍允许其跨多个页面。
#image("屏幕截图 2024-04-14 164259.png")
#image("屏幕截图 2024-04-14 163924.png")
width
块的宽度。
默认:auto
#image("屏幕截图 2024-04-14 164427.png")
height
块的高度。当高度大于页面上的剩余空间并且breakable为 时true,该块将以剩余高度继续在下一页上。
默认:auto
#image("屏幕截图 2024-04-14 164534.... | |
https://github.com/alberto-lazari/computer-science | https://raw.githubusercontent.com/alberto-lazari/computer-science/main/advanced-topics-pl/presentation/sections/typst.typ | typst | #import "/common.typ": *
#new-section("Typst")
#slide(title: "The Typst language")[
#line-by-line(mode: "transparent")[
- Open source typesetting system
- Lightweight syntax
- Functional programming language
- Fast compile times for instant preview
]
]
#slide(title: "Syntax modes")[
- Markup: `... | |
https://github.com/PA055/5839B-Notebook | https://raw.githubusercontent.com/PA055/5839B-Notebook/main/Entries/file-structure-model-management/file-structure-model-management.typ | typst | #import "/packages.typ": notebookinator
#import notebookinator: *
#import themes.radial.components: *
#show: create-body-entry.with(
title: "File Structure/Model Management",
type: "management",
date: datetime(year: 2024, month: 3, day: 10),
author: "<NAME>",
witness: "<NAME>"
)
To effectivley use any softwa... | |
https://github.com/dainbow/MatGos | https://raw.githubusercontent.com/dainbow/MatGos/master/themes/20.typ | typst | #import "../conf.typ": *
= Непревность преобразования Фурье абсолютно интегрируемой функции. Преобразование Фурье производной и производная преобразования Фурье.
== Непрерывность преобразования Фурье абсолютно интегрируемой функции
#definition[
*Преобразование Фурье* функции $f in L_1(RR)$ называется
#eq[
$F[... | |
https://github.com/jgm/typst-hs | https://raw.githubusercontent.com/jgm/typst-hs/main/test/typ/compiler/ops-invalid-23.typ | typst | Other | // Error: 4-5 unknown variable: x
#((x,) = (1,))
|
https://github.com/boladouro/ME | https://raw.githubusercontent.com/boladouro/ME/main/1/pro%20prof/relatorio/functions.typ | typst | #let ifrac(num, denom) = { // emilylime on disc, adapted
import math: *;
set text(
size: 18pt
)
move(dx: -2pt, dy: -1pt,
attach("\u{2215}", // U+2215 ∕ Division Slash
tl: move(script(num), dx: 2pt),
br: move(script(denom), dx: -2pt, dy: -2pt),
)
)
} | |
https://github.com/daniel-eder/typst-template-jku | https://raw.githubusercontent.com/daniel-eder/typst-template-jku/main/src/template/styles/pre_content_heading.typ | typst | // SPDX-FileCopyrightText: 2023 <NAME>
//
// SPDX-License-Identifier: Apache-2.0
// A centered smaller h1 heading used for abstract, dedication, etc, all headings before the ToC
#let pre_content_heading(
content
) = {
//cannot use a normal call to #heading with a #aling and #text inside, because the default style ... | |
https://github.com/TomVer99/FHICT-typst-template | https://raw.githubusercontent.com/TomVer99/FHICT-typst-template/main/examples/starter/appendix.typ | typst | MIT License | // CHANGE THIS TO THE CORRECT PATH
#import "./../../template/fhict-template.typ": *
|
https://github.com/leo1oel/CSAPP | https://raw.githubusercontent.com/leo1oel/CSAPP/main/Homework/CSAPP%20Notes.typ | typst | #import "template.typ": *
#show: project.with(
title: "CSAPP Notes",
authors: (
"Leonardo",
)
)
#show image: set align(center)
= Number representations
Byte = 8 bits
- Decimal
- Binary
- Octal
- Hexadecimal
In C, numeric constants starting with "0x" or "0X" are interpreted as being in hexadecimal. The let... | |
https://github.com/MohamedElashri/resume | https://raw.githubusercontent.com/MohamedElashri/resume/main/README.md | markdown | # Typst Resume Project
This repository contains the Typst file for building my resume and is equipped with GitHub Actions to automate the building and releasing process as a PDF.
## Repository Structure
- `resume.typ`: The Typst source file for the resume.
- `.github/workflows/build.yml`: The GitHub Actions workflow... | |
https://github.com/typst/packages | https://raw.githubusercontent.com/typst/packages/main/packages/preview/big-todo/0.1.0/README.md | markdown | Apache License 2.0 | # Big-TODO
Create clearly visible TODOs in your document, and add an outline to keep track of them.
## Usage
Import the package
```typst
import "@preview/big-todo:0.1.0": *
```
And use the `todo` function to create a TODO, and the put the `todo_outline` somewhere to keep track of them.
```typst
= Pirates
Pirates... |
https://github.com/dermesser/jupyter2typst | https://raw.githubusercontent.com/dermesser/jupyter2typst/master/README.md | markdown | # jupyter2typst
This project was started and never finished. Instead, take a look at [typst_of_jupyter](https://lewinb.net/posts/19_typst_of_jupyter/)
(repository: [dermesser/typst_of_jupyter](https://github.com/dermesser/typst_of_jupyter)), which can successfully convert most notebooks
already.
| |
https://github.com/TempContainer/typnotes | https://raw.githubusercontent.com/TempContainer/typnotes/main/templates/my-template.typ | typst | #import "@preview/physica:0.9.3": *
#import "@preview/ctheorems:1.1.2": *
#import "page.typ": is-web-target
#let theorem = thmbox("theorem", "Theorem", fill: rgb("#e7e7e7"), padding: (top: 0em, bottom: 0em), base_level: 2)
#let proposition = thmbox("theorem", "Proposition", fill: rgb("#e7e7e7"), padding: (top: 0em, bo... | |
https://github.com/KillTheMule/derive_typst_intoval | https://raw.githubusercontent.com/KillTheMule/derive_typst_intoval/master/README.md | markdown | Apache License 2.0 | # derive_typst_intoval  [](https://docs.rs/derive_typst_intoval/) [](https://crates.i... |
https://github.com/kfijalkowski1/typst-diff-tool | https://raw.githubusercontent.com/kfijalkowski1/typst-diff-tool/main/typst_ast_parser/data/1_additional_bullet_point/added_bullet_point.typ | typst | #import "@preview/pesha:0.2.0": *
#experience(
place: "Hot Topic",
title: "Retail-sales associate",
time: [2004--06],
)[
- Top in-store sales associate in seven out of eight quarters
- Inventory management
- ADDED BULLET POINT
- Training and recruiting
- ANOTHER ADDED BULLET POINT
]
| |
https://github.com/ShadowMitia/typst-babble-bubbles | https://raw.githubusercontent.com/ShadowMitia/typst-babble-bubbles/main/lib.typ | typst | MIT License | // Functions
#let callout(body, title: "Callout", fill: blue, title-color: white, body-color: black, icon: none) = {
block(fill: fill,
width: 100%,
inset: 8pt)[
= #text(title-color)[#icon #title]
#text(body-color)[
#body
]
]
}
// Presets
#let note = callout.with(title: "Note",
fill: rgb(2... |
https://github.com/typst/templates | https://raw.githubusercontent.com/typst/templates/main/icicle/lib.typ | typst | MIT No Attribution | // The tile size.
#let size = 80pt
// The movement described by the given update.
#let deltas = (
w: (x: 0, y: -1),
a: (x: -1, y: 0),
s: (x: 0, y: 1),
d: (x: 1, y: 0),
)
// The texture map.
#let texture = image(
"texture.png",
width: 5 * size,
height: 5 * size,
)
// Parses a level description.
#let ... |
https://github.com/Kasci/LiturgicalBooks | https://raw.githubusercontent.com/Kasci/LiturgicalBooks/master/CSL_old/oktoich/Hlas6/1_Pondelok.typ | typst | #let V = (
"HV": (
("","Ánheľskija síly","Slézy Spáse, pokajánija mí dážď sokrušénnoju mýsliju: jáko da omýju skvérnu duší mojejá, júže zľí okaľách, ďíjaj neprávednaja na vsják čás, imíja na sijé moľáščuju, tebé róždšuju, i ánheľskija líki, i tvojé čelovikoľúbije."),
("","","Hrjadí o dušé! i raskájsja o mnóh... | |
https://github.com/k-84mo10/typst_modification | https://raw.githubusercontent.com/k-84mo10/typst_modification/main/tests/typ/compiler/embedded-expr.typ | typst | Apache License 2.0 | // Test embedded expressions.
// Ref: false
---
// Error: 6-8 expected identifier, found keyword `as`
#let as = 1 + 2
---
#{
// Error: 7-9 expected identifier, found keyword `as`
let as = 10
}
---
// Error: 2-2 expected expression
#
---
// Error: 2-2 expected expression
# hello
|
https://github.com/jgm/typst-hs | https://raw.githubusercontent.com/jgm/typst-hs/main/test/typ/compiler/color-01.typ | typst | Other | // Test gray color modification.
// Ref: false
#test(luma(20%).lighten(50%), luma(60%))
#test(luma(80%).darken(20%), luma(63.9%))
#test(luma(80%).negate(), luma(20%))
|
https://github.com/DashieTM/ost-5semester | https://raw.githubusercontent.com/DashieTM/ost-5semester/main/experiment/weeks/week1.typ | typst | #import "../../utils.typ": *
#section("Base Idea")
the reason we do experiments, is to validate a *Hypothesis*, which is based on a
model of the real world.\
Aka, we think about a supposed way the world works, and then to test this
assumption, we create an experiment to compare the model world to the real
world.
*Not... | |
https://github.com/hash-roar/typst-math-template | https://raw.githubusercontent.com/hash-roar/typst-math-template/main/two_clolumn_thesis/template.typ | typst | // This is a template for a document that uses the let project macro.
#let project(
title: "",
abstract: [],
keywords: [],
authors: (),
date: none,
body,
) = {
// Set the document's basic properties.
set document(author: authors.map(a => a.name), title: title)
set page(numbering: "1", number-align: c... | |
https://github.com/CodingThrust/Templates | https://raw.githubusercontent.com/CodingThrust/Templates/main/typst/template.typ | typst | #import "@preview/cetz:0.2.2": canvas, draw, tree
#import "@preview/grape-suite:1.0.0": exercise
#import "@preview/ouset:0.2.0": ouset
#import exercise: project, task, subtask
#show: project.with(
title: [Lecture 1: Linear Algebra and Quantum States],
institute: [Advanced Materials Thrust],
university: [Hong Kon... | |
https://github.com/jfrydell/fpga-gpu | https://raw.githubusercontent.com/jfrydell/fpga-gpu/main/README.md | markdown | # FPGA GPU
This is (a subset of) the code for my Duke ECE 350 Digital Systems final project, written in Fall 2023.
The project is described more [here](https://fletchrydell.com/projects/gpu) as well as in the technical report in this repository.
The code here includes only that which I wrote specifically for the fina... | |
https://github.com/wendigo/resume | https://raw.githubusercontent.com/wendigo/resume/master/template.typ | typst | #import "@preview/based:0.1.0": base64
#import "@preview/backtrack:1.0.0": current-version
#let content = yaml("en.yml")
#let (preSpace, postSpace) = (v(0.8em), v(0.8em))
#set document(
title: (content.name + " resume"),
author: content.name,
keywords: content.keywords,
date: none
)
#set page(footer:... | |
https://github.com/vEnhance/1802 | https://raw.githubusercontent.com/vEnhance/1802/main/src/preface.typ | typst | MIT License | #import "@local/evan:1.0.0":*
= Preface
At MIT, the course 18.02 (multivariable calculus) is a general institute requirement (GIR);
every student must pass this class in order to graduate.
These are lecture notes based upon the fall 2024 instance of the course, taught by <NAME>.
== [TEXT] Goals of this book
These n... |
https://github.com/Mc-Zen/quill | https://raw.githubusercontent.com/Mc-Zen/quill/main/tests/gates/custom%20gate%20size/test.typ | typst | MIT License | #set page(width: auto, height: auto, margin: 0pt)
#import "/src/quill.typ": *
#quantum-circuit(
targ(), targ(size: 6pt), targ(size: 3pt), ctrl(0), ctrl(0, size: 4pt), ctrl(0, open: true), ctrl(0, size: 4pt, open: true), ctrl(0), ctrl(0, size: 4pt)
)
#pagebreak()
#quantum-circuit(scale: 70%,
targ(), targ(size: 6... |
https://github.com/Nasus20202/przetwarzanie-rozproszone | https://raw.githubusercontent.com/Nasus20202/przetwarzanie-rozproszone/main/sprawozdanie.typ | typst | #set text(
font: "New Computer Modern",
size: 13pt
)
#set par(justify: true)
#set page(paper: "a4", margin: (x: 2cm, y: 2cm))
#set align(center)
= Deathmatch
=== <NAME> 193328 <NAME> 193354 <NAME> 193433
=
#set align(left)
#set heading(numbering: "1.")
= Wstęp
Celem projektu było stworzenie gry Deathmatch, w któr... | |
https://github.com/cherryblossom000/typst-apa-bibliography | https://raw.githubusercontent.com/cherryblossom000/typst-apa-bibliography/main/lib.typ | typst | #let apa-bibliography = (() => {
let dict-from-entries = entries => {
let result = (:)
for (key, value) in entries {
result.insert(key, value)
}
result
}
let n(x, default, f) = if x == none { default } else { f(x) }
let nid(x, default) = n(x, default, y => y)
let show-list(xs, commaStr: ",", andStr: "and") = {
... | |
https://github.com/polarkac/MTG-Stories | https://raw.githubusercontent.com/polarkac/MTG-Stories/master/stories/044%20-%20Innistrad%3A%20Crimson%20Vow/009_Episode%205%3A%20Till%20Death%20Do%20Us%20Part.typ | typst | #import "@local/mtgstory:0.2.0": conf
#show: doc => conf(
"Episode 5: Till Death Do Us Part",
set_name: "Innistrad: Crimson Vow",
story_date: datetime(day: 24, month: 11, year: 2021),
author: "<NAME>",
doc
)
Law is the assertion of order over chaos. You cannot have one without the other. Every day ... | |
https://github.com/GYPpro/ACM_res | https://raw.githubusercontent.com/GYPpro/ACM_res/main/0_Template/graph/Path/SCSP.typ | typst | #import "@preview/codelst:2.0.1": sourcecode
// Display inline code in a box
#set text(font:("Times New Roman","Source Han Serif SC"))
#show raw.where(block: false): box.with(
fill: luma(230),
inset: (x: 3pt, y: 0pt),
outset: (y: 3pt),
radius: 2pt,
)
#show raw.where(block: true): block.with(
fill: luma(240),
... | |
https://github.com/dismint/docmint | https://raw.githubusercontent.com/dismint/docmint/main/biology/lec7.typ | typst | #import "template.typ": *
#show: template.with(
title: "Lecture 7",
subtitle: "7.016"
)
= Introduction
In order to replicate the strands of DNA, we will need to separate the hydrogen bonds holding them together. This is done by a substance called *helicase*. Then we need to synthesize a new strand, which is done ... | |
https://github.com/schmidma/typst-workshop | https://raw.githubusercontent.com/schmidma/typst-workshop/main/examples/09-content.typ | typst | Creative Commons Zero v1.0 Universal | The most "universal" type in Typst language is *content*. Everything you write in the document becomes content.
#[
But you can explicitly create it with _scripting mode_.
In square brackets, you can use any markup functions.
] |
https://github.com/chamik/gympl-skripta | https://raw.githubusercontent.com/chamik/gympl-skripta/main/cj-autori/poe.typ | typst | Creative Commons Attribution Share Alike 4.0 International | #import "/helper.typ": autor
#autor("<NAME>", "1809", "1849 (40 let)", "novinář, básník, spisovatel", "Virginská univerzita; Vojenská akademie", "romantismus, detektivky, básně", "/cj-autori/media/poe.jpg")
Poe měl rychle se měnící a poměrně komplikovaný a tragický život. Jeho otec odešel od jejich rodiny a jeho matk... |
https://github.com/Myriad-Dreamin/tinymist | https://raw.githubusercontent.com/Myriad-Dreamin/tinymist/main/crates/tinymist-query/src/fixtures/call_info/user_with2.typ | typst | Apache License 2.0 | #let f(x, y) = x + y
#let g = f.with(1)
#let h = g.with(2)
#(/* position after */ h()) |
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/build-tracking-wheels/entry.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: "Build: Tracking Wheels",
type: "build",
date: datetime(year: 2023, month: 8, day: 12),
author: "<NAME>",
witness: "Violet Ridge",
)
#grid(
columns: (1fr, 1fr),
gut... |
https://github.com/jamesrswift/journal-ensemble | https://raw.githubusercontent.com/jamesrswift/journal-ensemble/main/src/pages/inner.typ | typst | The Unlicense | #import "../elements.typ"
#let inner(..args) = page(
numbering: none,
{
grid(
gutter: 1cm,
columns: (1fr, 1fr),
rows: (auto, 1fr),
// stroke: 1pt,
..args
)
}
) |
https://github.com/jgm/typst-hs | https://raw.githubusercontent.com/jgm/typst-hs/main/test/typ/compiler/let-06.typ | typst | Other | // Ref: false
// Destructuring with a sink.
#let (a, b, ..c) = (1, 2, 3, 4, 5, 6)
#test(a, 1)
#test(b, 2)
#test(c, (3, 4, 5, 6))
|
https://github.com/Ajsoabk/Exam-Paper-Answer-and-Analysis-typst-template | https://raw.githubusercontent.com/Ajsoabk/Exam-Paper-Answer-and-Analysis-typst-template/main/test1.typ | typst | // #include "exam_paper_answer.typ";
#import "exam_paper_answer.typ":*;
#show: conf.with(title:"GESP2023年12月一级真题",affiliation:"大卫信奥");
| |
https://github.com/ramojus/typst-template-VU-thesis | https://raw.githubusercontent.com/ramojus/typst-template-VU-thesis/main/template.typ | typst | #let text_font_size = 12pt
#let heading_font_size = 14pt
#let get_lt_supplement(it) = {
let supplement = "pav"
if it.body != none {
if it.body.func() == image {
supplement = "pav"
}
else if it.body.func() == table {
supplement = "lentelė"
}
else if it.body.func() == raw {
sup... | |
https://github.com/alberto-lazari/computer-science | https://raw.githubusercontent.com/alberto-lazari/computer-science/main/advanced-topics-cs/module-3/paper.typ | typst | == Trade-offs in ML models
The first topic addressed by the paper are trade-offs that arise when modeling machine learning systems. \
There are three key features of an ML model that struggle to coexist:
+ *Interpretability*: is it possible to explain why an ML system gave a specific classification to a specific input?... | |
https://github.com/Fr4nk1inCs/typreset | https://raw.githubusercontent.com/Fr4nk1inCs/typreset/master/src/styles/report.typ | typst | MIT License | #import "./basic.typ": base-style
#import "../utils/title.typ": make-title
#import "../utils/header.typ": make-header
#let style(report-name: "Report Name", authors: "<NAME>", lang: "en", body) = {
let authors = if type(authors) == str { (authors, ) } else { authors }
let title = report-name
show: base-style.w... |
https://github.com/dainbow/MatGos | https://raw.githubusercontent.com/dainbow/MatGos/master/themes/16.typ | typst | #import "../conf.typ": *
= Интегрирование дифференциальной формы с компактным носителем. Зависимость интеграла от замены координат.
Из @form-basic Пространство $Lambda_n $ одномерно. Иными словами, если $(f^1, ..., f^n)$ -- базис $E^*$,
то
#eq[
${c f^1 and ... and f^n | c in RR} = Lambda_n$
]
Тогда если $(e^1_0, ..... | |
https://github.com/Shedward/dnd-charbook | https://raw.githubusercontent.com/Shedward/dnd-charbook/main/dnd/page/charlist.typ | typst | #import "../core/core.typ": *
#import "../game/game.typ"
#let statsGrid(
names: game.stats
) = framed(fitting: expand)[
#grid(
columns: 100%,
gutter: paddings(1),
rows: 1fr,
..names.map(c => [
#framed(fitting: expand, insets: 0pt, stroke: strokes.normal)[
#grid(
columns: 100... | |
https://github.com/r8vnhill/apunte-bibliotecas-de-software | https://raw.githubusercontent.com/r8vnhill/apunte-bibliotecas-de-software/main/Unit1/Clean.typ | typst | == Código limpio y mantenible
- Código fácil de leer y entender:
- Escribe código que sea claro y comprensible para otros desarrolladores.
- Usa nombres de variables y funciones descriptivos y significativos.
- Facilita el trabajo en equipo:
- Un código limpio y bien estructurado mejora la colaboración entre lo... | |
https://github.com/typst/packages | https://raw.githubusercontent.com/typst/packages/main/packages/preview/fh-joanneum-iit-thesis/1.1.0/template/thesis.typ | typst | Apache License 2.0 | // IIT Institute of Software Design and Security
// FH JOANNEUM (fhj)
// Template for a Bachelor's and Master's thesis
// central place where libraries are imported
// (or macros are defined)
// which are used within all the chapters:
#import "chapters/global.typ": *
#show: doc => thesis(
// Logo should be ok... |
https://github.com/0x6e66/hbrs-typst | https://raw.githubusercontent.com/0x6e66/hbrs-typst/main/modules_de/01_fundamentals.typ | typst | = Grundlagen
#lorem(500)
== Sub-Grundlagen
#lorem(500) | |
https://github.com/noahjutz/AD | https://raw.githubusercontent.com/noahjutz/AD/main/uebungen/2/rec_tree.typ | typst | #import "@preview/cetz:0.2.2"
#let rec_tree(root) = {
if root < 2 {root}
else {(root, rec_tree(root - 1), rec_tree(root - 2))}
}
#let to_content(x) = if type(x) == array {x.map(to_content)} else {repr(x)}
#cetz.canvas({
import cetz.draw: *
import cetz.tree
let n = 5
set-style(content: (padding: 4pt))
... | |
https://github.com/SWATEngineering/Docs | https://raw.githubusercontent.com/SWATEngineering/Docs/main/src/3_PB/SpecificaTecnica/meta.typ | typst | MIT License | #let title = "Specifica Tecnica" |
https://github.com/typst/packages | https://raw.githubusercontent.com/typst/packages/main/packages/preview/universal-hit-thesis/0.2.0/harbin/bachelor/pages/bibliography.typ | typst | Apache License 2.0 | #import "../config/constants.typ": special-chapter-titles
#let bibliography-page(
bibliography,
) = [
#heading(special-chapter-titles.参考文献, level: 1, numbering: none)
#bibliography(title: none)
] |
https://github.com/MatheSchool/typst-g-exam | https://raw.githubusercontent.com/MatheSchool/typst-g-exam/develop/docs-shiroa/g-exam-doc/examples/exam-big-image.doc.typ | typst | MIT License | #import "@preview/cetz:0.2.1"
#import "@preview/g-exam:0.3.2": *
#show: g-exam.with(
author: (
name: "<NAME>",
email: "<EMAIL>",
watermark: "Profesor: andres",
),
school: (
name: "IES <NAME>",
// logo:image("./logo-ies_fernando_fernan_gomez.png")
),
exam-info: (
academ... |
https://github.com/tingerrr/anti-matter | https://raw.githubusercontent.com/tingerrr/anti-matter/main/example/main.typ | typst | MIT License | #import "/src/lib.typ": anti-matter, fence, set-numbering
#set page("a4", height: auto)
#show heading.where(level: 1): it => pagebreak(weak: true) + it
#show: anti-matter
#set-numbering(none)
#align(center)[My Title Page]
#pagebreak()
#set-numbering("I")
#include "front-matter.typ"
#fence()
#include "chapters.typ"... |
https://github.com/meggy-lie-anne/TopologyCubicalComplexes | https://raw.githubusercontent.com/meggy-lie-anne/TopologyCubicalComplexes/main/report.typ | typst | #import "@preview/cetz:0.1.2"
#set text(font: "New Computer Modern")
#set par(justify: true, leading: 0.9em)
#show heading: it => {
v(1em)
it
v(1em, weak: true)
}
#v(2em)
#align(center, [
= Cubical complexes
<NAME>, <NAME>
])
#v(4em)
*This research project focuses on the implementation of homology and ... | |
https://github.com/valentinvogt/npde-summary | https://raw.githubusercontent.com/valentinvogt/npde-summary/main/src/chapters/10.typ | typst | #import "../setup.typ": *
#show: thmrules
= Convection-Diffusion Problems
<ch:convection-diffusion>
== Heat conduction in a Fluid
<sub:heat-conduction>
Consider a flowing fluid. Then there is the key quantity, the #emph[flow field] $bold(v) : Omega subset bb(R)^d arrow.r bb(R)^d$,
where $d$ is the dimension we consi... | |
https://github.com/SWATEngineering/Docs | https://raw.githubusercontent.com/SWATEngineering/Docs/main/src/3_PB/VerbaliInterni/VerbaleInterno_240223/meta.typ | typst | MIT License | #let data_incontro = "23-02-2024"
#let inizio_incontro = "16:00"
#let fine_incontro = "17:00"
#let luogo_incontro = "Discord" |
https://github.com/Otto-AA/definitely-not-tuw-thesis | https://raw.githubusercontent.com/Otto-AA/definitely-not-tuw-thesis/main/template/content/front-matter.typ | typst | MIT No Attribution | #heading(outlined: false)[Danksagung]
#lorem(100)
#heading(outlined: false)[Acknowledgements]
#lorem(100)
= Kurzfassung
#lorem(100)
= Abstract
#lorem(100) |
https://github.com/CL4R3T/QFT_homework | https://raw.githubusercontent.com/CL4R3T/QFT_homework/main/README.md | markdown | 该repo为2024秋季学期起进行的开源作业project之一。欢迎各位核对纠错,也欢迎未来选课的学弟参考。
本课程为《量子场论》,2024秋季,谭时纳老师授课。
> 该repo仅作学习用途。This repo is ONLY FOR STUDY USE.
> 请不要直接抄袭。Direct copying is NOT allowed.
> 你在考试中无法抄袭。There's NO CHEATING in real exams.
# 一些想说的话
最好不要向其他同学推荐这个以及同类repo(因为你永远不知道信不信得过同学,尤其是在PKU),**千万别向TA/老师直接跳脸输出**。物院神人确实多,我希望各位不是。这个rep... | |
https://github.com/MDLC01/unichar | https://raw.githubusercontent.com/MDLC01/unichar/main/README.md | markdown | MIT License | # Unichar
This is a [Typst](https://github.com/typst/typst) package that ports part of the [Unicode Character Database](https://www.unicode.org/reports/tr44/) to Typst. Notably, it includes information from [UnicodeData.txt](https://unicode.org/reports/tr44/#UnicodeData.txt) and [Blocks.txt](https://unicode.org/report... |
https://github.com/floriandejonckheere/utu-thesis | https://raw.githubusercontent.com/floriandejonckheere/utu-thesis/master/thesis/figures/07-proposed-solution/louvain-3.typ | typst | #import "@preview/cetz:0.2.2": canvas, draw, angle
#v(2em)
#let vertex = (name, x, y, stroke: black, fill: white) => {
draw.circle((x, y), radius: .35, stroke: stroke, fill: fill, name: name)
draw.content((x, y), eval(name, mode: "math"))
}
#let edge = (start, end, name) => {
let (a, b) = (start, end)
draw.... | |
https://github.com/yasemitee/Teoria-Informazione-Trasmissione | https://raw.githubusercontent.com/yasemitee/Teoria-Informazione-Trasmissione/main/2023-11-10.typ | typst | #import "@preview/lemmify:0.1.4": *
#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: "proof"): it => block(
it,
stroke: green + 1pt,
inset: 1em,
breaka... | |
https://github.com/OverflowCat/BUAA-Data-and-Error-Analysis-Sp2024 | https://raw.githubusercontent.com/OverflowCat/BUAA-Data-and-Error-Analysis-Sp2024/neko/project-2/regression.typ | typst | #import "./helper.typ": *
#import "@preview/unify:0.5.0": num, qty
#let transpose(data) = {
let width = data.at(0).len()
let height = data.len()
let res = data.at(0).map(_ => data.map(_ => none))
for i in range(width) {
for j in range(height) {
res.at(i).at(j) = data.at(j).at(i)
}
}
res
}
#... | |
https://github.com/furkan/cv | https://raw.githubusercontent.com/furkan/cv/main/modules/skills.typ | typst | Apache License 2.0 | #import "../brilliant-CV/template.typ": *
#cvSection("Other")
#cvSkill(
type: [Languages],
info: [Turkishs (Native) #hBar() English (Advanced) #hBar() German (Beginner) #hBar() Spanish (Beginner)]
)
#cvSkill(
type: [Interests],
info: [Songwriting #hBar() Reading #hBar() Playing soccer]
)
|
https://github.com/polarkac/MTG-Stories | https://raw.githubusercontent.com/polarkac/MTG-Stories/master/stories/016%20-%20Fate%20Reforged/002_Unwritten.typ | typst | #import "@local/mtgstory:0.2.0": conf
#show: doc => conf(
"Unwritten",
set_name: "Fate Reforged",
story_date: datetime(day: 14, month: 01, year: 2015),
author: "<NAME>",
doc
)
#emph[Sarkhan Vol has arrived in Tarkir's past, more than a thousand years before his birth.] #emph[ When he first arrived,... | |
https://github.com/cs-24-sw-3-01/typst-documents | https://raw.githubusercontent.com/cs-24-sw-3-01/typst-documents/main/report/sources/MatsInterview.typ | typst |
== Interview with Mats <InterviewMats>
00:00:02,960 --> 00:00:04,580
Marc: Er du klar på en masse spørgsmål?
00:00:05,839 --> 00:00:06,660
Mats: Så klar!
00:00:07,919 --> 00:00:10,900
Marc: Skal vi ikke bare starte med mindre du har noget?
00:00:11,599 --> 00:00:13,540
Mats: Kommer der flere på eller er det kun mig... | |
https://github.com/lucannez64/Notes | https://raw.githubusercontent.com/lucannez64/Notes/master/Capture/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!
#import "physics.typ"
#let project(title: "", authors: (), date: none, body) = {
// Set the document's basic properties.
set document(author: authors, titl... | |
https://github.com/goshakowska/Typstdiff | https://raw.githubusercontent.com/goshakowska/Typstdiff/main/assets/example1/new.typ | typst | ZMIANY NA HEADERZE
= Introduction zmeniony
ZMIANY NA PARAGRAFIE \
In eport, we will explore the
various that influence fluid
dynamics in glaciers *and how* they
contribute to the formation and
behaviour of these natural structures.
ZMIANY NA LISTACH
+ The climate
- Temperature
+ The topography
+ The geology
+ Nowy... | |
https://github.com/frectonz/the-pg-book | https://raw.githubusercontent.com/frectonz/the-pg-book/main/book/082.%20webstartups.html.typ | typst | webstartups.html
The Future of Web Startups
Want to start a startup? Get funded by
Y Combinator.
October 2007(This essay is derived from a keynote at FOWA in October 2007.)There's something interesting happening right now. Startups are
undergoing the same transformation that technology does when it becomes
che... | |
https://github.com/rangerjo/tutor | https://raw.githubusercontent.com/rangerjo/tutor/main/lib.typ | typst | MIT License | /// Load the default tutor config.
///
/// The tutor configuration holds all settings for the individual utilities provided by tutor.
///
/// #example(`
/// let cfg = tutor.default-config()
/// [#cfg]
/// `)
///
/// -> dictionary
#let default-config() = {
let cfg = (
sol: false,
level: 1,
test: true,
... |
https://github.com/npikall/vienna-tech | https://raw.githubusercontent.com/npikall/vienna-tech/main/template/main.typ | typst | The Unlicense | #import "@preview/vienna-tech:0.1.1": *
#show "Typst": fancy-typst
#show "LaTeX": fancy-latex
// Useing the configuration
#show: tuw-thesis.with(
title: [Instruktionen zur Abfassung der Bachelorarbeit],
thesis-type: [Bachelorarbeit],
lang: "de",
authors: (
(
name: "<NAME>",
email: "<EMAIL>",
... |
https://github.com/Kasci/LiturgicalBooks | https://raw.githubusercontent.com/Kasci/LiturgicalBooks/master/CSL_old/oktoich/Hlas8/1_Pondelok.typ | typst | #let V = (
"HV": (
("","Hóspodi, ášče i sudílišče","Hóspodi, prišédyj v mír hríšniki prizváti, i razbójniki, i mytarjá, i bludnícu, i blúdnaho prijémyj: páče vsích mené sohrišívšaho tebí, Christé mój, i nikákože ktomú kájuščasja, čelovikoľúbne prizoví."),
("","","Hóspodi, íže ot mytaréj pástyri cérkvi tvojéj ... | |
https://github.com/HKFoggyU/hkust-thesis-typst | https://raw.githubusercontent.com/HKFoggyU/hkust-thesis-typst/main/hkust-thesis/utils/utils.typ | typst | LaTeX Project Public License v1.3c | #import "constants.typ" as constants
#let signature-line(length: 70%) = (
align(center)[#line(length: length, stroke: 0.5pt)]
)
#let do-repeat(content, count) = (
for time in range(count) {
// [#(time+1) #content]
[#content]
}
)
#let clearDoublePage() = (
pagebreak(weak: true, to: "odd"... |
https://github.com/Ziyzou02/typst_feyndraw | https://raw.githubusercontent.com/Ziyzou02/typst_feyndraw/main/README.md | markdown | ## 介绍
这是一个在typst上画Feynman图的一个例子,基于cetz.
你可以通过一系列函数来直接画出标量玻色子,矢量玻色子和费米子的传播子。
例如

详情见代码。
| |
https://github.com/TypstApp-team/typst | https://raw.githubusercontent.com/TypstApp-team/typst/master/docs/tutorial/2-formatting.md | markdown | Apache License 2.0 | ---
description: Typst's tutorial.
---
# Formatting
So far, you have written a report with some text, a few equations and images.
However, it still looks very plain. Your teaching assistant does not yet know
that you are using a new typesetting system, and you want your report to fit in
with the other student's submis... |
https://github.com/sevehub/minimalbc | https://raw.githubusercontent.com/sevehub/minimalbc/main/lib.typ | typst | MIT License | #let companytext(size, body, style: "normal") = text(
size: size,
style: style,
weight: "medium",
)[#body]
#let nametext(size, body, style: "normal") = text(
size: size,
style: style,
weight: "medium",
)[#body]
#let roletext(size, body, style: "normal") = text(
size: size,
style: style,
weight: "light... |
https://github.com/herbhuang/utdallas-thesis-template-typst | https://raw.githubusercontent.com/herbhuang/utdallas-thesis-template-typst/main/proposal.typ | typst | MIT License | #import "/layout/proposal_template.typ": *
#import "/metadata.typ": *
#import "/utils/todo.typ": *
#set document(title: titleEnglish, author: author)
#show: proposal.with(
title: titleEnglish,
titleGerman: titleGerman,
degree: degree,
program: program,
supervisor: supervisor,
advisors: advisors,
author:... |
https://github.com/0x1B05/english | https://raw.githubusercontent.com/0x1B05/english/main/nce3/content/chapters.typ | typst | #import "../template.typ": *
= A puma at large
Pumas are large, cat-like animals which are found in America. When reports came into London Zoo that a wild puma had been spotted forty-five miles south of London, they were not taken seriously. However, as the evidence began to accumulate, experts from the Zoo felt obli... | |
https://github.com/binhtran432k/ungrammar-docs | https://raw.githubusercontent.com/binhtran432k/ungrammar-docs/main/contents/acknowledgments.typ | typst | #let m = yaml("../metadata.yml")
#let advisor = if m.supervisors.len() > 1 [advisors] else [advisor]
#let advisorArticle = if m.supervisors.len() > 1 [their] else [his]
#let advisorArticleFirst = if m.supervisors.len() > 1 [Their] else [His]
= Acknowledgments
We would like to express our sincere gratitude to o... | |
https://github.com/yasemitee/Teoria-Informazione-Trasmissione | https://raw.githubusercontent.com/yasemitee/Teoria-Informazione-Trasmissione/main/2023-10-20.typ | typst | #import "@preview/lemmify:0.1.4": *
#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: "proof"): it => block(
it,
stroke: green + 1pt,
inset: 1em,
breaka... | |
https://github.com/robinhundt/typst-polylux-to-pptx | https://raw.githubusercontent.com/robinhundt/typst-polylux-to-pptx/main/README.md | markdown | # Typst Polylux to PPTX
This is a small script to convert a typst presentation which uses polylux to a powerpoint .pptx presentation. The typst presentation is compiled to .png and then python-pptx is used to create a presentation where each image becomes one slide. The speaker notes are also extracted from the typst ... | |
https://github.com/rdboyes/resume | https://raw.githubusercontent.com/rdboyes/resume/main/modules_fr/professional.typ | typst | // Imports
#import "@preview/brilliant-cv:2.0.2": cvSection, cvEntry
#let metadata = toml("../metadata.toml")
#let cvSection = cvSection.with(metadata: metadata)
#let cvEntry = cvEntry.with(metadata: metadata)
#cvSection("Expérience Professionnelle")
#cvEntry(
title: [Directeur de la Science des Données],
society... | |
https://github.com/Danmushu/OUC-lab-template-typst | https://raw.githubusercontent.com/Danmushu/OUC-lab-template-typst/main/README.md | markdown | MIT License | # OUC-lab-template-typst
- 自己使用的一个模板,简单修改了一下
- 非常感谢[pluto](https://github.com/Starlight0798),源地址[在此](https://github.com/Starlight0798/typst-nku-lab-template)
|
https://github.com/jamesrswift/typst-chem-par | https://raw.githubusercontent.com/jamesrswift/typst-chem-par/main/README.md | markdown | MIT License | # The `chem-par` Package
<div align="center">Version 0.2.0</div>
A utility package for displaying IUPAC nomenclature and chemical formulae without the hassle of manually formatting all of these in your document.
## Example Usage
```typ
#import "@preview/chem-par:0.2.0": *
#set page(width: 30em, height: auto, margin... |
https://github.com/chubetho/THWS_Bachelor_Template | https://raw.githubusercontent.com/chubetho/THWS_Bachelor_Template/main/chapters/background.typ | typst | = Background
#lorem(50)
== Title 1
#lorem(50)
=== Subtitle 1
#lorem(100)
=== Subtitle 2
#lorem(100)
#pagebreak(weak: true)
| |
https://github.com/andrewzn69/templates | https://raw.githubusercontent.com/andrewzn69/templates/main/templates/Typst/project-report/main.typ | typst | MIT License | #import "template.typ": *
// Take a look at the file `template.typ` in the file panel
// to customize this template and discover how it works.
#show: project.with(
title: "Sample Project Report",
subtitle: "A sample project on this & that",
abstract: lorem(50),
subject: "PROJ-CS881 PROJECT - III",
guide: (
... |
https://github.com/ysthakur/PHYS121-Notes | https://raw.githubusercontent.com/ysthakur/PHYS121-Notes/main/Notes/Ch08.typ | typst | MIT License | = Chapter 8: Equilibrium and Elasticity
== Torque and Static Equilibrium
An object at rest is in *static equilibrium*.
As long as the object can be modeled as a particle, static equilibrium is achieved when the net force on the particle is 0.
However, for extended objects that can rotate, we need to also consider t... |
https://github.com/joshuabeny1999/unisg-thesis-template-typst | https://raw.githubusercontent.com/joshuabeny1999/unisg-thesis-template-typst/main/layout/titlepage.typ | typst | Other | #let titlepage(
title: "",
subtitle: "",
type: "",
professor: "",
author: "",
matriculationNumber: "",
submissionDate: datetime,
abstract: "",
language: "en",
) = {
set page(
margin: (left: 2.5cm, right: 2.5cm, top: 2.5cm, bottom: 2.5cm),
numbering: none,
number-align: center,
)
... |
https://github.com/pedrofp4444/BD | https://raw.githubusercontent.com/pedrofp4444/BD/main/report/content/[4] Modelação Lógica/validação.typ | typst | #let validação = {
[
== Construção e Validação do Modelo de Dados Lógico
Após a conclusão e revisão da modelação concetual, a equipa da "Quatro em Linha" está agora a avançar para a elaboração do Modelo de Dados Lógico. Este tipo de modelo descreve os elementos de dados em detalhe e é utilizado para criar um... | |
https://github.com/elteammate/typst-compiler | https://raw.githubusercontent.com/elteammate/typst-compiler/main/src/reflection.typ | typst | #import "reflection-parser.typ": typst_parse, typst_lex, lex_file
#let parse(source) = typst_parse(typst_lex(source))
#let parse_file(filename) = parse(open(filename))
| |
https://github.com/SE-legacy/physics_lectures_3_term | https://raw.githubusercontent.com/SE-legacy/physics_lectures_3_term/main/lesson_5/main.typ | typst | #import "conf.typ": conf
#show: conf.with(
meta: (
title: "Физика. Занятие №5, 07.10.2024",
author: "<NAME>., <NAME>. Чернышевского",
group: 251,
city: "Саратов",
year: 2024,
)
)
#set math.equation(numbering: "(1)", supplement: [])
= Опыт Эрстеда и Эйхенвальда
В опыте Эрстеда стрелка стремитс... | |
https://github.com/jgm/typst-hs | https://raw.githubusercontent.com/jgm/typst-hs/main/test/typ/compiler/array-37.typ | typst | Other | // Error: 2-18 array index out of bounds (index: -4, len: 3) and no default value was specified
#(1, 2, 3).at(-4)
|
https://github.com/Treeniks/bachelor-thesis-isabelle-vscode | https://raw.githubusercontent.com/Treeniks/bachelor-thesis-isabelle-vscode/master/thesis.typ | typst | #import "/utils/isabelle.typ": *
#import "/template.typ": thesis
#import "@preview/codly:1.0.0": *
#import "@preview/gentle-clues:0.9.0": *
#set text(font: "STIX Two Text", size: 11pt)
#show math.equation: set text(font: "STIX Two Math")
#show raw: set text(font: "JetBrains Mono", size: 1.1em)
#let acknowledgements... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.