repo stringlengths 26 115 | file stringlengths 54 212 | language stringclasses 2
values | license stringclasses 16
values | content stringlengths 19 1.07M |
|---|---|---|---|---|
https://github.com/v411e/optimal-ovgu-thesis | https://raw.githubusercontent.com/v411e/optimal-ovgu-thesis/main/abstract.typ | typst | MIT License | #import "components.typ": body-font, variable-pagebreak
#let oot-abstract(lang: "en", is-doublesided: none, body) = {
set text(lang: lang)
v(0.1fr)
align(center,
text(font: body-font, 1em, weight: "semibold",
if lang == "de" [Zusammenfassung]
else [Abstract]
)
)
linebreak()
text(... |
https://github.com/benjamineeckh/kul-typst-template | https://raw.githubusercontent.com/benjamineeckh/kul-typst-template/main/tests/test2/test2.typ | typst | MIT License | #import "../../src/lib.typ": template
#show: template.with(
// Your title goes here
title: "Doing some very fancy and complicated testing for some new and innovative thing",
// Give or only the year you started in (eg: 2024), or a tuple with the start and end year (eg: (2024, 2040))
academic-year: 2023,
/... |
https://github.com/chinabobo/resume-template | https://raw.githubusercontent.com/chinabobo/resume-template/main/README.md | markdown | MIT License | # resume-template
resume template by [Typst](https://typst.app).
## Showcases
 |
https://github.com/SillyFreak/typst-scrutinize | https://raw.githubusercontent.com/SillyFreak/typst-scrutinize/main/src/utils/scope.typ | typst | MIT License | #let scope(open, close, body, open-data: none, close-data: none) = {
[#metadata(open-data) #open]
body
[#metadata(close-data) #close]
}
#let enclosing(open, close, loc: auto) = {
let loc = loc
if loc == auto {
loc = here()
}
let find-delimiter(candidates, pos, neg) = {
let depth = 0
for cand... |
https://github.com/dainbow/MatGos | https://raw.githubusercontent.com/dainbow/MatGos/master/themes/14.typ | typst | #import "../conf.typ": *
= Теорема об ограниченной сходимости для интеграла Лебега
#definition[
Пусть $angle.l a, b angle.r$ -- конечный промежуток ($[a, b], (a, b), (a, b], [a, b)$)
*Брусом* в $RR^n$ назовём
#eq[
$P = times.big_(k = 1)^n angle.l a_k, b_k angle.r$
]
Объёмом бруса $P$ назовём число $abs(... | |
https://github.com/jgm/typst-hs | https://raw.githubusercontent.com/jgm/typst-hs/main/test/typ/compiler/closure-06.typ | typst | Other | // For loop bindings.
#{
let v = (1, 2, 3)
let f() = {
let s = 0
for v in v { s += v }
s
}
test(f(), 6)
}
|
https://github.com/brayevalerien/Learning-Typst | https://raw.githubusercontent.com/brayevalerien/Learning-Typst/main/tutorial/02_formatting/formating.typ | typst | MIT License | In this document, I learn more about formating in Typst.
These first two paragraphs are writen before any rule is set, so they are simply using the default formating.
= Setting rules
#par(justify: true)[
This paragraph, is justified. That's because I used the "par" function (called using "\#par"), with the argumen... |
https://github.com/rayfiyo/myTypst | https://raw.githubusercontent.com/rayfiyo/myTypst/main/README.md | markdown | BSD 3-Clause "New" or "Revised" License | # myTypst
- typst で色々な書類を書くためのテンプレート
- Template for writing any document with typst
## mystyle_report
- 私の環境でのレポート用
## note
- ノート(メモ)用
- 表紙がない
## report
- レポート用
## test
- 試験的に使うディレクトリ
---
# 参考文献
## GitHub
- [修論用のTypstのテンプレート](https://github.com/yukukotani/typst-coins-thesis)
- [日本語文書向け Typst テンプレート(大学生向け&自... |
https://github.com/akai-omurbek/Typst-CV | https://raw.githubusercontent.com/akai-omurbek/Typst-CV/main/README.md | markdown | # Simple one-page CV using [Typst](https://github.com/typst/typst)

Hi, everyone! This is my take on a reproducible CV powered by Typst. This one is very, ***very*** raw. I have to work on it a bit more in the future. The layout is optimal for one page (the main / sidebar separation) - otherwise ... | |
https://github.com/typst/packages | https://raw.githubusercontent.com/typst/packages/main/packages/preview/scholarly-tauthesis/0.4.0/template/preamble.typ | typst | Apache License 2.0 | /** preamble.typ
*
* A file for defining your own commands and functions. To use
* the commands defined here in another file, this file needs to
* be imported there:
*
* #import "path/to/preamble.typ": *
*
* imports all symbols without qualifying them, and
*
* #import "path/to/preamble.typ"
*
* requires... |
https://github.com/typst/packages | https://raw.githubusercontent.com/typst/packages/main/packages/preview/unichar/0.1.0/ucd/block-118A0.typ | typst | Apache License 2.0 | #let data = (
("WARANG CITI CAPITAL LETTER NGAA", "Lu", 0),
("WARANG CITI CAPITAL LETTER A", "Lu", 0),
("WARANG CITI CAPITAL LETTER WI", "Lu", 0),
("WARANG CITI CAPITAL LETTER YU", "Lu", 0),
("WARANG CITI CAPITAL LETTER YA", "Lu", 0),
("WARANG CITI CAPITAL LETTER YO", "Lu", 0),
("WARANG CITI CAPITAL LETTE... |
https://github.com/phinixplus/docs | https://raw.githubusercontent.com/phinixplus/docs/master/source/config.typ | typst | Other | #let font-sans = "IBM Plex Sans"
#let font-serif = "IBM Plex Serif"
#let font-mono = "Inconsolata Nerd Font"
#let text-fg-color = luma(15%)
#let interj-fg-color = luma(35%)
#let inv-text-fg-color = luma(100%)
#let text-weight-normal = 400
#let text-weight-bold = 700
#let heading-fg-color = luma(0%)
#let heading-weigh... |
https://github.com/andreasKroepelin/typst-notebook | https://raw.githubusercontent.com/andreasKroepelin/typst-notebook/main/README.md | markdown | MIT License | # Typst notebook

This is a small template to write a notebook using [Typst](https://typst.app).
## Getting started
Put the file `template-notebook.typ` in the directory where you want to store
your notebook.
Then, cr... |
https://github.com/Mc-Zen/tidy | https://raw.githubusercontent.com/Mc-Zen/tidy/main/examples/example-demo.typ | typst | MIT License | /// #set text(size: .9em)
/// ```/// #example(`example-demo.flashy[We like our code flashy]`)```
/// #example(`example-demo.flashy[We like our code flashy]`)
/// ```/// #example(`example-demo.flashy[Large previews will be scaled automatically to fit]`)```
/// #example(`example-demo.flashy[Large previews will be scal... |
https://github.com/QuadnucYard/cswc-lecture-report-typst | https://raw.githubusercontent.com/QuadnucYard/cswc-lecture-report-typst/main/README.md | markdown | MIT License | # 东南大学吴健雄学院人文讲座听课报告模板(Typst)
## 环境
Typst 0.11.1
需要系统字体支持:宋体,仿宋,微软雅黑,Times New Roman。
## 使用方法
考虑到其性质,本模板没有发布到官方渠道。
下载 `lib.typ` 和 `main.typ`,修改 `main.typ` 内容,填写讲座相关信息和报告正文。
主文件 `show` 语句后所有内容都会出现在表格正文部分。
```typ
// 修改讲座相关信息
#show: lec-report.with(
stu-id: "61520000",
stu-name: "漫游者",
time: "2024/04/01",
lo... |
https://github.com/sitandr/typst-examples-book | https://raw.githubusercontent.com/sitandr/typst-examples-book/main/src/snippets/layout/shapes.md | markdown | MIT License | # Shaped boxes with text
(I guess that will make a package eventually, but let it be a snippet for now)
```typ
/// author: JustForFun88
#import "@preview/oxifmt:0.2.0": strfmt
#let shadow_svg_path = `
<svg
width="{canvas-width}"
height="{canvas-height}"
viewBox="{viewbox}"
version="1.1"
xmlns="ht... |
https://github.com/ivaquero/book-control | https://raw.githubusercontent.com/ivaquero/book-control/main/02-传递函数.typ | typst | #import "@local/scibook:0.1.0": *
#show: doc => conf(
title: "传递函数",
author: ("ivaquero"),
header-cap: "现代控制理论",
footer-cap: "github@ivaquero",
outline-on: false,
doc,
)
= 传递函数
<传递函数>
== 弹簧阻尼系统
范式
$ F(s) H(s) = X(s) $
其中,
- $F(s)$:输入的 Laplace 变换
- $H(s)$:传递函数
- $X(s)$:输出的 Laplace 变换
对等号两边做 Laplace 逆变... | |
https://github.com/Zuttergutao/Typstdocs-Zh-CN- | https://raw.githubusercontent.com/Zuttergutao/Typstdocs-Zh-CN-/main/testfile/symbol.typ | typst | output all symbols
#math.dif
$ dif $
ss:
type: ieee
title: 这是某本书的参考表七日
author: 悟性, 王朝, 但是
| |
https://github.com/noahjutz/AD | https://raw.githubusercontent.com/noahjutz/AD/main/notizen/sortieralgorithmen/mergesort/merge_inplace.typ | typst | #import "/components/num_row.typ": num_row, arrowed
#let nums = (12, 23, 34, 34, 45, 7, 17, 18, 38, 43)
#let n = nums.len()
#let a1f = 0
#let a2f = calc.div-euclid(n, 2)
#let a1s(nums) = {
return nums.enumerate()
.filter(((i, x)) => x in (12, 23, 34, 45))
.map(((i, x)) => i)
}
#let a2s(nums) = {
return n... | |
https://github.com/dashuai009/dashuai009.github.io | https://raw.githubusercontent.com/dashuai009/dashuai009.github.io/main/src/content/__template/style.typ | typst | #let conf(doc) = {
let quote(body) = {
rect(fill: luma(240), stroke: (left: 0.25em))[
#body
]
}
show raw.line: it => {
text(fill: gray)[#it.number]
h(1em)
it.body
}
set text(font: ( "Noto Sans SC", "Source Han Sans"), lang: "zh", region: "cn")
set par(leading: 1em)
set page(wid... | |
https://github.com/galaxia4Eva/galaxia4Eva | https://raw.githubusercontent.com/galaxia4Eva/galaxia4Eva/main/notes/reading-lists/Software/Julia.md | markdown | # Organisational
1. https://julialang.org/community/
# Triage
1. [Home · JuliaNotes.jl](https://m3g.github.io/JuliaNotes.jl/stable/)
2. [Building static websites in Julia](https://franklinjl.org/)
- [OpenSourc.ES](https://opensourc.es/)
- [<NAME> | Moin.](https://ronnybergmann.net/)
- [<NAME>](https://fredr... | |
https://github.com/npujol/chuli-cv | https://raw.githubusercontent.com/npujol/chuli-cv/main/modules/languages.typ | typst | MIT License | #import "styles.typ": *
#let render-language(nivel: 2) = {
for k in range(0, 5) {
if k < nivel {
box(circle(
radius: language-style.radius,
fill: colors.accent,
))
}
else {
box(
circle(
radius: language-style.radius,
fill: colors.inactive,
... |
https://github.com/Kasci/LiturgicalBooks | https://raw.githubusercontent.com/Kasci/LiturgicalBooks/master/styleMoleben.typ | typst | #import "SK/texts.typ": *
#let velebenie(vozhlas, verse) = [
#header[Velebenie:]
#vozhlas
#note[(Opakuje sa po každom verši)]
#primText[Verše:]
#pad(left:30pt)[
#let c = counter("verse")
#c.update(1)
#table(
columns: (auto, auto),
stroke: none,
align: (x, y) => (r... | |
https://github.com/jgm/typst-hs | https://raw.githubusercontent.com/jgm/typst-hs/main/test/typ/compiler/import-12.typ | typst | Other | // Error: 9-20 file not found (searched at typ/compiler/lib/0.2.1)
#import "lib/0.2.1"
|
https://github.com/glambrechts/slydst | https://raw.githubusercontent.com/glambrechts/slydst/main/README.md | markdown | MIT License | # Slydst
Create simple static slides with Typst.
Slydst allows the creation of slides using Typst headings.
This simplicity comes at the expense of dynamic content such as subslide animations.
For more complete and complex slides functionalities, see other tools such as Polylux.
## Usage
To start, just use the foll... |
https://github.com/Woodman3/modern-ysu-thesis | https://raw.githubusercontent.com/Woodman3/modern-ysu-thesis/main/layouts/page-header.typ | typst | MIT License | #import "../utils/style.typ": 字号, 字体
#import "../utils/custom-numbering.typ": custom-numbering
#import "../utils/custom-heading.typ": heading-display, active-heading, current-heading,header-display
#import "../utils/unpairs.typ": unpairs
#let page-header(
twoside: false,
fonts: (:),
// 其他参数
numbering: custom-n... |
https://github.com/jordanqt327/Typst-Pruebas | https://raw.githubusercontent.com/jordanqt327/Typst-Pruebas/main/README.md | markdown | # Typst-Pruebas
Repositorio dedicado a experimentar y aprender el uso de Typst. Aquí se encuentran ejemplos, pruebas y ejercicios.
| |
https://github.com/drupol/master-thesis | https://raw.githubusercontent.com/drupol/master-thesis/main/src/thesis/accessibility.typ | typst | Other | #import "imports/preamble.typ": *
#pagebreak(weak: true)
#heading("Accessibility", level: 1, outlined: false)
This master thesis has been written with a focus on accessibility to ensure it
can be easily read and understood by a diverse audience, including individuals
with disabilities. The following measures have be... |
https://github.com/pank-su/report_3 | https://raw.githubusercontent.com/pank-su/report_3/master/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/rabotaem-incorporated/algebra-conspect-1course | https://raw.githubusercontent.com/rabotaem-incorporated/algebra-conspect-1course/master/sections/03-polynomials/02-deg-props.typ | typst | Other | #import "../../utils/core.typ": *
== Свойства степени
#pr[
$f, g in R[x], space deg f = m, space deg g = n$
+ #[
$deg(f + g) <= max(m, n)$
При этом: $m eq.not n ==> deg(f + g) = max(m, n)$
]
+ $deg(f g) <= m + n$
]
#proof[
+ #[
$f = limits(sum)_(i = 0)^m a_i X^... |
https://github.com/jgm/typst-hs | https://raw.githubusercontent.com/jgm/typst-hs/main/test/typ/meta/link-08.typ | typst | Other | // Link to page one.
#link((page: 1, x: 10pt, y: 20pt))[Back to the start]
|
https://github.com/lucannez64/Notes | https://raw.githubusercontent.com/lucannez64/Notes/master/Multiple%20Integrations.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: "Multiple Integrations",
authors: (
"<NAME>",
),
date: "30 Octobre, 2023",
)
#set heading(numbering: "1.1.")
= Multiple Integrations
<... | |
https://github.com/julyfun/typst-simple-report | https://raw.githubusercontent.com/julyfun/typst-simple-report/main/main.typ | typst | #import "simplepaper.typ": *
#show strong: set text(weight: 900) // Songti SC 700 不够粗
#show heading: set text(weight: 900)
#set text(
font: ("New Computer Modern", "Songti SC")
)
#show: project.with(
title: "交附闵分信奥暑期集训结果及后续安排",
)
= 信奥暑期集训情况
CCF 非专业能力认证提高组(CSP-S)和全国青少年信息学奥林匹克联赛(NOIP)将在 2024 年 9 月 21 日开始陆续举行,这两... | |
https://github.com/Shuenhoy/modern-zju-thesis | https://raw.githubusercontent.com/Shuenhoy/modern-zju-thesis/master/pages/undergraduate-task.typ | typst | MIT License | #import "../utils/fonts.typ": 字号, 字体
#import "../utils/datetime-display.typ": datetime-display
#import "../utils/twoside.typ": *
#import "./template-individual.typ": template-individual
#let undergraduate-task(info: (:), task, comment: none) = {
template-individual("本科生毕业论文(设计)任务书", outlined: true)[
#set text(si... |
https://github.com/jgm/typst-hs | https://raw.githubusercontent.com/jgm/typst-hs/main/test/typ/compiler/ops-01.typ | typst | Other | // Test math operators.
// Test plus and minus.
#for v in (1, 3.14, 12pt, 45deg, 90%, 13% + 10pt, 6.3fr) {
// Test plus.
test(+v, v)
// Test minus.
test(-v, -1 * v)
test(--v, v)
// Test combination.
test(-++ --v, -v)
}
#test(-(4 + 2), 6-12)
// Addition.
#test(2 + 4, 6)
#test("a" + "b", "ab")
#test("a... |
https://github.com/kiwiyou/algorithm-lecture | https://raw.githubusercontent.com/kiwiyou/algorithm-lecture/main/basic/01-orientation.typ | typst | #import "@preview/cetz:0.1.2"
#import "@preview/algorithmic:0.1.0"
#import "../slide.typ"
#show: slide.style
#show link: slide.link
#show footnote.entry: slide.footnote
#let algorithm(..args) = text(font: ("linux libertine", "Pretendard") ,size: 17pt)[#algorithmic.algorithm(..args)]
#align(horizon + center)[
= 알고리즘... | |
https://github.com/paugarcia32/CV | https://raw.githubusercontent.com/paugarcia32/CV/main/modules_es/education.typ | typst | Apache License 2.0 | #import "../brilliant-CV/template.typ": *
#cvSection("Formación")
#cvEntry(
title: [Grado en Ingeniería Telemática],
society: [UPC - EETAC, Castelldefels],
date: [2020 - Actualidad],
location: [ES],
logo: "../src/logos/upc.png",
description: list(
[Tesis: Plataforma IoT abierta para proy... |
https://github.com/flavio20002/typst-presentation-minimal-template | https://raw.githubusercontent.com/flavio20002/typst-presentation-minimal-template/main/lib.typ | typst | MIT No Attribution | #let script-size = 15pt
#let normal-size = 20pt
#let large-size = 30pt
#let very-large-size = 38pt
#let huge-size = 58pt
#let logo-light-image = state("logo-light-image", none)
#let section-page = state("section-page", false)
#let columns-content(..args) = {
let slide-info = args.named()
let bodies = args.pos()
... |
https://github.com/jgm/typst-hs | https://raw.githubusercontent.com/jgm/typst-hs/main/test/typ/layout/list-attach-05.typ | typst | Other | // ... even if forced to.
Hello
#list(tight: false)[A][B]
World
|
https://github.com/crd2333/crd2333.github.io | https://raw.githubusercontent.com/crd2333/crd2333.github.io/main/src/components/TypstTemplate/figures.typ | typst | #import "@preview/fletcher:0.5.1" as fletcher: diagram, node, edge
#import "@preview/tablem:0.1.0": tablem
#import "@preview/lovelace:0.3.0": pseudocode-list, pseudocode, line-label
#import "@preview/truthfy:0.4.0": truth-table, truth-table-empty
#import "@preview/codly:0.2.0": *
#import "@preview/timeliney:0.1.0": tim... | |
https://github.com/xiongyaohua/typst-template-swjtu-thesis | https://raw.githubusercontent.com/xiongyaohua/typst-template-swjtu-thesis/main/modules/common.typ | typst | #let 阶段 = state("阶段", "前文") // 文档当前所处阶段:前文、正文、结论、附录。不同阶段有不同排版格式要求。
#let 正文开始() = {
阶段.update("正文")
}
#let 结论开始() = {
阶段.update("结论")
}
#let 附录开始() = {
阶段.update("附录")
}
#let 字号 = (
初号: 42pt,
小初: 36pt,
一号: 26pt,
小一: 24pt,
二号: 22pt,
小二: 18pt,
三号: 16pt,
小三: 15pt,
四号: 14p... | |
https://github.com/MingLLuo/typst-course-description | https://raw.githubusercontent.com/MingLLuo/typst-course-description/main/main.typ | typst | #import "utils.typ": *
// Default: A4, optional: https://typst.app/docs/reference/layout/page/
// First Page includes:
// 1. School ready to apply
// 2. Major ready to apply
// 3. Your name
// 4. Your School
// 5. Your Major
// School Logo
#set text(font: translate(zh: "SimSun", en: "Arial"))
#FrontPage(
// applie... | |
https://github.com/typst/packages | https://raw.githubusercontent.com/typst/packages/main/packages/preview/tutor/0.3.0/README.md | markdown | Apache License 2.0 | # tutor
Utilities to write exams and exercises with integrated solutions. Set the variable `#(cfg.sol = true)` to display the solutions of a document.
Currently the following features are supported:
* Automatic total point calculation through the `#points()` and `#totalpoints()` functions.
* Checkboxes that are eith... |
https://github.com/Isaac-Fate/booxtyp | https://raw.githubusercontent.com/Isaac-Fate/booxtyp/master/src/theorems/new-fancy-template.typ | typst | Apache License 2.0 | #import "../colors.typ": color-schema
#import "../counters.typ": exercise-counter
#let exercise(content) = {
locate(loc => {
// Increament the exercise counter
exercise-counter.step(level: 3)
// Get the current exercise number
let number = numbering("1.1", ..exercise-counter.at(loc))
// Emoji f... |
https://github.com/xkevio/parcio-typst | https://raw.githubusercontent.com/xkevio/parcio-typst/main/parcio-thesis/template/template.typ | typst | MIT License | #import "@preview/drafting:0.2.0": margin-note, set-page-properties
#import "@preview/subpar:0.1.1"
#import "parcio-bib.typ": is-parcio-bib
#let ovgu-blue = rgb("#0068B4")
#let ovgu-darkgray = rgb("#606060")
#let ovgu-lightgray = rgb("#C0C0C0")
#let ovgu-orange = rgb("#F39100")
#let ovgu-purple = rgb("#7A003F")
#let o... |
https://github.com/Area-53-Robotics/53E-Notebook-Over-Under-2023-2024 | https://raw.githubusercontent.com/Area-53-Robotics/53E-Notebook-Over-Under-2023-2024/giga-notebook/entries/brainstorm-tracking-implementation.typ | typst | Creative Commons Attribution Share Alike 4.0 International | #import "/packages.typ": notebookinator
#import notebookinator: *
#import themes.radial.components: *
#show: create-body-entry.with(
title: "Brainstorm: Position Tracking",
type: "brainstorm",
date: datetime(year: 2023, month: 7, day: 28),
author: "<NAME>",
witness: "<NAME>",
)
Now that we chose our sensor ... |
https://github.com/El-Naizin/cv | https://raw.githubusercontent.com/El-Naizin/cv/main/README.md | markdown | Apache License 2.0 | <h1 align="center">
<img src='https://github.com/mintyfrankie/mintyfrankie/assets/77310871/64861d2d-971c-47cd-a5e8-5ad8659f2c2b'>
<br><br>
Brilliant CV
</h1>
<p align="center">
<img alt="Check Status Badge" src="https://github.com/mintyfrankie/brilliant-CV/actions/workflows/compile.yml/badge.svg"/>
<img alt=... |
https://github.com/Amelia-Mowers/typst-tabut | https://raw.githubusercontent.com/Amelia-Mowers/typst-tabut/main/README.md | markdown | MIT License | <div>
# Tabut
*Powerful, Simple, Concise*
A Typst plugin for turning data into tables.
## Outline
- [Examples](#examples)
- [Input Format and Creation](#input-format-and-creation)
- [Basic Table](#basic-table)
- [Table Styling](#table-styling)
- [Header Formatting](#header-formatting)
- [Remove Head... |
https://github.com/heiafr-isc/typst-report-template | https://raw.githubusercontent.com/heiafr-isc/typst-report-template/main/lib/heiafr.typ | typst | Apache License 2.0 | // ---------------------------------------------------------------------------
// Copyright © 2024 Haute école d'ingénierie et d'architecture de Fribourg
// SPDX-License-Identifier: Apache-2.0
// ---------------------------------------------------------------------------
// Author : <NAME> <<EMAIL>>
// Date : 23 Febr... |
https://github.com/polarkac/MTG-Stories | https://raw.githubusercontent.com/polarkac/MTG-Stories/master/stories/001%20-%20Magic%202013/002_Xathrid%20Gorgon.typ | typst | #import "@local/mtgstory:0.2.0": conf
#show: doc => conf(
"<NAME>",
set_name: "Magic 2013",
story_date: datetime(day: 04, month: 07, year: 2012),
author: "<NAME>",
doc
)
#figure(image("002_Xathrid Gorgon/01.jpg", height: 40%), caption: [], supplement: none, numbering: none)
#emph[East of the borde... | |
https://github.com/sitandr/typst-examples-book | https://raw.githubusercontent.com/sitandr/typst-examples-book/main/src/basics/math/operators.md | markdown | MIT License | # Operators
> See [reference](https://typst.app/docs/reference/math/op/).
There are lots of built-in "text operators" in Typst math. This is a symbol that behaves very close to plain text. Nevertheless, it is different:
```typ
$
lim x_n, "lim" x_n, "lim"x_n
$
```
## Predefined operators
Here are all text operators ... |
https://github.com/levinion/typst-dlut-templates | https://raw.githubusercontent.com/levinion/typst-dlut-templates/main/templates/thesis/reference.typ | typst | MIT License | #import "../util/style.typ":font_family,font_size
#import "../util/functions.typ":invisible_heading
#import "../util/bib.typ":bilingual-bibliography
#let reference(bib)={
if bib != none {
set align(center)
set text(font: font_family.heiti, size: font_size.xiao_san)
set par(leading: 1.5em)
set block(sp... |
https://github.com/Myriad-Dreamin/typst.ts | https://raw.githubusercontent.com/Myriad-Dreamin/typst.ts/main/fuzzers/corpora/visualize/pattern-relative_00.typ | typst | Apache License 2.0 |
#import "/contrib/templates/std-tests/preset.typ": *
#show: test-page
// Test with relative set to `"self"`
#let pat(..args) = pattern(size: (30pt, 30pt), ..args)[
#place(top + left, line(start: (0%, 0%), end: (100%, 100%), stroke: 1pt))
#place(top + left, line(start: (0%, 100%), end: (100%, 0%), stroke: 1pt))
]
... |
https://github.com/0xPARC/0xparc-intro-book | https://raw.githubusercontent.com/0xPARC/0xparc-intro-book/main/src/oram-takeaways.typ | typst | #import "preamble.typ":*
#takeaway[ORAM takeaways][
1. _Oblivious RAM_ is a system to hide memory access patterns from a server.
2. The server stores encrypted data blocks in a binary tree,
and it does not learn which blocks correspond to which memory items.
3. Every time the ORAM client accesses a block, it writes ... | |
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/visualization/brainstorm.typ | typst | Creative Commons Attribution Share Alike 4.0 International | #import "/packages.typ": notebookinator, codetastic
#import notebookinator: *
#import themes.radial.components: *
#import codetastic: qrcode
#show: create-body-entry.with(
title: "Brainstorm: Data Visualization",
type: "brainstorm",
date: datetime(year: 2023, month: 11, day: 11),
author: "<NAME>",
witness: ... |
https://github.com/typst/packages | https://raw.githubusercontent.com/typst/packages/main/packages/preview/suiji/0.2.2/src/lib.typ | typst | Apache License 2.0 | #import "random.typ": gen-rng, integers, random, uniform, normal, discrete-preproc, discrete, shuffle, choice
#import "chinese.typ": rand-sc
|
https://github.com/TGM-HIT/typst-diploma-thesis | https://raw.githubusercontent.com/TGM-HIT/typst-diploma-thesis/main/docs/manual.typ | typst | MIT License | #import "template.typ" as template: *
#import "/src/lib.typ" as tgm-hit-thesis
#let package-meta = toml("/typst.toml").package
#let date = datetime(year: 2024, month: 10, day: 23)
#show: manual(
title: "TGM HIT diploma thesis template",
// subtitle: "...",
authors: package-meta.authors.map(a => a.split("<").at(... |
https://github.com/JunzheShen/SJTU-Resume-Template-in-Typst | https://raw.githubusercontent.com/JunzheShen/SJTU-Resume-Template-in-Typst/main/template.typ | typst | // 字体
#let font = (
main: "IBM Plex Serif",
mono: "IBM Plex Mono",
cjk: "Microsoft YaHei",
)
// 图标
#let icon(path) = box(
baseline: 0.125em,
height: 1.0em,
width: 1.25em,
image("./icons/" + path)
)
#let faAngleRight = icon("fa-angle-right.svg")
// 主体
#let resume(
size: 10pt,
themeColor: rgb(38, 3... | |
https://github.com/7sDream/fonts-and-layout-zhCN | https://raw.githubusercontent.com/7sDream/fonts-and-layout-zhCN/master/chapters/04-opentype/fonttools-ttx.typ | typst | Other | #import "/template/template.typ": web-page-template
#import "/template/components.typ": note
#import "/lib/glossary.typ": tr
#show: web-page-template
// ## FontTools and ttx
== FontTools 和 `ttx` 工具
// To crack open that OTF file and look at the tables inside, we're going to use a set of Python programs called `font... |
https://github.com/Marmare314/typst-presentation | https://raw.githubusercontent.com/Marmare314/typst-presentation/main/README.md | markdown | MIT License | # typst-presentation
An easy to use presentation template.
|
https://github.com/dismint/docmint | https://raw.githubusercontent.com/dismint/docmint/main/multicore/study.typ | typst | #import "template.typ": *
#show: template.with(
title: "6.5081 Study Guide",
subtitle: "Spring 2024"
)
= Chapter 1
#define(
title: "Mutual Exclusion"
)[
The property that no two processes are in their critical section at the same time.
]
/ Deadlock Free: At least one thread will make progress.
/ Starvation ... | |
https://github.com/polarkac/MTG-Stories | https://raw.githubusercontent.com/polarkac/MTG-Stories/master/stories/036%20-%20Guilds%20of%20Ravnica/008_The%20Gathering%20Storm%3A%20Chapter%202.typ | typst | #import "@local/mtgstory:0.2.0": conf
#show: doc => conf(
"The Gathering Storm: Chapter 2",
set_name: "Guilds of Ravnica",
story_date: datetime(day: 12, month: 06, year: 2019),
author: "<NAME>",
doc
)
The rot gardens of the Devkarin were legendary.
Any fool could build a midden, or grow mushrooms ... | |
https://github.com/daskol/mpl-typst | https://raw.githubusercontent.com/daskol/mpl-typst/main/gallery/main.typ | typst | MIT License | /**
* main.typ
*
* This is an example paper which demonstrates how to use typ-files rendered
* with custom `matplotlib` backend based on Typst.
*/
#set document(title: [#smallcaps[Typst] #smallcaps[Matplotlib] Backend Demo])
#set page(
paper: "a4",
margin: (left: 0.75in, right: 8.5in - (0.75in + 6.75in), top:... |
https://github.com/Functional-Bus-Description-Language/Specification | https://raw.githubusercontent.com/Functional-Bus-Description-Language/Specification/master/src/functionalities/mask.typ | typst | == Mask
The mask functionality represents a bit mask.
The mask is data that is automatically read by the provider from its registers.
By default, a mask can be written and read by the requester. The mask is very similar to the config.
The difference is that the config is value-oriented, whereas the mask is bit-oriente... | |
https://github.com/lxl66566/my-college-files | https://raw.githubusercontent.com/lxl66566/my-college-files/main/信息科学与工程学院/互联网原理与技术/作业/理论6.typ | typst | The Unlicense | #import "../../template.typ": *
#import "@preview/tablem:0.1.0": tablem
#show: project.with(
title: "理论 6",
authors: (
"absolutex",
)
)
// P3、P5、 P14、P15、 P21、P31
= 理论作业6
== P3 假设某分组的信息部分(图6.3中的D)包含10字节,它由字符 “Internet” 的8比特无符号二进制ASCII表示组成。对该数据计算因特网检验和。
```python
#! /usr/bin/env python3
s = sum(map(ord, "... |
https://github.com/rabotaem-incorporated/algebra-conspect-1course | https://raw.githubusercontent.com/rabotaem-incorporated/algebra-conspect-1course/master/sections/03-polynomials/05-euclidian-rings.typ | typst | Other | #import "../../utils/core.typ": *
== Евклидовы области
#def[
_Евклидовой областью целостности_ (_евклидовой областью_, _евклидовым кольцом_) называется область целостности $R$,
для которой существует функция $nu: R without \{0\} -> ZZ_(>= 0)$, называемая _евклидовой нормой_, такая что:
+ Если $d divides... |
https://github.com/Myriad-Dreamin/typst.ts | https://raw.githubusercontent.com/Myriad-Dreamin/typst.ts/main/fuzzers/corpora/math/root_03.typ | typst | Apache License 2.0 |
#import "/contrib/templates/std-tests/preset.typ": *
#show: test-page
// Test large bodies
$ sqrt([|x|]^2 + [|y|]^2) < [|z|] $
$ v = sqrt((1/2) / (4/5))
= root(3, (1/2/3) / (4/5/6))
= root(4, ((1/2) / (3/4)) / ((1/2) / (3/4))) $
|
https://github.com/HiiGHoVuTi/requin | https://raw.githubusercontent.com/HiiGHoVuTi/requin/main/lang/inclusions.typ | typst | #import "../lib.typ": *
#show heading: heading_fct
Soit $Sigma$ un alphabet. Pour $w in Sigma^*$ un mot et $alpha in Sigma$ une lettre, on note $|w|_alpha$ le nombre d’occurrence de $alpha$ dans $w$. Pour $L$ un langage sur $Sigma$, on pose $sigma(L) = {w in Sigma^* | exists u in L, forall alpha in Sigma, |u|_alpha = ... | |
https://github.com/Chwiggy/thesis_bachelor | https://raw.githubusercontent.com/Chwiggy/thesis_bachelor/main/src/chapters/01_introduction.typ | typst | #import "../preamble.typ": *
= Introduction
In recent years, but for decades by now, the demand for a paradigm shift in transportation infrastructure and service has become louder and louder.
While calls for a shift away from car centric mobility are nothing new and were a well established part of German academic ... | |
https://github.com/An-314/Notes_of_Electrodynamics | https://raw.githubusercontent.com/An-314/Notes_of_Electrodynamics/master/chap5.typ | typst | #import"@preview/physica:0.9.2":*
#import "template.typ": *
= 静电学中的边值问题:圆边界 Boundary-Value Problems in Electrostatics
== Laplace Equation in Spherical Coordinates 球坐标系下的Laplace方程
=== Laplace Equation in Spherical Coordinates
$
laplacian Phi = 1/r pdv(,r,2)(r Phi) + 1/(r^2 sin theta) pdv(,theta)(sin theta ... | |
https://github.com/kdog3682/mathematical | https://raw.githubusercontent.com/kdog3682/mathematical/main/0.1.0/src/dialogues/dialogue-layout.typ | typst | #import "@local/typkit:0.1.0": *
#let dialogue-layout(items, body-width: auto, row-gutter: 15pt, spacing: 0.8em) = {
set block(breakable: false)
show par: set block(spacing: spacing )
let even(item) = {
block(breakable: false, width: body-width, {
item
})
}
let items = map-even-odd(items... | |
https://github.com/monaqa/typst-easytable | https://raw.githubusercontent.com/monaqa/typst-easytable/master/src/lib.typ | typst | MIT License | #import "@preview/tablex:0.0.8": cellx, gridx, hlinex, vlinex
#import "./elem.typ"
#let _easytable_processor(n_columns, columns, operations, tablex_extra_args: (:)) = {
let data = ()
let row_idx = 0
let layout_func = ((c) => c,) * n_columns
for op in operations {
if op._kind == "easytable.push_row" {
... |
https://github.com/herbhuang/utdallas-thesis-template-typst | https://raw.githubusercontent.com/herbhuang/utdallas-thesis-template-typst/main/content/related_work.typ | typst | MIT License | #import "/utils/todo.typ": TODO
= Related Work
#TODO[
Describe related work regarding your topic and emphasize your (scientific) contribution in contrast to existing approaches / concepts / workflows. Related work is usually current research by others and you defend yourself against the statement: “Why is your thesi... |
https://github.com/An-314/Notes-of-DSA | https://raw.githubusercontent.com/An-314/Notes-of-DSA/main/sort.typ | typst | = 排序
== 快速排序Quick Sort
选择一个轴点,将小于轴点的元素放在轴点左边,大于轴点的元素放在轴点右边,然后递归地对左右两个子序列进行快速排序。$"sorted"(S) = "sorted"(S_L) + "pivot" + "sorted"(S_R)$
pivot: $max["lo", "mi") <= "pivot" < min("mi", "hi")$
排好的轴点就是排序之后的位置,此后不会再动。快速排序就是将所有元素逐个转换为轴点的过程。
```cpp
template <typename T> void Vector<T>::quickSort( Rank lo, Rank hi ) {
i... | |
https://github.com/tfachada/thesist | https://raw.githubusercontent.com/tfachada/thesist/main/template/Beginning/Keywords-en.typ | typst | MIT License | // Don't add a title. It's already included in the template.
Lorem, Ipsum, Dolor, Sit, Amet
|
https://github.com/Myriad-Dreamin/typst.ts | https://raw.githubusercontent.com/Myriad-Dreamin/typst.ts/main/fuzzers/corpora/visualize/gradient-text_00.typ | typst | Apache License 2.0 |
#import "/contrib/templates/std-tests/preset.typ": *
#show: test-page
//
// // Ref: false
// // Make sure they don't work when `relative: "self"`.
//
// // Hint: 17-61 make sure to set `relative: auto` on your text fill
// // Error: 17-61 gradients and patterns on text must be relative to the parent
// #set text(fil... |
https://github.com/Nrosa01/TFG-2023-2024-UCM | https://raw.githubusercontent.com/Nrosa01/TFG-2023-2024-UCM/main/Memoria%20Typst/capitulos/0.Abstract.typ | typst | #linebreak()
Sand simulators, a subgenre of cellular automata, have experienced a resurgence in popularity in recent years.However, we have identified a significant barrier that hinders its broader adoption among both users and developers, and this is the scarcity of background or available examples. Therefore, the aim... | |
https://github.com/Mouwrice/thesis-typst | https://raw.githubusercontent.com/Mouwrice/thesis-typst/main/measurements/measurements.typ | typst | #import "../lib.typ": *
= Measuring accuracy and deviation <measuring-accuracy-and-deviation>
The following chapter discusses the accuracy and deviation of a body pose estimation tool. More specifically, the outputs of the MediaPipe Pose landmark detection solution are compared to that of a traditional optical tracki... | |
https://github.com/Joelius300/hslu-typst-template | https://raw.githubusercontent.com/Joelius300/hslu-typst-template/main/main.typ | typst | MIT License | #import "template.typ": *
#import "@preview/i-figured:0.2.4"
#show: project.with(
title: "Bachelorarbeit",
subtitle: "Dies ist der Titel der Bachelorarbeit",
abstract: include "chapters/00_abstract.typ",
logo: "img/HSLU-AICH.png",
student: "<NAME>.",
coach: todo("Coach eintragen", inline: true),
expert: ... |
https://github.com/xsro/xsro.github.io | https://raw.githubusercontent.com/xsro/xsro.github.io/zola/typst/Control-for-Integrator-Systems/1linear.typ | typst | #import "@preview/cetz:0.2.0"
#import "lib/lib.typ": ode45,get_signal,op
#let plot_fun(func,y-tick-step:none,domain: (-2, 2),y-label:$dot(x)$,x-label:$x$)={
cetz.canvas({
import cetz.plot
import cetz.draw: *
plot.plot(
size: (2,1),
axis-style: "school-book",
x-tick-step: 1, y-tick-step... | |
https://github.com/noahjutz/AD | https://raw.githubusercontent.com/noahjutz/AD/main/uebungen/3/mts_2d.typ | typst | #import "/config.typ": theme
#import "@preview/cetz:0.2.2"
#let n = 5
#let i1 = 0
#let i2 = 2
#let j1 = 1
#let j2 = 4
#cetz.canvas(length: 100%, {
import cetz.draw: *
group(name: "matrix", {
set-viewport((32pt, -32pt), (1, -1))
rect((0, 0), (1, 1), stroke: none)
grid((0, 0), (1-1/n, 1-1/n), step: 1 /... | |
https://github.com/Fr4nk1inCs/typreset | https://raw.githubusercontent.com/Fr4nk1inCs/typreset/master/src/lib.typ | typst | MIT License | #let version = "0.1.0"
#import "bundles/homework.typ"
#import "bundles/font.typ"
#import "bundles/report.typ"
|
https://github.com/TomVer99/FHICT-typst-template | https://raw.githubusercontent.com/TomVer99/FHICT-typst-template/main/examples/starter/starter.typ | typst | MIT License | // CHANGE THIS TO THE CORRECT PATH
#import "./../../template/fhict-template.typ": *
#import "./terms.typ": term-list
#show: fhict-doc.with(
title: "",
subtitle: "",
// subtitle-lines: 1,
authors: (
(
name: "",
),
),
version-history: (
(
version: "",
date: "",
author: [],... |
https://github.com/DawnEver/typst-academic-cv | https://raw.githubusercontent.com/DawnEver/typst-academic-cv/main/README.md | markdown | # Typst Template for Academic CV
## What is Typst
Typst is a new markup-based typesetting system that is designed to be as powerful as LaTeX while being much easier to learn and use.
- [Typst Github](https://github.com/typst/typst)
- [Typst Homepage](https://typst.app)
## Preview
- preview main_en.pdf in [docs.goog... | |
https://github.com/donabe8898/typst-slide | https://raw.githubusercontent.com/donabe8898/typst-slide/main/opc/並行prog/01/syakyo02.typ | typst | MIT License | #show link: set text(blue)
#set text(font: "Noto Sans CJK JP",size:11pt)
#show heading: set text(font: "Noto Sans CJK JP")
#show raw: set text(font: "0xProto Nerd Font")
#show raw.where(block: true): block.with(
fill: luma(240),
inset: 10pt,
radius: 4pt
)
#align(center)[
```go
// =================================... |
https://github.com/sysu/better-thesis | https://raw.githubusercontent.com/sysu/better-thesis/main/others/bachelor-proposal.typ | typst | MIT License | #import "style.typ": 字体, 字号
#let table-stroke = 0.5pt
#set page(numbering: "1")
#align(center, text(
font: 字体.黑体,
size: 字号.三号,
weight: "bold",
"南京大学本科毕业论文(设计)开题报告"
))
#set text(font: 字体.宋体, size: 字号.五号)
#set underline(offset: 0.1em)
#align(center)[
填表人签名#underline(" ")填表时间:#underline(" ")年#underl... |
https://github.com/catg-umag/inach-workshop-2024 | https://raw.githubusercontent.com/catg-umag/inach-workshop-2024/main/document/sections/2_basecalling.typ | typst | #import "../catgconf.typ": github-pill, cmd
= Basecalling
Basecalling es el proceso por el cual se convierte la señal eléctrica captada por los dispositivos de Oxford Nanopore en secuencias de nucleótidos. Esta conversión requiere de algoritmos computacionales avanzados, como las redes neuronales LSTM y los transfor... | |
https://github.com/Myriad-Dreamin/typst.ts | https://raw.githubusercontent.com/Myriad-Dreamin/typst.ts/main/docs/cookery/direction/responsive.typ | typst | Apache License 2.0 | #import "mod.typ": *
#show: book-page.with(title: "Static, Responsive rendering")
#include "claim.typ"
Example Application: #link("https://github.com/Myriad-Dreamin/typst.ts/blob/main/packages/typst.ts/index.html")[single-file], #link("https://github.com/Myriad-Dreamin/shiroa")[shiroa] and #link("https://github.com/... |
https://github.com/miliog/typst-penreport | https://raw.githubusercontent.com/miliog/typst-penreport/master/typst-penreport/helper/severity.typ | typst | MIT No Attribution | #let Severity = (
Informational: 0,
Low: 1,
Medium: 2,
High: 3,
Critical: 4,
Undetermined: 5,
)
#let getSeverityInfo(severity) = [
#if severity == Severity.Informational {
return (
text: "Informational",
bg: rgb("#00B0F0"),
)
} else if severity == Severity.Low {
return (
... |
https://github.com/zjutjh/zjut-report-typst | https://raw.githubusercontent.com/zjutjh/zjut-report-typst/main/example.typ | typst | #import "template/template.typ": *
#show: project.with(
title: "xxx课程实验报告",
name:"xxx实验",
id: "202110001000",
class: "计科2100",
authors: "作者",
department: "计算机学院",
date: (2023, 5, 15),
cover_style: "zjut_report",
)
#toc()
#pagebreak()
= 大标题测试
== 小标题测试
=== 三级标题测试
大学之道,在明明德,在亲民,在止于至善。
知止而后有定;
定而后能静;... | |
https://github.com/typst-community/mantodea | https://raw.githubusercontent.com/typst-community/mantodea/main/tests/style/test.typ | typst | MIT License | #import "/src/style.typ"
#show: style.default()
= First Part
#lorem(100)
= Second Part
#lorem(50)
== Section
== Another Section
#lorem(250)
=== Subsection
#lorem(100)
= Third Part
#lorem(250)
|
https://github.com/Skimmeroni/Appunti | https://raw.githubusercontent.com/Skimmeroni/Appunti/main/Metodi%20Algebrici/Interi/Quadrati.typ | typst | Creative Commons Zero v1.0 Universal | #import "../Metodi_defs.typ": *
Calcolare $a^(m) mod n$ "a mano" puó richiedere molto tempo, specialmente
se i numeri in questione sono molto grandi. É peró possibile velocizzare
il procedimento impiegando il *metodo dei quadrati ripetuti*, di seguito
discusso.
Si scriva l'esponente $m$ in base due, ottenendo $m = su... |
https://github.com/felsenhower/kbs-typst | https://raw.githubusercontent.com/felsenhower/kbs-typst/master/examples/18.typ | typst | MIT License | #set text(font: "Comic Sans MS")
#show heading: it => block[
#set text(fuchsia)
〜#it.body〜 UwU
]
= Einfühwung
Mein ewstew Text mit Typst!
#lorem(20)
|
https://github.com/RaphGL/ElectronicsFromBasics | https://raw.githubusercontent.com/RaphGL/ElectronicsFromBasics/main/DC/chap2/2_analogy_for_ohms_law.typ | typst | Other | === An analogy for Ohm's Law
Ohm's Law also makes intuitive sense if you apply it to the water-and-pipe analogy. If we have a water pump that exerts pressure (voltage) to push water around a "circuit" (current) through a restriction (resistance), we can model how the three variables interrelate. If the resistance to w... |
https://github.com/zenor0/FZU-report-typst-template | https://raw.githubusercontent.com/zenor0/FZU-report-typst-template/main/fzu-report/pages/cover-report-fn.typ | typst | MIT License | #import "../utils/packages.typ": fakebold
#import "../utils/fonts.typ": 字体, 字号, chineseunderline, justify-words
#let report-cover-conf(
studentID: "10210xxxx",
author: "zenor0",
school: "计算机与大数据学院",
major: "信息安全",
advisor: "你的老师",
thesisname: "title",
major-title: "实验报告",
date: (year: 2021, month: 9, d... |
https://github.com/jens-hj/ds-exam-notes | https://raw.githubusercontent.com/jens-hj/ds-exam-notes/main/lectures/7.typ | typst | #import "../lib.typ": *
#show link: it => underline(emph(it))
#set math.equation(numbering: "(1)")
#set enum(full: true)
#set math.mat(delim: "[")
#set math.vec(delim: "[")
#set list(marker: text(catppuccin.latte.lavender, sym.diamond.filled))
#show heading.where(level: 1): it => text(size: 22pt, it)
#show heading.wh... | |
https://github.com/stuxf/basic-typst-resume-template | https://raw.githubusercontent.com/stuxf/basic-typst-resume-template/main/CHANGELOG.md | markdown | The Unlicense | # Basic Resume Changelog
## [v0.1.3](hhttps://github.com/stuxf/basic-typst-resume-template/releases/tags/v0.1.2)
Allow for changing of fonts via initial configuration
## [v0.1.2](hhttps://github.com/stuxf/basic-typst-resume-template/releases/tags/v0.1.2)
Version bump because I'm stupid🐛
## [v0.1.1](hhttps://githu... |
https://github.com/pncnmnp/typst-poster | https://raw.githubusercontent.com/pncnmnp/typst-poster/master/examples/example_36_48.typ | typst | MIT License | #import "../poster.typ": *
#show: poster.with(
size: "36x48",
title: "A typesetting system to untangle the scientific writing process",
authors: "<NAME>, <NAME>, <NAME>, <NAME>",
departments: "Department of Computer Science",
univ_logo: "./images/ncstate.png",
footer_text: "Conference on Typesetting System... |
https://github.com/touying-typ/touying | https://raw.githubusercontent.com/touying-typ/touying/main/examples/metropolis.typ | typst | MIT License | #import "../lib.typ": *
#import themes.metropolis: *
#import "@preview/numbly:0.1.0": numbly
#show: metropolis-theme.with(
aspect-ratio: "16-9",
footer: self => self.info.institution,
config-info(
title: [Title],
subtitle: [Subtitle],
author: [Authors],
date: datetime.today(),
institution: [... |
https://github.com/monlie/WeeklyRCBI | https://raw.githubusercontent.com/monlie/WeeklyRCBI/main/weekly.typ | typst | MIT License | #import "@preview/tablex:0.0.6": *
#import "style.typ": 字体, 字号
#let table-stroke = 0.5pt
#let table-inset = (left: 0.4em, right: 0.8em, y: 0.65em)
#let weekly(
doc,
author: "无名氏",
plan: "继续实验",
problem: "无",
writting-date: none,
day-offset: 0,
) = {
let one-week = duration(weeks: 1)
let date-displa... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.