repo stringlengths 26 115 | file stringlengths 54 212 | language stringclasses 2
values | license stringclasses 16
values | content stringlengths 19 1.07M |
|---|---|---|---|---|
https://github.com/EpicEricEE/typst-plugins | https://raw.githubusercontent.com/EpicEricEE/typst-plugins/master/united/examples/units.typ | typst | #import "../src/lib.typ": unit
#set raw(lang: "typ")
#set text(size: 14pt)
#set table(
inset: 0.7em,
fill: (x, y) => if y == 0 { luma(230) }
)
#set page(
width: auto,
height: auto,
margin: 1em,
background: pad(0.5pt, box(
width: 100%,
height: 100%,
radius: 4pt,
fill: white,
stroke: whit... | |
https://github.com/lyzynec/orr-go-brr | https://raw.githubusercontent.com/lyzynec/orr-go-brr/main/13/main.typ | typst | #import "../lib.typ": *
#knowledge[
#question(name: [Explain the truncation of a state--space model])[
We split the model into two sets of equations
$
dot(bold(x))_1 &= bold(A)_(1 1) bold(x)_1 (t)
+ bold(A)_(1 2) bold(x)_2 (t) + bold(B)_1 bold(u) (t)\
dot(bold(x))_2 &= bold... | |
https://github.com/N3M0-dev/Notes | https://raw.githubusercontent.com/N3M0-dev/Notes/main/CS/Digit_Logic/Note_DDaCA/Ch_3/ch3.typ | typst | #import "@local/note_template:0.0.1": *
#import "@local/tbl:0.0.4"
#set page(numbering: "1")
#set par(justify: true)
#set heading(numbering: "1.1")
#show: tbl.template.with(box: true, tab:"|")
#frontmatter(
title: "Sequential Logic Design Note",
date: "2023 Nov 28",
authors: ("Nemo",),
)
#outline(ind... | |
https://github.com/typst/packages | https://raw.githubusercontent.com/typst/packages/main/packages/preview/unichar/0.1.0/ucd/block-11800.typ | typst | Apache License 2.0 | #let data = (
("DOGRA LETTER A", "Lo", 0),
("DOGRA LETTER AA", "Lo", 0),
("DOGRA LETTER I", "Lo", 0),
("DOGRA LETTER II", "Lo", 0),
("DOGRA LETTER U", "Lo", 0),
("DOGRA LETTER UU", "Lo", 0),
("DOGRA LETTER E", "Lo", 0),
("DOGRA LETTER AI", "Lo", 0),
("DOGRA LETTER O", "Lo", 0),
("DOGRA LETTER AU", "... |
https://github.com/i-am-wololo/cours | https://raw.githubusercontent.com/i-am-wololo/cours/master/TP/i23/1/main.typ | typst | #import "./templates.typ": *
#show: project.with(title: "TP1 i23")
= Question 1: Ecrire une fonction #py("interpretations(nbVar)") qui renvoie le tuple constitue de toutes les interpretations possible de nbvar variables propositionnelles
la technique que j'ai opte est de calculer tous les nombre possible en binaire... | |
https://github.com/AU-Master-Thesis/thesis | https://raw.githubusercontent.com/AU-Master-Thesis/thesis/main/sections/3-methodology/study-2/graph-representation.typ | typst | MIT License | #import "../../../lib/mod.typ": *
=== Graph Representation <s.graph-representation>
There are several different methods for representing graph structures in computer memory. Each offering different advantages and disadvantages in regards to memory layout and query efficiency. As explained in @s.b.factor-graphs, the ... |
https://github.com/typst/packages | https://raw.githubusercontent.com/typst/packages/main/packages/preview/fh-joanneum-iit-thesis/1.2.2/template/chapters/6-implementation.typ | typst | Apache License 2.0 | #import "global.typ": *
= Implementation <implementation>
#lorem(35)
#todo(
[ Describe what is relevant and special about your working prototype. State how
single features help to solve problem(s) at hand. You might implement only the
most relevant features. Features you select from your prioritised feature li... |
https://github.com/3w36zj6/textlint-plugin-typst | https://raw.githubusercontent.com/3w36zj6/textlint-plugin-typst/main/test/fixtures/CodeBlock/input.typ | typst | MIT License | ```rust
fn main() {
println!("Hello World!");
}
```
```
language is undefined.
```
|
https://github.com/dark-flames/resume | https://raw.githubusercontent.com/dark-flames/resume/main/chicv.typ | typst | MIT License | #import "fontawesome.typ": *
#import "@preview/shiroa:0.1.0": is-pdf-target, is-web-target, get-page-width
#let main-color() = {
if is-web-target() {
import "@preview/typst-apollo:0.1.0": pages
import pages: main-color
main-color
} else {
black
}
}
#let dash-color() = {
if is-web-target() {
... |
https://github.com/HKFoggyU/hkust-thesis-typst | https://raw.githubusercontent.com/HKFoggyU/hkust-thesis-typst/main/hkust-thesis/templates/authorization.typ | typst | LaTeX Project Public License v1.3c | #import "../imports.typ": *
#import "../utils/invisible-heading.typ": invisible-heading
#let authorization(
config: (:),
info: (:),
) = {
set align(center)
[
#pagebreak(weak: true, to: if config.twoside { "odd" })
#set par(first-line-indent: 2em)
#invisible-heading("Authorization Page"... |
https://github.com/Sepax/Typst | https://raw.githubusercontent.com/Sepax/Typst/main/DIT084/Notes/main.typ | typst |
#import "template.typ": *
#show: template.with(
title: [Testing, debugging and verification],
short_title: "DIT084",
description: [
Notes based on lectures for DIT084 (Testing, debugging and verification)\ at
Gothenburg University, Autumn 2023
],
authors: ((name: "<NAME>"),),
lof: false,
lot: fal... | |
https://github.com/herbertskyper/HITsz_Proposal_report_Template | https://raw.githubusercontent.com/herbertskyper/HITsz_Proposal_report_Template/main/main.typ | typst | MIT License | #import "templates/thesis.typ":*
#import "utils/utils.typ":*
#import "pages/cover.typ": cover
#import "pages/outline.typ": outline-page
//页面整体设置
#show :it => conf(it)
//封面
#cover(project_name: "1",
name: "1",
student_id: "1",
tel_student: "1",
email_student: "1",
collage_stu... |
https://github.com/Han-duoduo/mathPater-typest-template | https://raw.githubusercontent.com/Han-duoduo/mathPater-typest-template/main/chapter/appendix.typ | typst | Apache License 2.0 | #import "../template/template.typ":*
#let code1 = ```matlab
clc;clear;close all;
%导入数据
data=importdata('DATA.mat');%需要优化小区编号,频点及现网PCI的信息
MR1=importdata('MR1.mat');%有关小区间冲突及干扰MR值
MR2=importdata('MR2.mat');%有关小区间混淆MR值
A=zeros(2067); B=A; C=B;%预先分配A,B,C矩阵维度
%数据清理
id=ismember(MR1(:,1:2),data(:,1));%将附件一和附件二进行比较,找到不需要优化小... |
https://github.com/Myriad-Dreamin/typst.ts | https://raw.githubusercontent.com/Myriad-Dreamin/typst.ts/main/fuzzers/corpora/hust-typst-template/sample.typ | typst | Apache License 2.0 | // https://github.com/werifu/HUST-typst-template/blob/1ef0a73007b0827e04dbe00b0849890a94eace42/sample.typ
#let heiti = ("Times New Roman", "Heiti SC", "Heiti TC", "SimHei")
#let songti = ("Times New Roman", "Songti SC", "Songti TC", "SimSun")
#let zhongsong = ("Times New Roman", "Songti SC")
#let bib_cite(..name) = {... |
https://github.com/FurryAcetylCoA/sgu-thesis-typst | https://raw.githubusercontent.com/FurryAcetylCoA/sgu-thesis-typst/main/nju-thesis/templates/bib.typ | typst | MIT License | #import "../utils/style.typ": 字号, 字体
// 参考文献页
#let bib(
// documentclass 传入参数
fonts: (:),
twoside: false,
// 其他参数
title: "参考文献",
path: (:),
outlined: true,
style: "../assets/china-national-standard-gb-t-7714-2015-numeric.csl",
) = {
fonts = 字体 + fonts
pagebreak(weak: true, to: if twoside { "odd" })... |
https://github.com/TypstApp-team/typst | https://raw.githubusercontent.com/TypstApp-team/typst/master/tests/typ/layout/grid-auto-shrink.typ | typst | Apache License 2.0 | // Test iterative auto column shrinking.
---
#set page(width: 210mm - 2 * 2.5cm + 2 * 10pt)
#set text(11pt)
#table(
columns: 4,
[Hello!],
[Hello there, my friend!],
[Hello there, my friends! Hi!],
[Hello there, my friends! Hi! What is going on right now?],
)
|
https://github.com/WinstonMDP/math | https://raw.githubusercontent.com/WinstonMDP/math/main/knowledge/monoids.typ | typst | #import "../cfg.typ": cfg
#show: cfg
= Monoids
An element $e$ of an algebraic structure $(M, *)$ is neutral $:=
e = 1 :=
m e = e m = m$.
$forall$ algebraic structure $:$ a neutral element is unique.
A monoid $:=$ a semigroup with a neutral element.
An element $m'$ of a monoid $(M, *)$ is inverse to another one $m :... | |
https://github.com/DaAlbrecht/thesis-TEKO | https://raw.githubusercontent.com/DaAlbrecht/thesis-TEKO/main/content/Executive_summary.typ | typst | This thesis presents the development of a practical microservice designed to
replay messages from a RabbitMQ stream. The main goal was to create an
open-source Docker container that seamlessly integrates into existing
infrastructures, enabling the efficient replay of messages from RabbitMQ
streams.
#linebreak()
A compr... | |
https://github.com/Student-Smart-Printing-Service-HCMUT/ssps-docs | https://raw.githubusercontent.com/Student-Smart-Printing-Service-HCMUT/ssps-docs/main/contents/categories/task3/3.2.typ | typst | Apache License 2.0 |
== Component diagram
#figure(caption:"Component diagram", image("../../images/Component_diagram.png", fit: "contain"))
_Mô tả Component diagram của module Request Printing Order._
#block(inset:(left:1cm))[
- Component diagram bao gồm các component: GUI, BE, PostgreSQL, MinIO, 3rd Party Payment Service.
- GUI: Đây ... |
https://github.com/MALossov/YunMo_Doc | https://raw.githubusercontent.com/MALossov/YunMo_Doc/main/contents/1OverView.typ | typst | Apache License 2.0 | = 设计概述
== 设计目的
我们的作品 *云MO监控* 对应的赛题为:*基于高云 FPGA 的网络视频监控系统*,因此,我们的首要目标在于充分发挥`Sipeed Tang Primer 20K`板卡的性能和资源,构建一能够迎合满足赛题需求、同时致力创新发挥,实现较为优秀的网络视频监控系统。我们主要着力于:
+ *以太网发送*:利用底板RMii网卡芯片实现UDP以太网传输
+ *摄像头适配*:利用OV5640实现视频采集
+ *视频处理*:使用高云软核+自主编写Video Processing模块实现
== 应用领域
云MO监控系统具有广泛的应用领域,能够通过通过配套使用兼容的镜头模块、同时通过配置CMOS寄存器,能够达到不... |
https://github.com/Kasci/LiturgicalBooks | https://raw.githubusercontent.com/Kasci/LiturgicalBooks/master/CU/minea/1_generated/00_all/03_november.typ | typst | #import "../../../all.typ": *
#show: book
= #translation.at("M_03_november")
#include "../03_november/08.typ"
#pagebreak()
#include "../03_november/13.typ"
#pagebreak()
#include "../03_november/21.typ"
#pagebreak()
| |
https://github.com/xkevio/parcio-typst | https://raw.githubusercontent.com/xkevio/parcio-typst/main/parcio-thesis/chapters/conclusion/conc.typ | typst | MIT License | #import "../../template/template.typ": todo, section
= Conclusion<conc>
_In this chapter, ..._\ \
== Todos
#todo(inline: true)[FIXME]
#lorem(100)#todo[FIXME: remove this]
#lorem(80)
#section[Summary]
#lorem(80)
|
https://github.com/N3M0-dev/Notes | https://raw.githubusercontent.com/N3M0-dev/Notes/main/CS/Algorithm/Intro_to_Algor/Ch_2/ch2.typ | typst | #let authors=("Nemo",)
#let title="Chapter 2: Getting Started"
#let date="2023.9.5-"
#set document(author: authors, title: title)
#set page(numbering: "1", number-align: center)
#set heading(numbering: "1.1")
// Title row.
#align(center)[
#block(text(weight: 700, 1.75em, title))
#v(1em, weak: true)
#date
]
// Author ... | |
https://github.com/crd2333/crd2333.github.io | https://raw.githubusercontent.com/crd2333/crd2333.github.io/main/src/docs/Courses/数据库系统/基本概念和关系代数.typ | typst | ---
order: 1
---
#import "/src/components/TypstTemplate/lib.typ": *
#show: project.with(
title: "数据库系统",
lang: "zh",
)
#info()[
1. 在 #link("https://github.com/Zhang-Each/CourseNoteOfZJUSE/tree/master/DBS%E6%95%B0%E6%8D%AE%E5%BA%93%E7%B3%BB%E7%BB%9F")[Zhang Each's GitHub repo] 前辈笔记的基础上重写
2. 加入了 #link("https:/... | |
https://github.com/maxds-lyon/lokiprint | https://raw.githubusercontent.com/maxds-lyon/lokiprint/main/templates/typst/.template/about.typ | typst | #let about-section(content) = block()[content] | |
https://github.com/Enter-tainer/zint-wasi | https://raw.githubusercontent.com/Enter-tainer/zint-wasi/master/typst-package/example.typ | typst | MIT License | #import "./lib.typ" as tiaoma
// #import "@preview/tiaoma:0.1.0"
#set page(width: auto, height: auto)
= tiáo mǎ
#tiaoma.ean("1234567890128")
|
https://github.com/gianzamboni/cancionero | https://raw.githubusercontent.com/gianzamboni/cancionero/main/main.typ | typst | #import "theme/project.typ": *;
#show: project.with(
title: "Cancionero",
authors: (
"Gian",
),
date: "October 8, 2023",
)
// #linebreak()
// #outline(title:[Índice #linebreak()], depth: 2 , indent: 10pt)
= Conceptos básicos
#include "acordes.typ"
= Canciones
// #include "canciones/cuentamedusa.typ"... | |
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/decide-launcher/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: "Decide: Moving Triballs",
type: "decide",
date: datetime(year: 2023, month: 9, day: 5),
author: "<NAME>",
witness: "Violet Ridge",
)
We rated each option on the follow... |
https://github.com/pku-typst/ichigo | https://raw.githubusercontent.com/pku-typst/ichigo/main/template/main.typ | typst | MIT License | #import "@preview/ichigo:0.1.0": config, prob
#show: config.with(
course-name: "Typst 使用小练习",
serial-str: "第 1 次作业",
author-info: [
sjfhsjfh from PKU-Typst
],
author-names: "sjfhsjfh",
title-style: "simple",
theme-name: "sketch",
heading-numberings: ("1.", none, "(1)", "a."),
)
#set text(lang: "zh... |
https://github.com/drupol/ipc2023 | https://raw.githubusercontent.com/drupol/ipc2023/main/src/ipc2023/main.typ | typst | #import "imports/preamble.typ": *
#set text(size: 25pt, font: "Iosevka")
#set document(title: "Leveraging Nix in the PHP ecosystem", author: "<NAME>")
#show: ipc-theme.with(
short-author: "<NAME>",
short-title: "IPC2023 - Leveraging Nix in the PHP ecosystem",
short-date: "2023/10/26",
ecmain: color-a, // Red... | |
https://github.com/harryhanYuhao/typst.vim | https://raw.githubusercontent.com/harryhanYuhao/typst.vim/main/readme.md | markdown | # A vim-plugin for Typst
[Typst](https://github.com/typst/typst) is a latex substitute.
So far the plugin is very preliminary. Hopefully a alpha-release will be lauched before 2023's Christmas.
## Installation
### Vimplug
```vim
Plug 'harryhanYuhao/typst.vim'
```
| |
https://github.com/eduardz1/UniTO-typst-template | https://raw.githubusercontent.com/eduardz1/UniTO-typst-template/main/template/chapters/introduction.typ | typst | MIT License | = Introduction
Remeber that this is not only a repeat of the abstract, the introduction should be a more detailed explanation of the problem and the background of the study. If we want to reference an element in the bibliography you can do so like this @unitotmplt.
#pagebreak(weak: true, to: "odd")
|
https://github.com/voXrey/cours-informatique | https://raw.githubusercontent.com/voXrey/cours-informatique/main/typst/glouton.typ | typst | #import "@preview/codly:0.2.1": *
#show: codly-init.with()
#codly()
#set text(font: "Roboto Serif")
= Gloutons <gloutons>
== IV - Algorithmes d’approximation, un exemple <iv---algorithmes-dapproximation-un-exemple>
==== 1. La variante fractionnaire du problème du sac à dos <la-variante-fractionnaire-du-problème-du-sa... | |
https://github.com/hosnimarnisi/lab4 | https://raw.githubusercontent.com/hosnimarnisi/lab4/main/Lab-4.typ | typst | #import "Class.typ": *
#show: ieee.with(
title: [#text(smallcaps("Lab #4: ROS2 using RCLPY in Julia"))],
/*
abstract: [
#lorem(10).
],
*/
authors:
(
(
name: "<NAME>",
department: [Senior-lecturer, Dept. of EE],
organization: [ISET Bizerte --- Tunisia],
profile: "a-mhamdi"... | |
https://github.com/Myriad-Dreamin/tinymist | https://raw.githubusercontent.com/Myriad-Dreamin/tinymist/main/crates/tinymist-query/src/fixtures/completion/cite_heading.typ | typst | Apache License 2.0 | // path: references.bib
@article{t,}
-----
// contains:form,test
// compile:true
#set heading(numbering: "1.1")
#let cite_prose(labl) = cite(labl)
= H <test>
#cite_prose(<t> /* range -3..-2 */)
#bibliography("references.bib")
|
https://github.com/r8vnhill/apunte-bibliotecas-de-software | https://raw.githubusercontent.com/r8vnhill/apunte-bibliotecas-de-software/main/Unit1/Intro.typ | typst | == Introducción al desarrollo de bibliotecas de software
=== APIs
Una API (Application Programming Interface) define bloques de construcción reutilizables que permiten incorporar funcionalidades a una aplicación de manera eficiente y estandarizada.
Las APIs son fundamentales para el desarrollo de software moderno y s... | |
https://github.com/jassielof/typst-templates | https://raw.githubusercontent.com/jassielof/typst-templates/main/apa7/template/sections/appendix.typ | typst | MIT License | = Final thoughts
#lorem(50)
== Thoughts on the future
#lorem(20)
#lorem(30)
=== Future work
#lorem(50)
==== Fourth level
#lorem(100)
== Acknowledgements
#lorem(50)
= List of Figures
#outline(
title: none,
target: figure.where(kind: image),
)
= List of Tables
#outline(
title: none,
target: figure.where(ki... |
https://github.com/typst/packages | https://raw.githubusercontent.com/typst/packages/main/packages/preview/fh-joanneum-iit-thesis/1.1.0/template/chapters/global.typ | typst | Apache License 2.0 | #import "@preview/fh-joanneum-iit-thesis:1.1.0": *
|
https://github.com/christopherkenny/ctk-article | https://raw.githubusercontent.com/christopherkenny/ctk-article/main/_extensions/ctk-article/typst-template.typ | typst | #let titled-raw-block(body, filename: none) = {
if (filename != none) {
block(
inset: 0em,
fill: luma(200),
radius: 8pt,
outset: 0.75em,
width: 100%,
spacing: 2em,
[
#text(font: "DejaVu Sans Mono")[#filename]
#block(
fill: luma(230),
inset: 0em... | |
https://github.com/herbhuang/utdallas-thesis-template-typst | https://raw.githubusercontent.com/herbhuang/utdallas-thesis-template-typst/main/layout/appendix.typ | typst | MIT License | -- Supplementary Material -- |
https://github.com/Tiggax/zakljucna_naloga | https://raw.githubusercontent.com/Tiggax/zakljucna_naloga/main/src/sec/uvod/1.%20intro.typ | typst | #import "../../additional.typ": todo
Bioprocesses using @GMO[s] are widely used in todays production of pharmaceuticals.
It is an expensive undertaking in both time and resources needed to produce the wanted end products.
They require expensive bioreactors, cell lines and substrates to run.
Much research is invested... | |
https://github.com/MobtgZhang/sues-thesis-typst | https://raw.githubusercontent.com/MobtgZhang/sues-thesis-typst/main/paper/info.typ | typst | MIT License | // 定义硕士学位论文模板
// 中文封面页信息
//============================================================================
#let num2month = (
"January",
"February",
"March",
"April",
"May",
"June",
"July",
"August",
"September",
"October",
"November",
"December",
)
// 中文封面页信息
// 中图分类号
#let master_classification_nu... |
https://github.com/AliothCancer/AppuntiUniversity | https://raw.githubusercontent.com/AliothCancer/AppuntiUniversity/main/transf_graph.typ | typst | #import "@preview/cetz:0.2.2": *
#let trasformazioni_graph(mode: str) = figure(
canvas(length: 2.7cm, {
let domain = (0.01,2)
let n_iso = 1;
let n_ad = 1.4;
let n_rand = 1.2;
let n_rand2 = .5;
let samples = 100;
let p1 = calc.pow(10,5); // 1 * 10^5 Pa
let v1 = 1; // m3/kg
let a4_sizes = (5,3.6);
l... | |
https://github.com/ENIB-Community/ENIB_Typst_Internship_Template | https://raw.githubusercontent.com/ENIB-Community/ENIB_Typst_Internship_Template/main/README.md | markdown | MIT License | # Typst Intership Template
<!-- This sentence is from the typst repo -->
> [Typst](https://github.com/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.
I recommend that you check it out, if you don't know it yet.
This repo con... |
https://github.com/cadojo/correspondence | https://raw.githubusercontent.com/cadojo/correspondence/main/src/vita/src/education.typ | typst | MIT License | #let degreeslist = state("degreeslist", ())
#let duration(start, stop) = {
text(rgb(90,90,90))[
#start #if (start != none and stop != none) { " — " } #stop
]
}
#let degree(
title, field,
school: none,
start: none,
stop: none,
notes
) = {
let content = [
#grid(
columns: (1fr, 1fr),
... |
https://github.com/rayfiyo/myTypst | https://raw.githubusercontent.com/rayfiyo/myTypst/main/note/main.typ | typst | BSD 3-Clause "New" or "Revised" License | #import "./template.typ": *
#import "@preview/codelst:2.0.0": sourcecode, sourcefile, lineref, code-frame
#show: master_thesis.with(bibliography-file: "references.bib")
= メモ
// = 参考文献 // 自動生成
= チートシート
== コードブロック
#sourcecode(numbers-start: 1)[```c
#include <stdio.h>
int main() {
printf("Hello, Worl... |
https://github.com/typst/packages | https://raw.githubusercontent.com/typst/packages/main/packages/preview/unichar/0.1.0/ucd/block-1C90.typ | typst | Apache License 2.0 | #let data = (
("GEORGIAN MTAVRULI CAPITAL LETTER AN", "Lu", 0),
("GEORGIAN MTAVRULI CAPITAL LETTER BAN", "Lu", 0),
("GEORGIAN MTAVRULI CAPITAL LETTER GAN", "Lu", 0),
("GEORGIAN MTAVRULI CAPITAL LETTER DON", "Lu", 0),
("GEORGIAN MTAVRULI CAPITAL LETTER EN", "Lu", 0),
("GEORGIAN MTAVRULI CAPITAL LETTER VIN", ... |
https://github.com/tingerrr/hydra | https://raw.githubusercontent.com/tingerrr/hydra/main/src/selectors.typ | typst | MIT License | #import "/src/util.typ"
/// Create a custom selector for `hydra`.
///
/// - element (function, selector): The primary element to search for.
/// - filter (function): The filter to apply to the element.
/// - ancestors (function, selector): The ancestor elements, this should match all of its ancestors.
/// - ancestors-... |
https://github.com/gongke6642/tuling | https://raw.githubusercontent.com/gongke6642/tuling/main/布局/direction/direction.typ | typst | = direction
内容可以布置的四个方向。
可能的值为:
- ltr: 左到右。
- rtl: 右到左。
- ttb: 从上到下。
- btt:从下到上。
这些值在全局范围内可用,并且在方向类型的范围内可用,因此您可以编写以下两个值之一:
#image("屏幕截图 2024-04-14 173757.png") | |
https://github.com/TJ-CSCCG/tongji-undergrad-thesis-typst | https://raw.githubusercontent.com/TJ-CSCCG/tongji-undergrad-thesis-typst/main/init-files/main.typ | typst | MIT License | #import "../paddling-tongji-thesis/tongjithesis.typ": *
#set pagebreak(weak: true)
#show: thesis.with(
school: "某某学院", major: "某某专业", id: "1999999", student: "某某某", teacher: "某某某", title: "论文模板", subtitle: [基于多种场景的Typst简要教程], title-english: "Thesis Template", subtitle-english: "with Various Scenes", date: datetime(... |
https://github.com/Myriad-Dreamin/typst.ts | https://raw.githubusercontent.com/Myriad-Dreamin/typst.ts/main/fuzzers/corpora/visualize/shape-rect_03.typ | typst | Apache License 2.0 |
#import "/contrib/templates/std-tests/preset.typ": *
#show: test-page
//
// // Error: 15-21 expected length, color, gradient, pattern, dictionary, stroke, none, or auto, found array
// #rect(stroke: (1, 2)) |
https://github.com/SnowManKeepsOnForgeting/NoteofModernControlTheory | https://raw.githubusercontent.com/SnowManKeepsOnForgeting/NoteofModernControlTheory/main/Chapter3/Chapter3.typ | typst | #import "@preview/physica:0.9.3": *
#import "@preview/i-figured:0.2.4"
#set heading(numbering: "1.1")
#show math.equation: i-figured.show-equation.with(level: 2)
#show heading: i-figured.reset-counters.with(level: 2)
#set text(font: "CMU Serif")
#let xbd = $accent(bold(x),dot)$
#counter(heading).update(2)
= Solution ... | |
https://github.com/j1nxie/resume | https://raw.githubusercontent.com/j1nxie/resume/main/data.typ | typst | Do What The F*ck You Want To Public License | #import "template.typ": *
#let name = "<NAME>"
#let email = [
#icon("assets/email.svg") <EMAIL>
]
#let phone = [
#icon("assets/phone.svg")
(+84) 988750695
]
#let home = [
#icon("assets/home.svg")
#link("https://rylie.moe")[ rylie.moe ]
]
#let github = [
#icon("assets/github.svg")
#link("https://github.co... |
https://github.com/r8vnhill/apunte-bibliotecas-de-software | https://raw.githubusercontent.com/r8vnhill/apunte-bibliotecas-de-software/main/Unit3/Plugins.typ | typst | == Plugins
Los plugins extienden las capacidades de Gradle al agregar nuevas tareas, configuraciones y funcionalidades a los scripts de build.
Permiten la reutilización de configuraciones de build sin necesidad de duplicar código en múltiples proyectos.
```kotlin
plugins {
kotlin("jvm") version "2.0.0"
id("io... | |
https://github.com/ut-khanlab/master_thesis_template_for_typst | https://raw.githubusercontent.com/ut-khanlab/master_thesis_template_for_typst/main/README.md | markdown | # 修論用のTypstのテンプレート
## vscodeでの使用
- 拡張機能Typst LSP, Typst Previewなどをインストール

- main.typ上でプレビュー表示
右上にあるこんな感じ,
author: "<NAME>",
doc
)
#emph[The demon Ob Nixilis is shrouded in mystery. We do not know his origins—where he comes from, or even whether ... | |
https://github.com/fabriceHategekimana/master | https://raw.githubusercontent.com/fabriceHategekimana/master/main/6_Conclusion/Projet_futures.typ | typst | == Projets futures
Il serait intéressant d'ajouter la notion de records dans et de polymorphisme de ligne dans l'usage des dataframes. Ceci augmenterai la flexibilité tout en assurant la constructions sécurisée de module ou librairies. Il serait aussi intéressant de discuter de la meilleurs manière d'implémenter la pr... | |
https://github.com/yonatanmgr/university-notes | https://raw.githubusercontent.com/yonatanmgr/university-notes/main/0366-%5BMath%5D/globals/template.typ | typst | #import "functions.typ": *
#let project(title: "", authors: (), date: none, body) = {
// Set the document's basic properties.
set document(author: authors, title: title)
set page(numbering: "1", number-align: end)
set text(font: "", lang: "he")
// Title row.
align(center)[
#block(text(weight: 700, 1... | |
https://github.com/npikall/vienna-tech | https://raw.githubusercontent.com/npikall/vienna-tech/main/src/lib.typ | typst | The Unlicense | // Thesis Template for Civil- und Environmentalengineers at TU Wien
// Sizes used across the template
#let script-size = 7pt
#let footnote-size = 8pt
#let small-size = 10pt
#let normal-size =11pt
#let large-size = 20.74pt
// Set Fonts
#let main-font = ("CMU Serif","New Computer Modern")
#let title-font = ("CMU Sans Se... |
https://github.com/Jollywatt/typst-fletcher | https://raw.githubusercontent.com/Jollywatt/typst-fletcher/master/tests/node-extrude/test.typ | typst | MIT License | #set page(width: auto, height: auto, margin: 1em)
#import "/src/exports.typ" as fletcher: diagram, node, edge
#diagram(
node-outset: 4pt,
spacing: (15mm, 8mm),
node-stroke: black + 0.5pt,
node((0, 0), $s_1$, ),
node((1, 0), $s_2$, extrude: (-1.5, 1.5), fill: blue.lighten(70%)),
edge((0, 0), (1, 0), "->", label: ... |
https://github.com/polarkac/MTG-Stories | https://raw.githubusercontent.com/polarkac/MTG-Stories/master/stories/048%20-%20Dominaria%20United/007_Death%20and%20Salvation.typ | typst | #import "@local/mtgstory:0.2.0": conf
#show: doc => conf(
"Death and Salvation",
set_name: "Dominaria United",
story_date: datetime(day: 16, month: 08, year: 2022),
author: "<NAME>",
doc
)
Eventually, all mortal beings must face their end. For humans, death is a grim cloud on the horizon. For elves... | |
https://github.com/tomeichlersmith/zen-zine | https://raw.githubusercontent.com/tomeichlersmith/zen-zine/main/lib.typ | typst | MIT License | #let zine(
zine_page_margin: 8pt,
draw_border: true,
digital: false,
contents: ()
) = {
if digital {
set page(height: 4.25in, width: 2.75in, margin: zine_page_margin)
for (i, page) in contents.enumerate() {
if i > 0 { pagebreak() }
page
}
} else {
// set printer page size (typst'... |
https://github.com/Le-foucheur/Typst-VarTable | https://raw.githubusercontent.com/Le-foucheur/Typst-VarTable/main/examples/bug1.typ | typst | MIT License | #set page(width: auto, height: auto, margin: 5pt)
#import "../tabvar.typ": *
#tabvar(
init: (
variable: $x$,
label: (
([sign], "Sign"),
([var], "Variation"),
),
),
domain: ($3$, $2$, $1$),
content: (
($+$, $-$),
(
(top, $3$),
(bottom, $2$),
(top, $ "tree"(3) $... |
https://github.com/FelipeCybis/quarto-physmed-template | https://raw.githubusercontent.com/FelipeCybis/quarto-physmed-template/main/physmed-poster-landscape/_extensions/physmed-landscape/typst-show.typ | typst | MIT License | // Typst custom formats typically consist of a 'typst-template.typ' (which is
// the source code for a typst template) and a 'typst-show.typ' which calls the
// template's function (forwarding Pandoc metadata values as required)
//
// This is an example 'typst-show.typ' file (based on the default template
// that shi... |
https://github.com/jgm/typst-hs | https://raw.githubusercontent.com/jgm/typst-hs/main/test/typ/math/matrix-alignment-05.typ | typst | Other | // Test #460 equations.
$ mat(&a+b,c;&d, e) $
$ mat(&a+b&,c;&d&, e) $
$ mat(&&&a+b,c;&&&d, e) $
$ mat(.&a+b&.,c;.....&d&....., e) $
|
https://github.com/Myriad-Dreamin/typst.ts | https://raw.githubusercontent.com/Myriad-Dreamin/typst.ts/main/fuzzers/corpora/layout/terms_04.typ | typst | Apache License 2.0 |
#import "/contrib/templates/std-tests/preset.typ": *
#show: test-page
// Test grid like show rule.
#show terms: it => table(
columns: 2,
inset: 3pt,
..it.children.map(v => (emph(v.term), v.description)).flatten(),
)
/ A: One letter
/ BB: Two letters
/ CCC: Three letters
|
https://github.com/polarkac/MTG-Stories | https://raw.githubusercontent.com/polarkac/MTG-Stories/master/stories/019%20-%20Magic%20Origins/004_Gideon’s Origin: Kytheon Iora of Akros.typ | typst | #import "@local/mtgstory:0.2.0": conf
#show: doc => conf(
"Gideon’s Origin: Kytheon Iora of Akros",
set_name: "Magic Origins",
story_date: datetime(day: 01, month: 07, year: 2015),
author: "<NAME>",
doc
)
#figure(image("004_Gideon’s Origin: Kytheon Iora of Akros/01.jpg", width: 100%), caption: [Art... | |
https://github.com/almarzn/portfolio | https://raw.githubusercontent.com/almarzn/portfolio/main/templates/typst/.template/education.typ | typst | #let education(content) = grid(
columns: (auto, 1fr),
gutter: 16pt,
..content.map(item => (align(right, item.dates), [
#text(weight: "bold", item.name)
#item.location
])).flatten()
)
| |
https://github.com/VZkxr/Typst | https://raw.githubusercontent.com/VZkxr/Typst/master/Seminario/Expo/speak.typ | typst | Exposición
\
\
* Contenidos: *
- En la introducción se da un recuento de lo planteado en la presentación.
- En el capítulo I se examinarán problemáticas generales y problemáticas visuales dentro de la enseñanza.
- En el segundo capítulo exploraremos un poco de la RP como metodología de enseñanza enfatizando el uso de ... | |
https://github.com/qujihan/typst-book-template | https://raw.githubusercontent.com/qujihan/typst-book-template/main/README.md | markdown | <div align="center">
<strong>
<samp>
[中文](./README_zh.md)
</samp>
</strong>
</div>
# Typst-book-template
> [!IMPORTANT]
> Prerequisites:
> 1. [typst](https://github.com/typst/typst): *0.12.0* or later
> 2. [typstyle](https://github.com/Enter-tainer/typstyle)
> 3. [Fonts](./fonts.json)
> - Chinese font: [Source Han... | |
https://github.com/GYPpro/Java-coures-report | https://raw.githubusercontent.com/GYPpro/Java-coures-report/main/.VSCodeCounter/2023-12-14_23-06-43/diff-details.md | markdown | # Diff Details
Date : 2023-12-14 23:06:43
Directory d:\\Desktop\\Document\\Coding\\JAVA\\Rep\\Java-coures-report
Total : 7 files, 453 codes, 80 comments, 52 blanks, all 585 lines
[Summary](results.md) / [Details](details.md) / [Diff Summary](diff.md) / Diff Details
## Files
| filename | language | code | comment ... | |
https://github.com/jgm/typst-hs | https://raw.githubusercontent.com/jgm/typst-hs/main/test/typ/compiler/methods-00.typ | typst | Other | // Test whitespace around dot.
#test( "Hi there" . split() , ("Hi", "there"))
|
https://github.com/razetime/adb_ass1 | https://raw.githubusercontent.com/razetime/adb_ass1/main/HW1_112062421.typ | typst | #set text(
font: "Linux Libertine",
size: 14pt,
)
#show link: underline
#set enum(numbering: "A.")
#align(center, text(17pt)[
*PostGIS Lab Assignment*
])
+ (30%) Answer the following questions with spatial SQL queries (Using multiple
queries is allowed). You need to explain your solutions and show the results... | |
https://github.com/jgm/typst-hs | https://raw.githubusercontent.com/jgm/typst-hs/main/test/typ/text/lang-03.typ | typst | Other | // Error: 17-20 expected two or three letter language code (ISO 639-1/2/3)
#set text(lang: "ӛ")
|
https://github.com/xrarch/books | https://raw.githubusercontent.com/xrarch/books/main/xrcomputerbook/chapaudio.typ | typst | #import "@preview/tablex:0.0.6": tablex, cellx, colspanx, rowspanx
= Audio Controller
== Introduction
To Be Designed: A 22.05KHz interrupt-driven double-buffered audio controller | |
https://github.com/arthurcadore/typst-intelbras | https://raw.githubusercontent.com/arthurcadore/typst-intelbras/main/reports/example-confidetial-en.typ | typst | MIT License | #import "../templates/report-confidential-en.typ": *
#set text(lang: "pt")
#show: doc => report(
title: "Intelbras API Test Report",
subtitle: "ITB Business Networks - Special Projects",
authors: "<NAME>",
date: "02, May 2024",
doc,
)
= as
== Close
=== Closest
asdaasdasasdaasdsaasdas
asdasdasdasasasdaakmsda... |
https://github.com/frectonz/the-pg-book | https://raw.githubusercontent.com/frectonz/the-pg-book/main/book/095.%20prcmc.html.typ | typst | prcmc.html
The Pooled-Risk Company Management Company
July 2008At this year's startup school, <NAME> gave a
talk
in which he suggested that startup founders
should do things the old fashioned way. Instead of hoping to get
rich by building a valuable company and then selling stock in a
"liquidity event," founders sho... | |
https://github.com/fenjalien/cirCeTZ | https://raw.githubusercontent.com/fenjalien/cirCeTZ/main/examples/current-shunt.typ | typst | Apache License 2.0 | #import "../../typst-canvas/canvas.typ": canvas
#lorem(30)
#figure(
canvas(length: 1cm, debug: false, {
import "../../typst-canvas/draw.typ": *
import "../circuitypst.typ": node, to
to("isourceAM", (0,0), (0,3), label: $I_0$, v: h(0.5em) + $V_0$)
to("short", (), (2,3), i: $I_0$,)
to("R", (), (2... |
https://github.com/jamesrswift/chemicoms-paper | https://raw.githubusercontent.com/jamesrswift/chemicoms-paper/main/src/elements/precis.typ | typst | #import "@preview/fontawesome:0.1.0": fa-icon
#let precis-dates(args) = {
align(bottom)[
#table(
inset: 0pt,
row-gutter: 0.15cm,
stroke: none,
columns: (1fr, 1fr),
..args.dates.map( entry =>{
return (
text(size: 7pt, entry.type),
text(s... | |
https://github.com/LDemetrios/Typst4k | https://raw.githubusercontent.com/LDemetrios/Typst4k/master/src/test/resources/suite/foundations/datetime.typ | typst | --- datetime-constructor-empty ---
// Error: 2-12 at least one of date or time must be fully specified
#datetime()
--- datetime-constructor-time-invalid ---
// Error: 2-42 time is invalid
#datetime(hour: 25, minute: 0, second: 0)
--- datetime-constructor-date-invalid ---
// Error: 2-41 date is invalid
#datetime(year:... | |
https://github.com/dead-summer/math-notes | https://raw.githubusercontent.com/dead-summer/math-notes/main/book.typ | typst |
#import "@preview/shiroa:0.1.1": *
#show: book
#book-meta(
title: "math-notes",
description: "Notes from math class",
authors: ("dead-summer",),
language: "en",
summary: [
#prefix-chapter("sample-page.typ")[Hello, typst]
= Analysis
- #chapter("notes/Analysis/ch1-measures/ch1-measures.typ")[Mea... | |
https://github.com/typst/packages | https://raw.githubusercontent.com/typst/packages/main/packages/preview/silky-report-insa/0.1.0/README.md | markdown | Apache License 2.0 | # INSA - Typst Template
Typst Template for full documents and reports for the french engineering school INSA.
## Examples
### Report
By default, the template initializes with the `insa-report` show rule, with parameters that you must fill in by yourself.
Here is an example of filled template:
```typst
#import "@previ... |
https://github.com/EliasRothfuss/vorlage_typst_doku-master | https://raw.githubusercontent.com/EliasRothfuss/vorlage_typst_doku-master/main/chapter/grundlagen.typ | typst | = Grundlagen
<cha:Grundlagen>
Zielgerichtete theoretische Grundlagen, sowohl fachliche, wie auch
methodische.
Zu den Grundlagen gehören z.~B. auch Details zur Problemstellung, der
Stand der Technik und weitere Grundlagen, welche zur
Konzeptausarbeitung, Umsetzung und Verifikation erforderlich sind.
Grundlagen haben i... | |
https://github.com/mem-courses/linear-algebra | https://raw.githubusercontent.com/mem-courses/linear-algebra/main/homework/linear-algebra-homework13.typ | typst | #import "../template.typ": *
#show: project.with(
title: "Linear Algebra Homework #13",
authors: (
(name: "<NAME> (#95)", email: "<EMAIL>", phone: "3230104585"),
),
date: "December 25, 2023",
)
#let lb = math.lambda
#let alpha = math.bold(math.alpha)
#let beta = math.bold(math.beta)
#let theta = math.bold(m... | |
https://github.com/sysu/better-thesis | https://raw.githubusercontent.com/sysu/better-thesis/main/specifications/bachelor/declaration.typ | typst | MIT License | #import "/utils/style.typ": 字号, 字体
// 学术声明页
// 参照 [中山大学本科生毕业论文(设计)写作与印制规范 2020年发](https://spa.sysu.edu.cn/zh-hans/article/1744) 电子档的示例设置格式
#let declaration() = {
align(center, text(font: 字体.黑体, size: 字号.三号)[学术诚信声明])
set text(font: 字体.宋体, size: 字号.小四)
par(justify: true, first-line-indent: 2em)[
本人郑重声明:所呈交的毕... |
https://github.com/goshakowska/Typstdiff | https://raw.githubusercontent.com/goshakowska/Typstdiff/main/tests/test_working_types/header/header.typ | typst | = Heading
= Second heading | |
https://github.com/nyeong/resume | https://raw.githubusercontent.com/nyeong/resume/main/README.md | markdown | # resume
Resume of An Subin.
PDF: https://github.com/nyeong/resume/releases
## Dependencies
- [typst]
- [noto-cjk] - [SIL Open Font License 1.1](https://github.com/notofonts/noto-fonts/blob/main/LICENSE)
[typst]: https://github.com/typst/typst
[noto-cjk]: https://github.com/notofonts/noto-cjk
## Compile
```bash
... | |
https://github.com/OrangeX4/typst-talk | https://raw.githubusercontent.com/OrangeX4/typst-talk/main/README.md | markdown | <p align="center">
<img src="images/typst-talk.png" alt="typst-talk" width=75%>
</p>
## 字体
- **西文字体:** IBM Plex Serif 和 IBM Plex Mono
- **中文字体:** Source Han Serif SC 和 Source Han Sans SC
## PDF 下载
本 PDF 使用 [Touying](https://github.com/touying-typ/touying) 包制作。
- [放映版](https://github.com/OrangeX4/typst-talk/relea... | |
https://github.com/veilkev/jvvslead | https://raw.githubusercontent.com/veilkev/jvvslead/Typst/files/9_statuses.typ | typst | #import "../sys/packages.typ": *
#import "../sys/sys.typ": *
#import "../sys/header.typ": *
// Space between header
#v(150pt)
// Shows heading
#text(size: 12pt
)[= Statuses]
| |
https://github.com/AU-Master-Thesis/thesis | https://raw.githubusercontent.com/AU-Master-Thesis/thesis/main/sections/appendix.typ | typst | MIT License | #import "../lib/mod.typ": *
// == Appendix <s.appendix>
= Internal External Iteration Schedules <appendix.iteration-schedules>
#listing(
```rust
#[derive(Clone, Copy PartialEq, Eq)]
pub struct GbpScheduleAtIteration {
pub internal: bool,
pub external: bool,
}
#[derive(Clone, Copy)]
pub struct GbpSchedulePar... |
https://github.com/fsr/rust-lessons | https://raw.githubusercontent.com/fsr/rust-lessons/master/src/lesson6.typ | typst | #import "slides.typ": *
#show: slides.with(
authors: ("<NAME>", "<NAME>"), short-authors: "H&A",
title: "Wer rastet, der rostet",
short-title: "Rust-Kurs Lesson 6",
subtitle: "Ein Rust-Kurs für Anfänger",
date: "Sommersemester 2023",
)
#show "theref": $arrow.double$
#show link: underline
#new-se... | |
https://github.com/Myriad-Dreamin/typst.ts | https://raw.githubusercontent.com/Myriad-Dreamin/typst.ts/main/fuzzers/corpora/visualize/image_04.typ | typst | Apache License 2.0 |
#import "/contrib/templates/std-tests/preset.typ": *
#show: test-page
// Test baseline.
A #box(image("/assets/files/tiger.jpg", height: 1cm, width: 80%)) B
|
https://github.com/jerrita/CQUPTypst | https://raw.githubusercontent.com/jerrita/CQUPTypst/master/template/abstract.typ | typst | #import "font.typ": *
#let abstemp(
mode: "",
abstract: [],
keywords: [],
) = {
align(center)[
#heading(
outlined: false,
numbering: none,
text(fs_2, weight: "black")[
#if mode == "cn" {"摘 要"}
else {"ABSTRACT"}
]
)
]
par(first-line-indent: 2em)[
... | |
https://github.com/rabotaem-incorporated/probability-theory-notes | https://raw.githubusercontent.com/rabotaem-incorporated/probability-theory-notes/master/sections/02-general/04-expected-value-and-variance.typ | typst | #import "../../utils/core.typ": *
== Математическое ожидание и дисперсия
#def[
Пусть $xi$ --- случайная величина такая, что $xi >= 0$ или $xi$ --- суммируемая функция. _Математическим ожиданием_ или _средним значением случайной величины_ $E xi$ называется
$
E xi = integral_Omega xi (omega) dif P(omega... | |
https://github.com/EGmux/ControlTheory-2023.2 | https://raw.githubusercontent.com/EGmux/ControlTheory-2023.2/main/unit3/rootLocusProject.typ | typst | #set heading(numbering: "1.")
exp1:
#math.equation(block: true, $ (k(S^2 - 4S + 20))/((S+2)(S+4)) $)
#figure(image("../assets/exp1.png", width: 80%), caption: []) <fig-exp1>
transform the system to type 1
but the root locus changes, rework will be needed
=== how it works
\
Given a system, create a compensator suc... | |
https://github.com/Raekker/typst_playground | https://raw.githubusercontent.com/Raekker/typst_playground/master/playground.typ | typst | #show link: underline
#set page(numbering:"1 of 1")
= Short Overview of Typst
Let's start with some comparison between _LaTeX_ and _Typst_
#table(
columns: 4 * (auto,),
align: horizon,
[Element], [LaTeX], [Typst], [See],
[Strong emphasis], [`\textbf{strong}`], [`*strong*`], [#link("https://typst.app/docs/re... | |
https://github.com/arthurcadore/eng-telecom-workbook | https://raw.githubusercontent.com/arthurcadore/eng-telecom-workbook/main/semester-7/DLP2/project2/project.typ | typst | MIT License | #import "@preview/klaro-ifsc-sj:0.1.0": report
#import "@preview/codelst:2.0.1": sourcecode
#show heading: set block(below: 1.5em)
#show par: set block(spacing: 1.5em)
#set text(font: "Arial", size: 12pt)
#set page(
footer: "Engenharia de Telecomunicações - IFSC-SJ",
)
#show: doc => report(
title: "Dispositivos Lóg... |
https://github.com/donabe8898/typst-thesis-template | https://raw.githubusercontent.com/donabe8898/typst-thesis-template/main/README.md | markdown | Apache License 2.0 | # typst-thesis-template
Typstで卒業論文書くときのテンプレ
参考: [haxibami/typst-template](https://github.com/haxibami/typst-template) |
https://github.com/horaoen/note | https://raw.githubusercontent.com/horaoen/note/main/redis-quickstart.typ | typst | Apache License 2.0 | #import "../../../typstempl/template/note.typ": note
#show: doc => note(
title: "redis quick start",
doc
)
== redis cloud |
https://github.com/Favo02-unimi/reti-di-calcolatori | https://raw.githubusercontent.com/Favo02-unimi/reti-di-calcolatori/main/README.md | markdown | ## Reti di calcolatori
Dispensa per il corso di Reti di calcolatori, tenuto di Prof. Rossi e Quadri presso l'Università degli Studi di Milano.
- Dispensa: Teoria
- Codice sorgente (Typst): [Teoria/Dispensa.typ](./Teoria/Dispensa.typ)
- Release PDF: [release di questo repository](https://github.com/Favo02/reti-di-... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.