repo stringlengths 26 115 | file stringlengths 54 212 | language stringclasses 2
values | license stringclasses 16
values | content stringlengths 19 1.07M |
|---|---|---|---|---|
https://github.com/whs/typst-govdoc | https://raw.githubusercontent.com/whs/typst-govdoc/master/govdoc.typ | typst | #import "thai.typ": thai, thnum
#let gov(body) = {
// TODO: Add comma
set enum(numbering: n => thnum(n) + ".")
set par(first-line-indent: 2.5cm, justify: true, leading: 0.6em)
show par: set block(spacing: 1em)
set page(
"a4",
margin: (
top: 2.5cm,
left: 3cm,
right: 2cm,
bottom... | |
https://github.com/sspu-cryptography-research-group/cv-template | https://raw.githubusercontent.com/sspu-cryptography-research-group/cv-template/main/README.md | markdown | # Typst CV Template
A simple CV template for [typst.app](https://typst.app).
### Sample CV

| |
https://github.com/lxl66566/my-college-files | https://raw.githubusercontent.com/lxl66566/my-college-files/main/信息科学与工程学院/操作系统(选修)/实验/2.typ | typst | The Unlicense | #import "template.typ": *
#show: project.with(
title: "实验二 进程的创建与控制",
authors: (
"absolutex",
)
)
#align(right)[]
+ *实验目的*
+ 加深对进程概念的理解,明确进程和程序的区别;
+ 进一步认识并发执行的实质;
+ 熟悉C语言程序在Linux系统中的编辑,编译,执行;
+ 理解Linux系统中进程控制的基本原理。
+ 实验内容:
+ 使用vi编辑如下C程序,然后进行调试,编译,多次执行,分析和思考执行结果。
+ #include_code("src/2.1.c"... |
https://github.com/01mf02/jq-lang-spec | https://raw.githubusercontent.com/01mf02/jq-lang-spec/main/semantics.typ | typst | #import "common.typ": *
= Evaluation Semantics <semantics>
In this section, we will define a function $phi|^c_v$ that returns
the output of the filter $phi$ in the context $c$ on the input value $v$.
Let us start with a few definitions.
A _context_ $c$ is a mapping
from variables $var(x)$ to values and
from identifi... | |
https://github.com/chendaohan/bevy_tutorials_typ | https://raw.githubusercontent.com/chendaohan/bevy_tutorials_typ/main/12_time_and_timers/time_and_timers.typ | typst | #set page(fill: rgb(35, 35, 38, 255), height: auto, paper: "a3")
#set text(fill: color.hsv(0deg, 0%, 90%, 100%), size: 22pt, font: "Microsoft YaHei")
#set raw(theme: "themes/Material-Theme.tmTheme")
= 1. Time (时间)
Time 是你主要的全局计时信息源,你可以在任何需要操作时间的系统中访问该资源。Bevy 在每帧开始时更新时间。
= 2. 增量时间
最常见的用例是“增量时间”(delta time)——即前一帧更新和当前帧... | |
https://github.com/mismorgano/UG-FunctionalAnalyisis-24 | https://raw.githubusercontent.com/mismorgano/UG-FunctionalAnalyisis-24/main/tareas/Tarea-08/Tarea-08.typ | typst | #import "../../config.typ": config, exercise, proof, cls, ip, conv
#show: doc => config([Tarea 8], doc)
#exercise[2.10][Sea $X$ un e.B, $f in S_(X^*)$. Muestra que para todo $x in X$ tenemos que $"dist"(x, f^(-1)(0)) = abs(f(x))$. ]
#proof[
Sea $x in X$, notemos que $f^(-1)(0) = {y in S_X: f(y) = 0}$
]
#exercise[2... | |
https://github.com/HarryLuoo/sp24 | https://raw.githubusercontent.com/HarryLuoo/sp24/main/431/hw/1/hw9.typ | typst | #set math.equation(numbering: "(1)")
#set page(margin: (x: 1cm, y: 1cm))
= HW 9, <NAME>
// 8.6 (d), 8.12, 8.22, 8.23, 8.36, 8.40 (a), 8.42, 8.48, 8.54
// Hints:
// For many of these problems the indicator method will help: write your random variable as a sum of (suitably chosen) indicators.
// 8.12 (a): Try to rewr... | |
https://github.com/Godalin/Typst-Notations | https://raw.githubusercontent.com/Godalin/Typst-Notations/main/Short.typ | typst | // Shorthands for convenience
#let lam = math.lambda
#let eps = math.epsilon | |
https://github.com/jamesrswift/typst-chem-par | https://raw.githubusercontent.com/jamesrswift/typst-chem-par/main/src/rules/greek.typ | typst | MIT License | #import "../stateful.typ": *
#import "../constants.typ"
#let greek(body) = context {
if-state-enabled( body , {
show: it => {
for (k, v) in constants.greek {
it = {show k + "-": v + "-"; it}
}
it
}
body
})
} |
https://github.com/MatheSchool/typst-g-exam | https://raw.githubusercontent.com/MatheSchool/typst-g-exam/develop/manual/util.typ | typst | MIT License | #import "/src/lib.typ" as g-exam
/// Make the title-page
#let make-title() = {
let left-fringe = 39%
let left-color = blue.darken(30%)
let right-color = white
let url = "https://github.com/MatheSchool/typst-g-exam"
let authors = (
([<NAME>], "<EMAIL>"),
)
set page(
numbering: none,
backgrou... |
https://github.com/tingerrr/hydra | https://raw.githubusercontent.com/tingerrr/hydra/main/doc/examples/book/b.typ | typst | MIT License | #import "/doc/examples/template.typ": example
#show: example.with(book: true)
#include "content.typ"
|
https://github.com/linsyking/messenger-manual | https://raw.githubusercontent.com/linsyking/messenger-manual/main/sceneproto.typ | typst | #pagebreak()
= Scene Prototype <sceneproto>
It's common that there are multiple scenes and their contents are similar. For example, in the game #link("https://github.com/linsyking/Reweave/")[Reweave], there are many _levels_ and all of them are scenes with very similar functionalities. Do we really need to create a se... | |
https://github.com/barddust/Kuafu | https://raw.githubusercontent.com/barddust/Kuafu/main/src/Analysis/build.typ | typst | #{
import "/config.typ": project
import "/mathenv.typ": *
show: mathenv-init
project(
"夸父:数学分析",
"0.1",
"Analysis",
(
"intro.typ",
"natural.typ",
"integer.typ",
"rational.typ",
"real.typ",
"sequence.typ"
),
bio: false
)
}
| |
https://github.com/jgm/typst-hs | https://raw.githubusercontent.com/jgm/typst-hs/main/test/typ/text/raw-08.typ | typst | Other | // Unterminated.
// Error: 2:1 expected 1 backtick
`endless
|
https://github.com/hrmnjt/resume | https://raw.githubusercontent.com/hrmnjt/resume/main/cover-letter.typ | typst | Apache License 2.0 | // Copyright 2020-2023 <NAME>
// This work is licensed under a Creative Commons
// Attribution-NonCommercial-ShareAlike 4.0 International License.
// Terms - https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode
// GLOBAL STYLING
// using A4 page size and setting a 1.5cm square margin
#set page(
paper: "... |
https://github.com/MALossov/YunMo_Doc | https://raw.githubusercontent.com/MALossov/YunMo_Doc/main/template/report_title.typ | typst | Apache License 2.0 | #import "font.typ": *
#import "../contents/info.typ": *
#let report_title(title: "", authors: (), body) = {
// Set the document's basic properties.
set document(author: authors, title: title)
// Set run-in subheadings, starting at level 3.
show heading: it => {
if it.level > 2 {
parbreak()
tex... |
https://github.com/AU-Master-Thesis/thesis | https://raw.githubusercontent.com/AU-Master-Thesis/thesis/main/sections/3-methodology/study-1/mod.typ | typst | MIT License | #import "../../../lib/mod.typ": *
== #study.H-1.full.n <s.m.study-1>
// This section will cover the approach chosen for reproducing the software implementation in the gbpplanner paper@gbpplanner. Focus is put on arguing for places where the internal workings of the reimplementation differs. Why the difference is ei... |
https://github.com/WhiteBlackGoose/typst-hello-world | https://raw.githubusercontent.com/WhiteBlackGoose/typst-hello-world/master/README.md | markdown | ## Get typst and make
Either by whatever or just with
```
nix develop
```
## Make
```
make
```
| |
https://github.com/lonkaars/typst-metalogo | https://raw.githubusercontent.com/lonkaars/typst-metalogo/master/README.md | markdown | MIT License | # typst-metalogo
Typeset LaTeX compiler logos in [typst](https://github.com/typst/typst).
## usage
From [./demo.typ](./demo.typ):
```typ
#import "@preview/metalogo:1.0.2": TeX, LaTeX, XeLaTeX, XeTeX, LuaLaTeX
#LaTeX is a typestting program based on #TeX. Some people use #XeLaTeX
(sometimes #XeTeX), or #LuaLaTeX to... |
https://github.com/ohmycloud/computer-science-notes | https://raw.githubusercontent.com/ohmycloud/computer-science-notes/main/Misc/two_columns.typ | typst | // #set par(first-line-indent: 2em)
#show heading.where(level: 2): it => {
[#it.body]
}
#let boxed_text(body: none, color: luma(240)) = {
set text(weight: "regular")
show: box.with(
fill: color,
inset: 0.4em,
radius: 3pt,
baseline: 0.4em,
width: 100%,
)
[#body]
}
#show heading.where(leve... | |
https://github.com/typst/packages | https://raw.githubusercontent.com/typst/packages/main/packages/preview/chronos/0.1.0/src/group.typ | typst | Apache License 2.0 | #import "@preview/cetz:0.2.2": draw
#import "consts.typ": *
#let _grp(name, desc: none, type: "default", elmts) = {
return ((
type: "grp",
name: name,
desc: desc,
grp-type: type,
elmts: elmts
),)
}
#let render(x0, x1, y0, y1, group) = {
let shapes = ()
let name = text(group.name, weight: "... |
https://github.com/k0tran/typst | https://raw.githubusercontent.com/k0tran/typst/sisyphus/vendor/svg2pdf/CHANGELOG.md | markdown | # Changelog
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [0.10.0]
### Added
- Added ability to list the available fonts ... | |
https://github.com/dashuai009/dashuai009.github.io | https://raw.githubusercontent.com/dashuai009/dashuai009.github.io/main/src/content/blog/022.typ | typst | #let date = datetime(
year: 2022,
month: 3,
day: 14,
)
#metadata((
title: "生成函数",
subtitle: [生成函数,math],
author: "dashuai009",
description: "生成函数",
pubDate: date.display(),
))<frontmatter>
#import "../__template/style.typ": conf
#show: conf
== 普通生成函数
<普通生成函数>
$ F (x) = sum_n a_n a^n (n gt.eq 0) $
===... | |
https://github.com/7sDream/fonts-and-layout-zhCN | https://raw.githubusercontent.com/7sDream/fonts-and-layout-zhCN/master/chapters/04-opentype/exploring/exploring.typ | typst | Other | #import "/template/template.typ": web-page-template
#import "/template/components.typ": note
#import "/lib/glossary.typ": tr
#show: web-page-template
// ## Exploring OpenType with `ttx`
== 借助 `ttx` 探索 OpenType 字体
// To begin investigating how OpenType works, I started by creating a completely empty font in Glyphs, ... |
https://github.com/PhilChodrow/cv | https://raw.githubusercontent.com/PhilChodrow/cv/main/src/content/talks.typ | typst | #import "../template.typ": *
#cvSection("Invited Talks")
#box(height: 55em,
columns(2, gutter: 16pt)[
#miniheader("Dynamics of Gender Representation in Professional Mathematics")
#table(
columns: 2,
stroke: none,
align: (right, left),
[2024], [Tufts University Applied Mathematics Seminar],
)... | |
https://github.com/Kasci/LiturgicalBooks | https://raw.githubusercontent.com/Kasci/LiturgicalBooks/master/CSL_old/oktoich/Hlas2/2_Utorok.typ | typst | #let V = (
"HV": (
("", "Jehdá ot dréva", "Jedíne bezhríšne Christé, jedíne nezlóbivyj, jedíne istóčniče bláhosti, vížď mojé sťisnénije, vížď skórb mojú: i jázvy strúp mojích očísti vsjá i mílostiju tvojéju spasí rabá tvojehó: jáko da ľínosti óblaki daléče othnáv, slávľu ťá prebláháho Spása mojehó."),
("", ""... | |
https://github.com/jgm/typst-hs | https://raw.githubusercontent.com/jgm/typst-hs/main/test/typ/compiler/let-03.typ | typst | Other | // Ref: false
// Simple destructuring.
#let (a, b) = (1, 2)
#test(a, 1)
#test(b, 2)
|
https://github.com/Thumuss/brainfuck | https://raw.githubusercontent.com/Thumuss/brainfuck/main/README.md | markdown | MIT License | # Brainf
> A brainfuck implementation in pure Typst
# Examples
## In pure brainfuck
```typst
#import "@preview/brainf:1.0.0": brainf;
#brainf("++++++++[>++++[>++>+++>+++>+<<<<-]>+>+>->>+[<]<-]>>.>---.+++++++..+++.>>.<-.<.+++.------.--------.>>+.>++.");
```
Into
[]
#text(font: ())[]
#text(font: ("Test",))[]
#let x = "Test"
#text(font: x)[]
#let y = ("Test",)
#text(font: y)[] |
https://github.com/MrToWy/Bachelorarbeit | https://raw.githubusercontent.com/MrToWy/Bachelorarbeit/master/Code/sassMain.typ | typst | ```sass
.centerText
text-align: center
.clickable
cursor: pointer
.flex
display: flex
justify-content: center
align-items: center
``` | |
https://github.com/SkytAsul/INSA-Typst-Template | https://raw.githubusercontent.com/SkytAsul/INSA-Typst-Template/main/README.md | markdown | MIT License | <p align="center">
<img alt="Typst" src="https://img.shields.io/badge/Typst-239DAD?style=for-the-badge&logo=typst&logoColor=FFFFFF"/>
<img alt="GitHub License" src="https://img.shields.io/github/license/SkytAsul/INSA-Typst-Template?style=for-the-badge"/>
</p>
<p align="center">
<a href="https://typst.app/un... |
https://github.com/cetz-package/cetz-venn | https://raw.githubusercontent.com/cetz-package/cetz-venn/master/src/lib.typ | typst | Apache License 2.0 | #let version = version(0,1,1)
#import "/src/venn.typ": venn2, venn3
|
https://github.com/MaxAtoms/T-705-ASDS | https://raw.githubusercontent.com/MaxAtoms/T-705-ASDS/main/main.typ | typst | #import "template.typ": project, example, note
#import "boxes.typ": definition
#show: project.with(
title: "Applied Statistics\nfor Data Science",
header-title: "T-705 Applied Statistics for Data Science",
subtitle: "Lecture Notes",
university: [Reyjkavík University],
faculty: [Department of Compu... | |
https://github.com/hei-templates/hevs-typsttemplate-thesis | https://raw.githubusercontent.com/hei-templates/hevs-typsttemplate-thesis/main/03-tail/glossary.typ | typst | MIT License | //-----------------------------------------------------------------------------
// Glossary
//
#let gls-scrum=(name:[Scrum], description:[Scrum is an agile process framework for managing complex knowledge work, with an initial emphasis on software development, although it has been used in other fields and is slowly sta... |
https://github.com/DashieTM/ost-5semester | https://raw.githubusercontent.com/DashieTM/ost-5semester/main/patterns/weeks/week1.typ | typst | #import "../../utils.typ": *
#section("Pattern Definition")
- addresses a common problem
- specifically why a problem is hard (*forces*)
- *generic solutions* that can be adapted
- describes benefits and liabilities
- gets a name, so we can talk about it
Note:
- patterns often depend on each other
- sometimes ext... | |
https://github.com/Wybxc/typst-nix | https://raw.githubusercontent.com/Wybxc/typst-nix/main/examples/slide.typ | typst | Apache License 2.0 | #import "@preview/polylux:0.3.1": *
#import themes.university: *
#show: university-theme.with(
short-author: "Short author",
short-title: "Short title",
short-date: "Short date",
)
#title-slide(
authors: ("<NAME>", "<NAME>"),
title: "Title",
subtitle: "Subtitle",
date: "Date",
institution-name: "Unive... |
https://github.com/AU-Master-Thesis/thesis | https://raw.githubusercontent.com/AU-Master-Thesis/thesis/main/sections/2-background/mod.typ | typst | MIT License | #import "../../lib/mod.typ": *
= Background <background>
// This section presents the relevant theory made use of for the thesis. First a technical introduction to the underlying theory is covered. In @s.b.gaussian-models and #numref(<s.b.probabilistic-inference>), Gaussian models and probabilistic inference are intro... |
https://github.com/jgm/typst-hs | https://raw.githubusercontent.com/jgm/typst-hs/main/test/typ/compiler/let-00.typ | typst | Other | // Automatically initialized with none.
#let x
#test(x, none)
// Manually initialized with one.
#let z = 1
#test(z, 1)
// Syntax sugar for function definitions.
#let fill = green
#let f(body) = rect(width: 2cm, fill: fill, inset: 5pt, body)
#f[Hi!]
|
https://github.com/typst/packages | https://raw.githubusercontent.com/typst/packages/main/packages/preview/unichar/0.1.0/ucd/block-25A0.typ | typst | Apache License 2.0 | #let data = (
("BLACK SQUARE", "So", 0),
("WHITE SQUARE", "So", 0),
("WHITE SQUARE WITH ROUNDED CORNERS", "So", 0),
("WHITE SQUARE CONTAINING BLACK SMALL SQUARE", "So", 0),
("SQUARE WITH HORIZONTAL FILL", "So", 0),
("SQUARE WITH VERTICAL FILL", "So", 0),
("SQUARE WITH ORTHOGONAL CROSSHATCH FILL", "So", 0)... |
https://github.com/TypstApp-team/typst | https://raw.githubusercontent.com/TypstApp-team/typst/master/docs/roadmap.md | markdown | Apache License 2.0 | ---
description: What we have planned for Typst.
---
# Roadmap
This page lists planned features for the Typst language, compiler, library and
web app. Since priorities and development realities change, this roadmap is not
set in stone. Features that are listed here will not necessarily be implemented
and features that... |
https://github.com/sitandr/typst-examples-book | https://raw.githubusercontent.com/sitandr/typst-examples-book/main/src/packages/math.md | markdown | MIT License | # Math
## General
### `physica`
> Physica (Latin for _natural sciences_) provides utilities that simplify
> otherwise complex and repetitive mathematical expressions in natural sciences.
> Its [manual](https://github.com/Leedehai/typst-physics/blob/master/physica-manual.pdf)
> provides a full set of demonstrations o... |
https://github.com/dadn-dream-home/documents | https://raw.githubusercontent.com/dadn-dream-home/documents/main/contents/02-phan-tich-yeu-cau/index.typ | typst | = Phân tích yêu cầu
Nhóm chia làm các yêu cầu chức năng và yêu cầu phi chức năng.
== Yêu cầu chức năng
Nhóm đề xuất các yêu cầu phi chức năng như sau:
- Đo độ sáng, độ ẩm, nhiệt độ trong phòng.
- Hiển thị các giá trị đo được trên màn hình LCD.
- Điều khiển thiết bị trong phòng.
- Hiển thị các giá trị đo được trên a... | |
https://github.com/jgm/typst-hs | https://raw.githubusercontent.com/jgm/typst-hs/main/test/typ/compiler/array-31.typ | typst | Other | // Error: 2-20 cannot join string with integer
#("a", "b").join(1)
|
https://github.com/wangjiezhe/typst-syntax | https://raw.githubusercontent.com/wangjiezhe/typst-syntax/main/README.md | markdown | Apache License 2.0 | # Typst Syntax
This is seperated from [tinymist](https://github.com/Myriad-Dreamin/tinymist).
What I need is to work with [Shift-IM-for-VSCode](https://github.com/wangjiezhe/Shift-IM-for-VSCode) to automatically change IME condition in Typst file. It does work on Windows, but when I use WSL, it does not!
The reason ... |
https://github.com/VisualFP/docs | https://raw.githubusercontent.com/VisualFP/docs/main/SA/design_concept/content/introduction/goals.typ | typst | #import "../../../acronyms.typ": *
= Goals <goals>
The goal of this student research project is to design a tool, VisualFP, that allows the
graphical development of functional code and is block-based.
The target audience of VisualFP are students learning to program.
The core functionality of VisualFP will be impleme... | |
https://github.com/jujimeizuo/ZJSU-typst-template | https://raw.githubusercontent.com/jujimeizuo/ZJSU-typst-template/master/contents/acknowledgement.typ | typst | Apache License 2.0 | 完成本篇论文之际,我要向许多人表达我的感激之情。
首先,我要感谢我的指导教师,他/她对本文提供的宝贵建议和指导。所有这些支持和指导都是无私的,而且让我受益匪浅。
其次,我还要感谢我的家人和朋友们,他们一直以来都是我的支持和鼓励者。他们从未停止鼓舞我,勉励我继续前行,感谢你们一直在我身边,给我幸福和力量。
此外,我还要感谢我的同学们,大家一起度过了很长时间的学习时光,互相支持和鼓励,共同进步。因为有你们的支持,我才能不断地成长、进步。
最后,我想感谢笔者各位,你们的阅读和评价对我非常重要,这也让我意识到了自己写作方面的不足,同时更加明白了自己的研究方向。谢谢大家!
再次向所有支持和鼓励我的人表达我的谢意和感激之情。
本致谢... |
https://github.com/tymbalodeon/job-application | https://raw.githubusercontent.com/tymbalodeon/job-application/main/src/cover-letter.typ | typst | #import "_content.typ": cover-letter-content, name
#set page(paper: "us-letter")
#set text(11pt)
#set par(justify: true)
#include "_header.typ"
#v(-0.5em)
#line(length: 100%)
#v(0.5em)
Dear Hiring Manager,
\
\
#cover-letter-content
\
Sincerely,\
#emph(name)
| |
https://github.com/SWATEngineering/Docs | https://raw.githubusercontent.com/SWATEngineering/Docs/main/src/2_RTB/VerbaliInterni/VerbaleInterno_231124/meta.typ | typst | MIT License | #let data_incontro = "24-11-2023"
#let inizio_incontro = "11:00"
#let fine_incontro = "11:30"
#let luogo_incontro = "Chiamata Discord" |
https://github.com/0xPARC/0xparc-intro-book | https://raw.githubusercontent.com/0xPARC/0xparc-intro-book/main/summer-notes-evan/src/0812-math-seminar.typ | typst | #import "@local/evan:1.0.0":*
= Math seminar for August 12: Binius (<NAME>)
== Synopsis
One of the annoyances about our cryptographic ecosystem right now is they
often have different underlying base fields.
For example, one system might use a 128-bit prime while the other uses a 256-bit prime.
And then you have to f... | |
https://github.com/Az-21/typst-components | https://raw.githubusercontent.com/Az-21/typst-components/main/style/1.0.0/style.typ | typst | Creative Commons Zero v1.0 Universal | #import "dependencies.typ": *
#import "Colors/m3.typ": *
#import "Components/_components.typ": *
// @override default style
#import "override.typ": *
|
https://github.com/m4cey/mace-typst | https://raw.githubusercontent.com/m4cey/mace-typst/main/math.typ | typst | #import "./math/logic.typ" as logic
| |
https://github.com/teamdailypractice/pdf-tools | https://raw.githubusercontent.com/teamdailypractice/pdf-tools/main/typst-pdf/examples/example-07.typ | typst | #image("images/Glacier-640px.jpg", width: 70%)
| |
https://github.com/herbhuang/utdallas-thesis-template-typst | https://raw.githubusercontent.com/herbhuang/utdallas-thesis-template-typst/main/content/proposal/problem.typ | typst | MIT License | #import "/utils/todo.typ": TODO
= Problem
#TODO[ // Remove this block
*Problem description*
- What is/are the problem(s)?
- Identify the actors and use these to describe how the problem negatively influences them.
- Do not present solutions or alternatives yet!
- Present the negative consequences in detail ... |
https://github.com/herbhuang/utdallas-thesis-template-typst | https://raw.githubusercontent.com/herbhuang/utdallas-thesis-template-typst/main/content/evaluation.typ | typst | MIT License | #import "/utils/todo.typ": TODO
= Case Study / Evaluation
#TODO[
If you did an evaluation / case study, describe it here.
]
== Design
#TODO[
Describe the design / methodology of the evaluation and why you did it like that. e.g. what kind of evaluation have you done (e.g. questionnaire, personal interviews, simul... |
https://github.com/VectorFrankenstein/Resume | https://raw.githubusercontent.com/VectorFrankenstein/Resume/main/README.md | markdown | # Resume
My resume in typst, could be your too (: !
This code-base was heavily inspired by [this repo](https://github.com/jskherman/imprecv) from [jskherman](https://github.com/jskherman).
Ever since I was introduced to LaTeX, I had an idea in the back of my mind: a resume setup that separates the information from t... | |
https://github.com/xkevio/parcio-typst | https://raw.githubusercontent.com/xkevio/parcio-typst/main/parcio-slides/main.typ | typst | MIT License | #import "template/parcio.typ": *
// See template file > Helper Functions for extra stuff!
#show: parcio-theme.with()
#set text(size: 20pt)
#title-slide(
title: "Title",
subtitle: "Subtitle",
author: (name: "Author", mail: "<EMAIL>"),
date: datetime.today().display("[month repr:long] [day], [year]"),
extra: ... |
https://github.com/Tiggax/zakljucna_naloga | https://raw.githubusercontent.com/Tiggax/zakljucna_naloga/main/src/sec/2namen.typ | typst | #set heading(offset: 2)
The purpose of this thesis is to investigate the application of mathematical modeling in the optimization of bioreactors, a critical component in the field of biotechnology.
The primary focus will be on elucidating the effectiveness of this interdisciplinary approach in improving bioreactors ef... | |
https://github.com/SWATEngineering/Docs | https://raw.githubusercontent.com/SWATEngineering/Docs/main/src/2_RTB/PianoDiProgetto/sections/Consuntivo.typ | typst | MIT License | #import "../functions.typ": glossary, team
= Consuntivo
Si esaminano attentamente le risorse effettivamente impiegate durante ciascuno #glossary[sprint], confrontandole con le previsioni iniziali. Attraverso questa analisi, si vogliono identificare eventuali scostamenti dal piano iniziale e reagire di conseguenza, in... |
https://github.com/jneug/typst-nassi | https://raw.githubusercontent.com/jneug/typst-nassi/main/assets/example-cetz-2.typ | typst | MIT License | #import "@preview/cetz:0.2.2"
#import "../src/nassi.typ"
#set page(width: 13cm, height:auto, margin: 5mm)
#cetz.canvas({
import nassi.draw: diagram
import nassi.elements: *
import cetz.draw: *
diagram((4,4), {
function("ggt(a, b)", {
loop("a > b and b > 0", {
branch("a > b", {
ass... |
https://github.com/polarkac/MTG-Stories | https://raw.githubusercontent.com/polarkac/MTG-Stories/master/stories/053%20-%20Wilds%20of%20Eldraine/005_Episode%205%20Broken%20Oaths.typ | typst | #import "@local/mtgstory:0.2.0": conf
#show: doc => conf(
"Episode 5 Broken Oaths",
set_name: "Wilds of Eldraine",
story_date: datetime(day: 14, month: 08, year: 2023),
author: "<NAME>",
doc
)
#v(0.35em)
#line(length: 100%, stroke: rgb(90%, 90%, 90%))
#v(0.35em)
Child Kellan to the castle ruins co... | |
https://github.com/tingerrr/subpar | https://raw.githubusercontent.com/tingerrr/subpar/main/src/default.typ | typst | MIT License | // NOTE: we avoid a possible syntax error in the future when custom elements are added and self may become a keyword by appending an underscore
#let _resolve(elem, it, field) = {
if it.has(field) {
it.at(field)
} else {
// we can't func.at(field) to resolve the field
// eval(repr(elem) + "." + field)
... |
https://github.com/barddust/Kuafu | https://raw.githubusercontent.com/barddust/Kuafu/main/src/Meta/intro.typ | typst | = 前言
元认知是“对认知的认知”或“关于知识的知识”,它考查的是我们如何去思考等关于思维本身的问题,我们常说的“学习方法”、“学习习惯”等就属于元认知类知识。
然而我把一些生活习惯或者技巧一并归类至此,理由是我认为那些方法论都是为学习服务,它们可以指导或者优化我们的学习过程。比方说关于睡觉、饮食,合理调控使得我们的心情愉悦,更容易集中注意,进入心流#footnote[并没有查过相关的资料,我理解的心流就是一种完全专注的状态,此时能够全神贯注,不易受环境的干扰]的状态,提高我们的学习效率。
事实上,学习方法是可以学的,而学习习惯也是基于这些方法去培养,在学习的过程中时刻提醒自己。这也是各种各样的讲座、座谈会的由来,讨论的问题就... | |
https://github.com/Karolinskis/KTU-typst | https://raw.githubusercontent.com/Karolinskis/KTU-typst/main/mainPages/TableList.typ | typst | #page(header: none)[
#align(center)[
= Lentelių sąrašas
]
#outline(
title: "", target: figure.where(kind: table)
)
] | |
https://github.com/polarkac/MTG-Stories | https://raw.githubusercontent.com/polarkac/MTG-Stories/master/stories/041%20-%20Kaldheim/008_Direction.%20Purpose.%20Honor.%20Glory..typ | typst | #import "@local/mtgstory:0.2.0": conf
#show: doc => conf(
"Direction. Purpose. Honor. Glory.",
set_name: "Kaldheim",
story_date: datetime(day: 29, month: 01, year: 2021),
author: "<NAME>",
doc
)
Ranar opened his eyes to find himself in an inglorious place. The old warrior lay on his back, though he... | |
https://github.com/Rhinemann/mage-hack | https://raw.githubusercontent.com/Rhinemann/mage-hack/main/src/chapters/Paradox.typ | typst | #import "../templates/interior_template.typ": *
#show: chapter.with(chapter_name: "Paradox")
= Paradox
#show: columns.with(2, gutter: 1em)
Paradox is the collective force of consensual reality fighting back against the enlightened will of the mage.
A useful analogy is to imagine the Tellurian as a huge body of wate... | |
https://github.com/pedrofp4444/BD | https://raw.githubusercontent.com/pedrofp4444/BD/main/report/content/[2] Levantamento e Análise de Requisitos/main.typ | typst | #import "metodo.typ": metodo
#import "organizacao.typ": organizacao
#import "validacao.typ": validacao
#let requisitos = {
[
= Levantamento e Análise de Requisitos
Na sequência do decorrer das etapas do desenvolvimento, surge a necessidade de um levantamento, organização e efetivação concreta dos requisitos... | |
https://github.com/SidneyLYZhang/learnTypst | https://raw.githubusercontent.com/SidneyLYZhang/learnTypst/main/README.md | markdown | # README
主体由 [Typst](https://typst.app) 的官方教程翻译而来。以及一部分我自己觉得有用/常用的脚本和模板。
同时,这个仓库也是我练习Typst的一个记录。
## 翻译内容
翻译以下内容:
1. [Tutorial > Writing in Typst](https://typst.app/docs/tutorial/writing-in-typst/) - [001_使用Typst写作](Documentation/Sources/001_writing-in-typst.typ) ([PDF-草稿](Documentation/PDF/001_使用Typst写作.pdf)) _las... | |
https://github.com/kotfind/hse-se-2-notes | https://raw.githubusercontent.com/kotfind/hse-se-2-notes/master/edu/lectures/2024-09-04.typ | typst | = Введение
<NAME>
`<EMAIL>`
Будем изучать образование сверху вниз (от ВУЗа до детского сада)
Психологию обручения разных возрастов будем изучать в порядке от младших к
старшим
| |
https://github.com/HarryLuoo/sp24 | https://raw.githubusercontent.com/HarryLuoo/sp24/main/Physics311/reviewNotes/part2.typ | typst | #set math.equation(numbering:"1",)
#import "@preview/wrap-it:0.1.0": wrap-content
= Small Oscillations
- Motion near a point of stable equilibrium.
== DOF= 1 (one dimension)
- For a system of DOF = 1, with potential $U(q)$:
- *stable equilibrium* at $U(q)_min$, upward parabola, where $F = -(dif U)/(dif q )= 0 $
... | |
https://github.com/SkytAsul/fletchart | https://raw.githubusercontent.com/SkytAsul/fletchart/main/src/deps.typ | typst | #import "@preview/fletcher:0.5.1" as fletcher
#import fletcher.deps.cetz as cetz | |
https://github.com/Tweoss/math_scratch | https://raw.githubusercontent.com/Tweoss/math_scratch/main/example/example.typ | typst | #import "../template.typ": *
#show: homework.with(
class: "MATH 62CM",
number: 9,
date: "March 2023"
)
#problem[
Let $gamma = (gamma_1, gamma_2): [0, 2pi] -> RR^2 \\ {(-1, 0), (1, 0)}$ be a loop such that its winding number around the point $(-1, 0)$ is equal to $2$, and its winding number around the point $(1... | |
https://github.com/jgm/typst-hs | https://raw.githubusercontent.com/jgm/typst-hs/main/test/typ/compiler/dict-08.typ | typst | Other | // Simple expression after already being identified as a dictionary.
// Error: 9-10 expected named or keyed pair, found identifier
#(a: 1, b)
// Identified as dictionary due to initial colon.
// Error: 4-5 expected named or keyed pair, found integer
// Error: 5 expected comma
// Error: 12-16 expected identifier or str... |
https://github.com/Jollywatt/typst-fletcher | https://raw.githubusercontent.com/Jollywatt/typst-fletcher/master/tests/edge-poly/test.typ | typst | MIT License | #set page(width: auto, height: auto, margin: 1em)
#import "/src/exports.typ" as fletcher: diagram, node, edge
#for radius in (none, 0pt, 10pt) {
diagram(
mark-scale: 150%,
node((0,0), $A$),
edge(">->", vertices: (
(0,0),
(1.1,0),
(1,1),
(3,2),
(4,1),
(1.3,2),
(2,0),
(3,0),
(2,1),
),... |
https://github.com/Kasci/LiturgicalBooks | https://raw.githubusercontent.com/Kasci/LiturgicalBooks/master/CSL_old/oktoich/Hlas3/5_Piatok.typ | typst | #let V = (
"HV": (
("", "Postáviša", "Hóspodi bezstrásten sýj božéstvennym jestestvóm tvojím, strásť preterpíl jesí, po jestestvú čelovíčeskomu tvojemú, na kresťí úbo prihvoždájem, kopijém že iskopovájem v rébra, istočája mňí dví ricí ot ních táinstv neizrečénnych."),
("", "", "Vincém ot térnija ispleténnym u... | |
https://github.com/typst/packages | https://raw.githubusercontent.com/typst/packages/main/packages/preview/tuhi-booklet-vuw/0.1.0/template/main.typ | typst | Apache License 2.0 | #import "@preview/tuhi-booklet-vuw:0.1.0": course-info, tuhi-booklet-vuw, sentence-case, fmt-email, fmt-person
#let info = json("teas.json")
#let info_school = yaml("info.yaml")
#show: tuhi-booklet-vuw.with(
author: "SPIRIT",
title: "Undergraduate courses",
date: datetime(year: 2024,month: 7, day: 3),
schoo... |
https://github.com/mariunaise/HDA-Thesis | https://raw.githubusercontent.com/mariunaise/HDA-Thesis/master/graphics/quantizers/s-metric/2_2_find_quantizer.typ | typst | #import "@preview/cetz:0.2.2": canvas, plot, draw, decorations, vector
#let line_style = (stroke: (paint: black, thickness: 2pt))
#let dashed = (stroke: (dash: "dashed"))
#let dashed2 = (stroke: (dash: "dotted"))
#let markings = (stroke: (paint: red, thickness: 2pt), fill: red)
#canvas({
plot.plot(size: (8,6), name:... | |
https://github.com/binhtran432k/ungrammar-docs | https://raw.githubusercontent.com/binhtran432k/ungrammar-docs/main/contents/literature-review/monaco.typ | typst | #import "/components/glossary.typ": gls
== Monaco Editor
<sec-monaco>
The Monaco Editor, renowned as the foundation of #gls("vscode") (@sec-vscode),
has emerged as a versatile and performant text editing component. While
primarily recognized for its role within the #gls("vscode") ecosystem, the
Monaco Editor ... | |
https://github.com/sitandr/typst-examples-book | https://raw.githubusercontent.com/sitandr/typst-examples-book/main/src/typstonomicon/word_count.md | markdown | MIT License | # Word count
<div class="warning">This chapter is deprecated now. It will be removed soon.</div>
## Recommended solution
Use `wordometr` [package](https://github.com/Jollywatt/typst-wordometer):
```typ
#import "@preview/wordometer:0.1.0": word-count, total-words
#show: word-count
In this document, there are #tota... |
https://github.com/5eqn/osa-fp-talk | https://raw.githubusercontent.com/5eqn/osa-fp-talk/main/show.typ | typst | #import "template.typ": *
#show: project.with(
title: "如何用 143 行代码搓出新编程语言?",
authors: (
"5eqn",
),
)
= 前言
#figure(
image("res/tenet.png", width: 80%),
caption: [
《信条》剧照 / 不要试图理解它,要感受它
],
)
#pagebreak()
== 导语
#figure(
image("res/lang.png", width: 80%),
caption: [
?
],
)
#pagebreak()
... | |
https://github.com/RaphGL/ElectronicsFromBasics | https://raw.githubusercontent.com/RaphGL/ElectronicsFromBasics/main/DC/chap3/3_shock_current_path.typ | typst | Other | #import "../../core/core.typ"
=== Shock Current Path
As we've already learned, electricity requires a complete path (circuit) to continuously flow.
This is why the shock received from static electricity is only a momentary jolt: the flow of electrons is necessarily brief when static charges are equalized between two ... |
https://github.com/wenzlawski/typst-cv | https://raw.githubusercontent.com/wenzlawski/typst-cv/main/modules/education.typ | typst | Apache License 2.0 | #import "../brilliant-CV/template.typ": *
#cvSection("Education")
#cvEntry(
title: [Bachelors of Science in Computer Science],
society: [University of Manchester],
date: [2020 - 2023],
location: [Manchester, UK],
description: list(
[Thesis: Language Models as Tutors: Grading Argument Quality... |
https://github.com/kaarmu/typst.vim | https://raw.githubusercontent.com/kaarmu/typst.vim/main/README.md | markdown | MIT License | # typst.vim
*OBS: Work In Progress*
(Neo)vim plugin for [Typst](https://typst.app).
I am applying the 80/20 rule in this project since I prefer to have
something now rather than waiting for everything later.
## Features

#show: sustech-thesis.with(
isCN: true,
information: (
title: (
[第一行],
[第二行],
[第三行],
),
subtitle:... |
https://github.com/PhilChodrow/cv | https://raw.githubusercontent.com/PhilChodrow/cv/main/src/content/college-service.typ | typst | #import "../template.typ": *
#cvSection("Institutional Service")
#cvSubSection("Committee Membership")
#cvEntry(
title: [Ad Hoc Committee on Curricular Requirements],
organisation: [Middlebury College],
logo: "",
date: [2024-],
location: [Middlebury, VT]
)
#cvEntry(
title: [Steering Committe... | |
https://github.com/TypstApp-team/typst | https://raw.githubusercontent.com/TypstApp-team/typst/master/tests/typ/compiler/modules/chap1.typ | typst | Apache License 2.0 | // Ref: false
#let name = "Klaus"
== Chapter 1
#name stood in a field of wheat. There was nothing of particular interest about
the field #name just casually surveyed for any paths on which the corn would not
totally ruin his semi-new outdorsy jacket but then again, most of us spend
considerable time in non-descript e... |
https://github.com/polarkac/MTG-Stories | https://raw.githubusercontent.com/polarkac/MTG-Stories/master/stories/042%20-%20Strixhaven%3A%20School%20of%20Mages/004_Episode%203%3A%20Extracurriculars.typ | typst | #import "@local/mtgstory:0.2.0": conf
#show: doc => conf(
"Episode 3: Extracurriculars",
set_name: "Strixhaven: School of Mages",
story_date: datetime(day: 07, month: 04, year: 2021),
author: "<NAME>",
doc
)
Looking out the window over his desk, Will could see the winds of autumn stirring fallen le... | |
https://github.com/deadManAlive/ui-thesis-typst-template | https://raw.githubusercontent.com/deadManAlive/ui-thesis-typst-template/master/chapters/ch1.typ | typst | = Pendahuluan <intro>
== <NAME>
#lorem(100)
#figure(
image("assets/feynman_diagram.png", width: 50%),
caption: [Feynman Diagram],
) <feynman>
#lorem(100) @lamport1986latex
#lorem(50)
#lorem(100)
$ L=L_0 + N log_10 d/d_0 + L_f (n) $
$ L=L_0 + 10 gamma log_10 d/d_0 + chi $ | |
https://github.com/lukejcollins/cv | https://raw.githubusercontent.com/lukejcollins/cv/main/english.typ | typst | MIT License | #import "cv.typ": cv, experience, skill, list_interests
#import "@preview/fontawesome:0.1.0": *
#cv(
name: "<NAME>",
links: (
(link: "mailto:<EMAIL>", icon: fa-at()),
(link: "https://github.com/lukejcollins", display: "lukejcollins", icon: fa-github()),
(link: "https://www.linkedin.com/in/luke-j-collin... |
https://github.com/N4tus/uf_algo | https://raw.githubusercontent.com/N4tus/uf_algo/main/algo.typ | typst | MIT License | #import "algo_base.typ": control_flow, expr, constant, algo, append_content
#let For(vars, container) = control_flow("for", vars, container)
#let While( condition) = control_flow("while", condition)
#let If( condition) = control_flow("if", condition)
#let Switch(condition) = control_flow("switch", c... |
https://github.com/gongke6642/tuling | https://raw.githubusercontent.com/gongke6642/tuling/main/布局/length/length.typ | typst | = length
大小或距离,可能用上下文单位表示。
Typst 支持以下长度单位:
- 点:72pt
- 毫米:254mm
- 厘米:2.54cm
- 英寸:1in
- 相对于字体大小:2.5em
您可以将长度与整数和浮点数相乘,也可以将它们除以整数和浮点数。
-- 例
#image("屏幕截图 2024-04-16 155815.png")
#image("屏幕截图 2024-04-16 155922.png")
#image("屏幕截图 2024-04-16 155958.png") | |
https://github.com/Scriptor25/Seminararbeit | https://raw.githubusercontent.com/Scriptor25/Seminararbeit/master/main.typ | typst | #import "template.typ": *
// Take a look at the file `template.typ` in the file panel
// to customize this template and discover how it works.
#show: project.with(
title: "Die biologischen Wirkungen radioaktiver Strahlung",
author: "<NAME>",
school: "Willibald-Gluck-Gymnasium",
location: "Neumarkt in der Oberp... | |
https://github.com/RaphGL/ElectronicsFromBasics | https://raw.githubusercontent.com/RaphGL/ElectronicsFromBasics/main/DC/chap1/7_conventional_electron_flow.typ | typst | Other | === Conventional electron flow
#quote(attribution: [<NAME>, computer science professor], block: true)[
The nice thing about standards is that there are so many of them to choose from.
]
When <NAME> made his conjecture regarding the direction of charge flow (from the smooth wax to the rough wool), he set a precedent... |
https://github.com/crd2333/crd2333.github.io | https://raw.githubusercontent.com/crd2333/crd2333.github.io/main/src/docs/Reading/跟李沐学AI(论文)/DALLE2.typ | typst | // ---
// order: 32
// ---
#import "/src/components/TypstTemplate/lib.typ": *
#show: project.with(
title: "d2l_paper",
lang: "zh",
)
= Hierarchical Text-Conditional Image Generation with CLIP Latents
- 时间:2022.4
== 标题 & 摘要 & 引言
- 技术路线:DALLE $->$ CogView $->$ NVWA $->$ GLIDE(OpenAI) $->$ ERNIE-ViLG $->$ DALLE2 $... | |
https://github.com/Myriad-Dreamin/typst.ts | https://raw.githubusercontent.com/Myriad-Dreamin/typst.ts/main/docs/cookery/direction/main.typ | typst | Apache License 2.0 | #import "mod.typ": *
#show: book-page.with(title: "Technical Directions")
#include "main-content.typ"
|
https://github.com/rabotaem-incorporated/algebra-conspect-1course | https://raw.githubusercontent.com/rabotaem-incorporated/algebra-conspect-1course/master/sections/01-number-theory/09-fundamental-th-of-arithm.typ | typst | Other | #import "../../utils/core.typ": *
== Основная теорема арифметики
#th[
Пусть $n >= 2$. Тогда $n$ можно представить в виде произведения простых чисел, и такое представление единственно с точностью до порядка сомножителей.
]
#proof[
"Существование":
Пусть $n_0$ --- наименьшее число $(>= 2)$, д... |
https://github.com/julius2718/entempura | https://raw.githubusercontent.com/julius2718/entempura/main/0.0.1/template/template.typ | typst | MIT License | #import "../main.typ": *
|
https://github.com/yhtq/Notes | https://raw.githubusercontent.com/yhtq/Notes/main/复变函数/作业/hw10.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: note.with(
title: "作业10",
author: "YHTQ",
date: none,
logo: none,
withOutlined : false,
withTitle :false,
withHeadingNumbering: false
)
= p154
== 4
... | |
https://github.com/jgm/typst-hs | https://raw.githubusercontent.com/jgm/typst-hs/main/test/typ/compiler/while-03.typ | typst | Other | // Error: 8-25 condition is always true
#while 2 < "hello".len() {}
|
https://github.com/kotfind/hse-se-2-notes | https://raw.githubusercontent.com/kotfind/hse-se-2-notes/master/edu/seminars/2024-10-16.typ | typst | = Обратная связь в учебном процессе
Программа "genially"
== Что такое обратная связь?
<NAME> "Видимое Обучение"
Обратная связь --- коммуникативный обмен информацией о процессе достижения
поставленных целей
Обратная связь --- "правильно ли мы идем к цели"
Для того, чтобы давать нормальную обратную связь, нужно пос... | |
https://github.com/LDemetrios/Typst4k | https://raw.githubusercontent.com/LDemetrios/Typst4k/master/src/test/resources/suite/text/font.typ | typst | // Test configuring font properties.
--- text-font-properties ---
// Set same font size in three different ways.
#text(20pt)[A]
#text(2em)[A]
#text(size: 15pt + 0.5em)[A]
// Do nothing.
#text()[Normal]
// Set style (is available).
#text(style: "italic")[Italic]
// Set weight (is available).
#text(weight: "bold")[Bo... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.