repo stringlengths 26 115 | file stringlengths 54 212 | language stringclasses 2
values | license stringclasses 16
values | content stringlengths 19 1.07M |
|---|---|---|---|---|
https://github.com/Noxsios/cv | https://raw.githubusercontent.com/Noxsios/cv/main/cv.typ | typst | MIT License | #import "@preview/splash:0.3.0": tailwind
#set document(title: "<NAME> CV", author: "<NAME>", keywords: ("software engineer", "razzle", "<NAME>", "cv", "resume"))
#set page(
margin: (x: 0.5in, y: 0.5in),
footer: [
#set text(8pt)
#let head = read(".git/HEAD").trim()
#if head.contains(": ") {
head =... |
https://github.com/tingerrr/chiral-thesis-fhe | https://raw.githubusercontent.com/tingerrr/chiral-thesis-fhe/main/src/core/component.typ | typst | #import "component/abstract.typ": make-abstract
#import "component/acknowledgement.typ": make-acknowledgement
#import "component/appendix.typ": make-appendix
#import "component/affidavit.typ": make-affidavit
#import "component/glossary.typ": make-glossary
#import "component/table-of-contents.typ": make-table-of-content... | |
https://github.com/TypstApp-team/typst | https://raw.githubusercontent.com/TypstApp-team/typst/master/tests/typ/layout/terms.typ | typst | Apache License 2.0 | // Test term list.
---
// Test with constructor.
#terms(
([One], [First]),
([Two], [Second]),
)
---
// Test joining.
#for word in lorem(4).split().map(s => s.trim(".")) [
/ #word: Latin stuff.
]
---
// Test multiline.
#set text(8pt)
/ Fruit: A tasty, edible thing.
/ Veggie:
An important energy source
for ... |
https://github.com/domanteli0/views-presentation | https://raw.githubusercontent.com/domanteli0/views-presentation/main/views.typ | typst | // Get Polylux from the official package repository
#import "@preview/polylux:0.3.1": *
#import "@preview/polylux:0.3.1": polylux-slide as slide
// Make the paper dimensions fit for a presentation and the text larger
#set page(fill: rgb(39,40,34))
#set text(fill: rgb(255, 255, 255))
#let TEXT_SIZE = 23pt
#set text(fo... | |
https://github.com/typst/packages | https://raw.githubusercontent.com/typst/packages/main/packages/preview/big-todo/0.1.0/lib.typ | typst | Apache License 2.0 | //Function to insert TODO
#let todo(body, big_text: 40pt, small_text: 15pt, gap: 2mm) = {
set text(size: 0pt) //to hide default figure text, figures is only used for outline as only headings and figures can used for outlining at this point
figure(kind: "todo", supplement: "", outlined: true, caption: body)[
... |
https://github.com/jomaway/typst-teacher-templates | https://raw.githubusercontent.com/jomaway/typst-teacher-templates/main/ttt-utils/lib/random.typ | typst | MIT License | /// create a hash value from a seed for some content
#let hash(value, seed) = {
array(bytes(repr(value))).fold(seed, (a,b) => (a.bit-lshift(1)).bit-xor(b))
}
/// shuffle an array.
///
/// - arr (array): the array to randomize
/// - seed (int): a seed to start with. if auto the current date will be used (default).
//... |
https://github.com/typst/packages | https://raw.githubusercontent.com/typst/packages/main/packages/preview/ibanator/0.1.0/lib.typ | typst | Apache License 2.0 | #let lib = plugin("typst_iban.wasm")
/// Validates the given IBAN, returning an ISO 13616-1 formatted string if the validation was successful.
/// If the validation was unsuccessful, the function panics with an error.
///
/// iban (string): The IBAN to format.
/// validate(boolean): If true, the IBAN will be validated... |
https://github.com/gongke6642/tuling | https://raw.githubusercontent.com/gongke6642/tuling/main/制作模版/template.typ | typst | #set par(
justify: true,
leading: 0.52em,
)
= 制作模版
在本教程的前三章中,您已经学习了如何使用 Typst 编写文档、应用基本样式以及深入自定义其外观以符合发布者的样式指南。因为你在上一章写的论文取得了巨大的成功,你被要求为同一会议写一篇后续文章。这一次,您希望采用在上一章中创建的样式,并将其转换为可重用的模板。在本章中,您将学习如何创建一个模板,您和您的团队只需一个显示规则即可使用该模板。让我们开始吧!
== 玩具模版
在 Typst 中,模板是可以包装整个文档的函数。要了解如何做到这一点,让我们首先回顾一下如何编写自己的函数。他们可以做任何你想让他们做的事情,所以为什... | |
https://github.com/jeffa5/typst-cambridge | https://raw.githubusercontent.com/jeffa5/typst-cambridge/main/thesis/cambridge.typ | typst | MIT License | // Given a location at the start of a page, obtain the current
// heading. Current means:
// - The first heading on this page if present.
// - Else, the previous heading if one exists.
// - Else, return none.
#let get-current-heading(loc, level: 1) = {
let heading-selector = heading.where(level: level, outlined: true... |
https://github.com/Kasci/LiturgicalBooks | https://raw.githubusercontent.com/Kasci/LiturgicalBooks/master/SK/casoslov/casy/cas6.typ | typst | #import "/style.typ": *
#import "/SK/texts.typ": *
#import "../styleCasoslov.typ": *
= Šiesty čas
#show: rest => columns(2, rest)
#nacaloBezKnaza
#zalm(53)
#zalm(54)
#zalm(90)
#si
#lettrine("Aleluja, aleluja, aleluja, sláva tebe, Bože.") #note[(3x)]
#lettrine("Pane, zmiluj sa.") #note[(3x)]
== Tropáre
#note[Be... | |
https://github.com/Myriad-Dreamin/tinymist | https://raw.githubusercontent.com/Myriad-Dreamin/tinymist/main/crates/tinymist-query/src/fixtures/hover/annotate_fn.typ | typst | Apache License 2.0 | /// #let fn = `(..fn-args) => any`;
///
/// - fn (function, fn): The `fn`.
/// - max-repetitions (int): The `max-repetitions`.
/// - repetitions (int): The `repetitions`.
/// - args (any, fn-args): The `args`.
#let touying-fn-wrapper(fn, max-repetitions: none, repetitions: none, ..args) = none
#(/* ident after */ touy... |
https://github.com/jmuchovej/typst-iconify | https://raw.githubusercontent.com/jmuchovej/typst-iconify/main/lib.typ | typst | //! typst-iconify
//! https://github.com/jmuchovej/typst-iconify
#let iconify = state("iconify", (:))
#let from-key(name) = {
let (library, icon) = name.replace("iconify::", "").split(":")
return (library: library, icon: icon)
}
#let to-key(library: auto, icon: auto) = (library, icon).join(":")
#let icon-key(n... | |
https://github.com/hrbrmstr/2023-10-20-wpe-quarto-typst | https://raw.githubusercontent.com/hrbrmstr/2023-10-20-wpe-quarto-typst/main/params-test/_extensions/params/typst-template.typ | typst | #let article(
title: "TITLE",
footer: "FOOTER",
margin: (x: 1.25in, y: 1.25in),
paper: "us-letter",
lang: "en",
region: "US",
doc
) = {
set page(
paper: paper,
margin: margin,
footer: footer
)
set text(
lang: lang,
region: region,
)
text(
size: 24pt,
weight: 700,
... | |
https://github.com/daskol/typst-templates | https://raw.githubusercontent.com/daskol/typst-templates/main/iclr/README.md | markdown | MIT License | # International Conference on Learning Representations (ICLR)
## Usage
You can use this template in the Typst web app by clicking _Start from
template_ on the dashboard and searching for `clear-iclr`.
Alternatively, you can use the CLI to kick this project off using the command
```shell
typst init @preview/clear-ic... |
https://github.com/8LWXpg/typst-ansi-render | https://raw.githubusercontent.com/8LWXpg/typst-ansi-render/master/test/demo.typ | typst | MIT License | #import "../ansi-render.typ": ansi-render as __ansi-render, terminal-themes
#set document(date: none)
// workaround before set is implemented
#let ansi-render = __ansi-render.with(inset: 5pt, radius: 3pt, theme: terminal-themes.vscode)
= Render text directly
#ansi-render("\u{1b}[38;2;255;0;0mThis text is red.\u{1b}[0... |
https://github.com/lkoehl/typst-boxes | https://raw.githubusercontent.com/lkoehl/typst-boxes/main/README.md | markdown | MIT License | # typst-boxes
Colorful boxes in [Typst](https://github.com/typst/typst).
Check out [the example project](https://typst.app/project/rp9q3upfc69bPUCbv0BjzX) to see all boxes in action
Current features include:
- a colorful box is in four different colors (black, red, blue, green)
- a colorful box with a slanted headl... |
https://github.com/rem3-1415926/Typst_Thesis_Template | https://raw.githubusercontent.com/rem3-1415926/Typst_Thesis_Template/main/sec/sec2.typ | typst | MIT License |
= Some Chapter
#lorem(60)
== Subchapter a
#lorem(300)
== Subchapter b
#lorem(100)
=== Subsubchapter ba
#lorem(100)
=== Subsubchapter bb
#lorem(100)
=== Subsubsubchapter bba
#lorem(100)
==== StoppedCountingchapter bbaa
#lorem(100) |
https://github.com/SWATEngineering/Docs | https://raw.githubusercontent.com/SWATEngineering/Docs/main/src/2_RTB/NormeDiProgetto/meta.typ | typst | MIT License | #let title = "Norme di Progetto" |
https://github.com/soul667/typst | https://raw.githubusercontent.com/soul667/typst/main/PPT/typst-slides-fudan/themes/polylux/book/src/themes/gallery/university.typ | typst | #import "../../../../polylux.typ": *
#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: "Uni... | |
https://github.com/lucifer1004/leetcode.typ | https://raw.githubusercontent.com/lucifer1004/leetcode.typ/main/helpers.typ | typst | #let zip(..lists) = {
let lists = lists.pos()
if lists == () {
()
} else {
let ret = ()
let len = lists.fold(
lists.first().len(),
(a, b) => if a > b.len() { b.len() } else { a }
)
for i in range(0, len) {
let curr = ()
for list in lists {
curr.push(list.at(i)... | |
https://github.com/nafkhanzam/typst-common | https://raw.githubusercontent.com/nafkhanzam/typst-common/main/src/common/currency.typ | typst | #let round-fixed-str(num, d) = {
let res = str(calc.round(num, digits: d))
let pad = res.split(".")
let post-len = 0
if pad.len() < 2 {
if d != none and d > 0 {
res += "."
}
} else if pad.len() >= 2 {
post-len = pad.at(1).len()
}
pad = d - post-len
while pad > 0 {
res += "0"
pa... | |
https://github.com/jgm/typst-hs | https://raw.githubusercontent.com/jgm/typst-hs/main/test/typ/compiler/call-10.typ | typst | Other | // Error: 2:1 expected quote
#func("]
|
https://github.com/Myriad-Dreamin/typst.ts | https://raw.githubusercontent.com/Myriad-Dreamin/typst.ts/main/fuzzers/corpora/text/smartquotes_02.typ | typst | Apache License 2.0 |
#import "/contrib/templates/std-tests/preset.typ": *
#show: test-page
//
// // Error: 25-28 expected 2 characters, found 1 character
// #set smartquote(quotes: "'") |
https://github.com/ClazyChen/Table-Tennis-Rankings | https://raw.githubusercontent.com/ClazyChen/Table-Tennis-Rankings/main/WS-latest_CN.typ | typst |
#set text(font: ("Courier New", "NSimSun"))
#figure(
caption: "Women's Singles (1 - 32)",
table(
columns: 4,
[排名], [运动员], [国家/地区], [积分],
[1], [孙颖莎], [CHN], [3581],
[2], [陈梦], [CHN], [3488],
[3], [王曼昱], [CHN], [3438],
[4], [早田希娜], [JPN], [3339],
[5], [张本美和], [JPN], [3277]... | |
https://github.com/FelipeCybis/quarto-physmed-template | https://raw.githubusercontent.com/FelipeCybis/quarto-physmed-template/main/README.md | markdown | MIT License | ## Physmed Templates for Quarto
This repository provides Quarto custom formats for slightly modified slide templates (revealjs)
and posters (typst) that can be used by people in the Physics for Medicine Institute.
Templates here are very much inspired provided by formats found in
[Awesome quarto#Presentation formats]... |
https://github.com/darioglasl/Arbeiten-Vorlage-Typst | https://raw.githubusercontent.com/darioglasl/Arbeiten-Vorlage-Typst/main/Anhang/03_Projektplan/00_index.typ | typst | == Projektplan
In diesem Kapitel vom Anhang wird auf das Projektmanagement, die Planung und das Risikomanagement eingegangen.
#include "00_projektmanagement.typ"
#include "01_planung.typ"
#include "02_risikomanagement.typ" | |
https://github.com/Woodman3/modern-ysu-thesis | https://raw.githubusercontent.com/Woodman3/modern-ysu-thesis/main/pages/bachelor-cover.typ | typst | MIT License | #import "../utils/datetime-display.typ": datetime-display
#import "../utils/style.typ": 字号, 字体
#import "../utils/custom-cuti.typ": fakebold
#import "../utils/indent.typ": fake-par,indent
// 本科生封面
#let bachelor-cover(
// documentclass 传入的参数
anonymous: false,
twoside: false,
fonts: (:),
info: (:),
// 其他参数
... |
https://github.com/SeniorMars/tree-sitter-typst | https://raw.githubusercontent.com/SeniorMars/tree-sitter-typst/main/examples/compiler/methods.typ | typst | MIT License | // Test method calls.
// Ref: false
---
// Test whitespace around dot.
#test( "Hi there" . split() , ("Hi", "there"))
---
// Test mutating indexed value.
#{
let matrix = (((1,), (2,)), ((3,), (4,)))
matrix.at(1).at(0).push(5)
test(matrix, (((1,), (2,)), ((3, 5), (4,))))
}
---
// Test multiline chain in code bl... |
https://github.com/ryuryu-ymj/mannot | https://raw.githubusercontent.com/ryuryu-ymj/mannot/main/README.md | markdown | MIT License | # Mannot
A package for highlighting and annotating in math blocks in [Typst](https://typst.app/).
A full documentation is [here](docs/doc.pdf).
## Example
```typst
$
mark(1, tag: #<num>) / mark(x + 1, tag: #<den>, color: #blue)
+ mark(2, tag: #<quo>, color: #red)
#annot(<num>, pos: top)[Numerator]
#annot(<den>)[Deno... |
https://github.com/polarkac/MTG-Stories | https://raw.githubusercontent.com/polarkac/MTG-Stories/master/stories/044%20-%20Innistrad%3A%20Crimson%20Vow/003_Episode%202%3A%20The%20Dolorous%20Weight%20of%20Pleasantries.typ | typst | #import "@local/mtgstory:0.2.0": conf
#show: doc => conf(
"Episode 2: The Dolorous Weight of Pleasantries",
set_name: "Innistrad: Crimson Vow",
story_date: datetime(day: 03, month: 11, year: 2021),
author: "<NAME>",
doc
)
"Have you seen her yet?"
"No, have you?"
"Terrible, just terrible, to make ... | |
https://github.com/Han-duoduo/mathPater-typest-template | https://raw.githubusercontent.com/Han-duoduo/mathPater-typest-template/main/chapter/chap6.typ | typst | Apache License 2.0 | = 模型的评价与分析
模型的优点:在本题中,通过写出冲突、混淆和干扰三种情况对应的MR数矩阵,结合整数规划进行决策,从而求得较优解。在处理具体问题时,由于决策变量可能性太多,故根据概率论中的大数定律使用蒙特卡洛仿真模拟法从而避免了遍历,大大加速了模型的计算速度并且证明了在实验次数达到一定次数时所模拟的最优解是较好的局部解。在求解多目标规划时,采用分层序列方法,取一定范围内的较优解从而整个模型具有通用性,同时根据大数定律灵敏度较低,受到外界因素导致错误的概率较低。
模型的不足:由于蒙特卡洛法的无可避免的弊端性,在本模型中使用的蒙特卡洛方法与实际结果之间存在误差,每次模拟的结果具有随机性所以无法确保所得的解一定是全局最优解,只能得到较... |
https://github.com/sdsc-ordes/modos-poster | https://raw.githubusercontent.com/sdsc-ordes/modos-poster/main/src/sdsc_poster.typ | typst | Creative Commons Attribution 4.0 International | #import "/src/themes/themes.typ"
#import "/src/utils/scripts.typ"
|
https://github.com/sebaseb98/clean-math-thesis | https://raw.githubusercontent.com/sebaseb98/clean-math-thesis/main/chapter/conclusions_outlook.typ | typst | MIT License | = Conclusions and Outlook <chap:conclusions_outlook>
#lorem(300) |
https://github.com/RhenzoHideki/dlp2 | https://raw.githubusercontent.com/RhenzoHideki/dlp2/main/relatorio-03/relatorio-03.typ | typst |
#import "@preview/klaro-ifsc-sj:0.1.0": report
#show: doc => report(
title: "Modificações Timer",
subtitle: "DISPOSITIVOS LÓGICOS PROGRAMÁVEIS II (DLP029007)",
// Se apenas um autor colocar , no final para indicar que é um array
authors:("<NAME>,<NAME>",),
date: "2 de abril de 2024",
doc,
... | |
https://github.com/kdog3682/2024-typst | https://raw.githubusercontent.com/kdog3682/2024-typst/main/src/canvas-functions.typ | typst | #set page(width: auto, height: auto, margin: .5cm)
#import "@preview/cetz:0.2.0": draw, chart
#import "@preview/cetz:0.2.0"
#let canvas-functions = (
line: draw.line,
circle: draw.circle,
rect: draw.rect,
group: draw.group,
grid: draw.grid,
piechart: chart.piechart,
bluechart: chart.piechart.with(inner-l... | |
https://github.com/NOOBDY/formal-language | https://raw.githubusercontent.com/NOOBDY/formal-language/main/q6.typ | typst | The Unlicense | #let q6 = [
6.
+ Given an alphabet $Sigma$, for any language $L subset.eq Sigma^ast$, prove that $L^(**) = L^*$ and $L^*L^* = L^*$.
Proof $L^(**) = L^*$
$ because L^*L^* &= L^* \
therefore L^(**) &= L^*L^* ... L^* \
&= L^* $
Proof $L^*L^* = L^*$
$ L^* L^* &= (L^+ union epsilon.alt)(L^+... |
https://github.com/Skimmeroni/Appunti | https://raw.githubusercontent.com/Skimmeroni/Appunti/main/Statistica4AI/Introduction/Probability.typ | typst | Creative Commons Zero v1.0 Universal | #import "../Stats4AI_definitions.typ": *
Probability provides methods to quantify chance and randomness related to a
certain event. Any activity or process having at least one outcome, all being
random (not knowable in advance) is called an *experiment*. The set containing
all possible outcomes of an experiment, denot... |
https://github.com/YunkaiZhang233/a-level-further-maths-topic-questions-david-game | https://raw.githubusercontent.com/YunkaiZhang233/a-level-further-maths-topic-questions-david-game/main/fs1/chi-square.typ | typst | #import "../template.typ": *
#import "../shortcut.typ": *
#prob(
[Edexcel IAL Statistics 3, June 2022, Q7],
[
The following table shows observed frequencies, where $x$ is an integer, from an experiment to test whether or not a six-sided die is biased.
#table(
columns: (80pt, 60pt, 60pt, 60pt, 60pt, ... | |
https://github.com/adfaure/invoice-template | https://raw.githubusercontent.com/adfaure/invoice-template/main/README.md | markdown | MIT License | # invoice-template
## Install the template
Install following:
https://github.com/typst/packages/?tab=readme-ov-file#local-packages
## Result
The file example.pdf shows an invoice example generated with this template.
## Compile
Install typst, or use the flake file with `nix develop`
Then `typst compile example.t... |
https://github.com/lyzynec/hys-or-kys | https://raw.githubusercontent.com/lyzynec/hys-or-kys/main/06/main.typ | typst | #import "../lib.typ": *
#knowledge[
#question(name: [Define a reset system as a subset of hybrid systems.])[]
#question(name: [Define a switched/switching systems and discuss the
mechanisms for switching.])[]
#question(name: [Define a piecewise affine (PWA) system.])[]
#question(name: [Enumerate an... | |
https://github.com/dismint/docmint | https://raw.githubusercontent.com/dismint/docmint/main/security/quiz1.typ | typst | #import "template.typ": *
#show: template.with(
title: "Quiz 1",
subtitle: "6.566"
)
= OS and VM Isolation
The motivation for this lecture is to solve the problem of isolation. We want to stop different containers from having access to each other to prevent malicious use cases.
== Linux Processes
Uses UIDs as w... | |
https://github.com/topdeoo/NENU-Thesis-Typst | https://raw.githubusercontent.com/topdeoo/NENU-Thesis-Typst/master/layout/mainmatter.typ | typst | #import "../fonts/fonts.typ": font-family, font-size
#import "@preview/i-figured:0.2.4"
#import "@preview/numbly:0.1.0": numbly
#import "../utils/format.typ": fake-par, unpack
/// 正文部分设置
#let mainmatter(
fonts: (:),
// TODO 支持硕士论文的书写规范要求
text-args: auto,
//! 标题配置
heading-font: auto,
heading-size: (font-siz... | |
https://github.com/typst/packages | https://raw.githubusercontent.com/typst/packages/main/packages/preview/ascii-ipa/1.1.0/src/lib.typ | typst | Apache License 2.0 | #import "translations/branner.typ": *
#import "translations/praat.typ": *
#import "translations/sil.typ": *
#import "translations/xsampa.typ": *
#let apply-translations(content, translations, reverse) = {
let (from, to) = if reverse {( 1, 0 )} else {( 0, 1 )}
for translation in translations {
content = conten... |
https://github.com/xubaiw/typst-rote | https://raw.githubusercontent.com/xubaiw/typst-rote/main/README.md | markdown | # Typst Rote
This package includes utility functions for creating rote learning materials in typst.
These functions utilize the `terms` and `underline` elements to create cloze test and mnemonic test.
See `example.typ` for basic usage.
## Installation
This package is not mature enough to be published to Typst Univ... | |
https://github.com/alerque/polytype | https://raw.githubusercontent.com/alerque/polytype/master/content/prime-symbol.md | markdown | +++
title = "The Prime Symbol"
description = "In math mode, prime-time is always a good time."
extra.typesetters = [ "typst", "sile", "xelatex", "groff" ]
extra.typesetter_args = { groff = "-e -P-pA7" }
+++
Assorted ways of entering and rendering the troublesome prime symbol.
One issue is in math mode.
A typesetter h... | |
https://github.com/saurabtharu/Internship-repo | https://raw.githubusercontent.com/saurabtharu/Internship-repo/main/Internship%20Report%20-%20typst/chapters/chapter-4-conclusion%20and%20learning%20outcomes.typ | typst | #import "../template.typ": *
= Chapter 4: Conclusion and Learning Outcomes
\
/*
== 4.1. Completed Tasks
#v(15pt, weak: true)
#set enum(numbering: "i.")
+ Sucessfully deployed nginx website and implemented SSL Certificate for secure communication.
+ Deployed Java Application in tomcat and configured nginx for reverse... | |
https://github.com/UBOdin/data_structures_book | https://raw.githubusercontent.com/UBOdin/data_structures_book/main/chapters/4-lists.typ | typst | #import "@preview/cetz:0.2.2"
= The Sequence and List ADTs
Now that we have the right language to talk about algorithm runtimes (asymptotic complexity), we can start talking about actual data structures that these algorithms can use.
Since the choice of data structure can have a huge impact on the complexity of an al... | |
https://github.com/vonhyou/typst-resume-template | https://raw.githubusercontent.com/vonhyou/typst-resume-template/master/section.typ | typst | #let list_items(items: ()) = {
for item in items {
let left_item = item.at(0)
let right_item = item.at(1)
text(left_item + h(1fr) + right_item)
}
}
#let section(
title: "Section",
items: ()
) = {
grid(
columns: (65pt, auto),
gutter: 10pt,
text(size: 12pt, weight: "bold", smallcap... | |
https://github.com/typst/packages | https://raw.githubusercontent.com/typst/packages/main/packages/preview/yagenda/0.1.0/README.md | markdown | Apache License 2.0 | # yagenda
A Typst template for meeting agendas using Yaml for agenda items. To get started:
```typst
typst init @preview/yagenda:0.1.0
```
And edit the `main.typ` example. The data are drawn from `agenda.yaml`.

## Contributing
PRs are welcome! And if you encounter any b... |
https://github.com/Skimmeroni/Appunti | https://raw.githubusercontent.com/Skimmeroni/Appunti/main/Matematica4AI/LinAlg/Spaces.typ | typst | Creative Commons Zero v1.0 Universal | #import "../Math4AI_definitions.typ": *
Let $V$ be a set, whose elements are called *vectors*. A vector $underline(v)$
is denoted as $underline(v) = (v_(1), v_(2), dots, v_(n))$, where each $v_(i)$
with $1 lt.eq i lt.eq n$ is called the $i$-th *component* of $underline(v)$.
Let $+$ be an operation on such set, a _sum... |
https://github.com/taooceros/MATH-542-HW | https://raw.githubusercontent.com/taooceros/MATH-542-HW/main/Midterm/Midterm.typ | typst | #import "@local/homework-template:0.1.0": *
#let tensor = $times.circle$
#let div = $\/$
= Problem 1
Let $A = ZZ div 3 cplus ZZ div 12$. Find the number of elements in $A tensor_ZZ A$.
#let zmod(x) = $ZZ div #x$
#let solution = solution.with(base_level: 0)
#solution[
$
A tensor_ZZ A
&= (ZZ div 3 cplu... | |
https://github.com/soarowl20240613/geelypaper | https://raw.githubusercontent.com/soarowl20240613/geelypaper/main/opening.typ | typst | #let noindent(body) = {
set par(first-line-indent: 0em)
body
}
#let opening(
title: "",
faculty: "",
profession: "",
author: "",
studentnumber: "",
adviser: "",
purpose: none,
status: none,
method: none,
result: none,
plan: none,
bibliography: none,
audit: none,
body: none,
) = {
set ... | |
https://github.com/Myriad-Dreamin/tinymist | https://raw.githubusercontent.com/Myriad-Dreamin/tinymist/main/syntaxes/textmate/tests/unit/basic/include.typ | typst | Apache License 2.0 | #include
#include "ident.typ"
#include;"ident.typ"
#include"ident.typ";
#include("ident.typ");
#include { "ident.typ" }; |
https://github.com/LDemetrios/Typst4k | https://raw.githubusercontent.com/LDemetrios/Typst4k/master/src/test/resources/suite/scripting/ops.typ | typst | // Test binary expressions.
--- ops-add-content ---
// Test adding content.
#([*Hello* ] + [world!])
--- ops-unary-basic ---
// Test math operators.
// Test plus and minus.
#for v in (1, 3.14, decimal("12.43"), 12pt, 45deg, 90%, 13% + 10pt, 6.3fr) {
// Test plus.
test(+v, v)
// Test minus.
test(-v, -1 * v)
... | |
https://github.com/metamuffin/typst | https://raw.githubusercontent.com/metamuffin/typst/main/tests/typ/visualize/svg-text.typ | typst | Apache License 2.0 | // Test SVG with text.
---
#set page(width: 250pt)
#figure(
image("/diagram.svg"),
caption: [A textful diagram],
)
|
https://github.com/Walfisch115/thb-typst-template | https://raw.githubusercontent.com/Walfisch115/thb-typst-template/main/thesis/main.typ | typst | #import "conf.typ": conf
#show: conf.with(
title: "TITEL",
author: "AUTOR",
matrikelNumber: 12345678,
supervisor: "ERSTER",
secondReviewer: "ZWEITER",
place: "TATTOOINE",
date: "HEUTE",
abstract: lorem(70),
)
= Einleitung
Dies ist ein Typoblindtext. An ihm kann man sehen, ob alle Buchstaben da sind u... | |
https://github.com/polarkac/MTG-Stories | https://raw.githubusercontent.com/polarkac/MTG-Stories/master/stories/004%20-%20Dragon's%20Maze/011_Battle%20for%20the%20Ninth.typ | typst | #import "@local/mtgstory:0.2.0": conf
#show: doc => conf(
"Battle for the Ninth",
set_name: "Dragon's Maze",
story_date: datetime(day: 19, month: 06, year: 2013),
author: "<NAME>",
doc
)
Gideon wiped the dirt and dust from his face and smiled.
"They took the bait," Anza said excitedly, as pieces o... | |
https://github.com/polarkac/MTG-Stories | https://raw.githubusercontent.com/polarkac/MTG-Stories/master/stories/029%20-%20Aether%20Revolt/004_Revolution%20Begins.typ | typst | #import "@local/mtgstory:0.2.0": conf
#show: doc => conf(
"Revolution Begins",
set_name: "Aether Revolt",
story_date: datetime(day: 02, month: 01, year: 2017),
author: "<NAME>, <NAME> & <NAME>",
doc
)
#emph[In a bid for power, Tezzeret installed himself as Grand Consul; now he holds the city of Ghi... | |
https://github.com/Fabioni/Typst-TUM-Thesis-Template | https://raw.githubusercontent.com/Fabioni/Typst-TUM-Thesis-Template/main/template.typ | typst | MIT No Attribution | #import "cover.typ": *
#import "titlepage.typ": *
#import "disclaimer.typ": *
#import "acknowledgement.typ": *
#import "abstract.typ": *
#let tum-exzellenz-thesis(
degree: "The degree",
program: "The Program",
supervisor: "Your Supervisor",
advisors: ("The first advisor", "The second advisor"),
author: "<NA... |
https://github.com/giZoes/justsit-thesis-typst-template | https://raw.githubusercontent.com/giZoes/justsit-thesis-typst-template/main/resources/utils/bilingual-bibliography.typ | typst | MIT License | // Authors: csimide, OrangeX4
// Tested only on GB-7714-2015-Numeric
#let bilingual-bibliography(
bibliography: none,
title: "参考文献",
full: false,
style: "gb-7714-2015-numeric",
mapping: (:),
) = {
assert(bibliography != none, message: "请传入带有 source 的 bibliography 函数。")
// Please fill in the remaining map... |
https://github.com/tiankaima/typst-notes | https://raw.githubusercontent.com/tiankaima/typst-notes/master/feebf7-2023_fall_TA/lectures/lecture_2.typ | typst | #import "../utils.typ": *
= Lecture 2 & 3
```plain
Time: Week 2, 9.13 Wed & 9.15 Fri
```
== 数列极限
刻画「收敛」的方式:
#definintion(name: "数列极限")[
$epsilon - N$语言:
$ forall epsilon > 0, exists N, forall n > N, abs(a_n - a) < epsilon quad => quad lim_(n -> infinity) a_n = a $
]
记号:
$
cases(
lim a_n = a,
lim_(n -> infi... | |
https://github.com/dainbow/MatGos | https://raw.githubusercontent.com/dainbow/MatGos/master/themes/35.typ | typst |
#import "../conf.typ": *
= Дифференцируемость функции комплексного переменного. Условия Коши-Римана. Интегральная теорема Коши.
== Дифференцируемость функции комплексного переменного. Условия Коши-Римана
#note[
В ТФКП используются следующие станартные оборзначения
$z$ - комплексная переменная
$z = x + i y : x... | |
https://github.com/Jollywatt/typst-fletcher | https://raw.githubusercontent.com/Jollywatt/typst-fletcher/master/tests/label-fill/test.typ | typst | MIT License | #set page(width: auto, height: auto, margin: 1em)
#import "/src/exports.typ" as fletcher: diagram, node, edge
#diagram(
crossing-fill: gray,
edge((0,0), (1,1), "->", [no fill], label-side: right),
edge((1,0), (2,1), "->", [fill], label-side: center),
edge((2,0), (3,1), "->", [fill], label-fill: true),
)
\
#diagram... |
https://github.com/ad-si/invoice-maker | https://raw.githubusercontent.com/ad-si/invoice-maker/master/examples/minimal-data.typ | typst | ISC License | #import "../invoice-maker.typ": *
#show: invoice.with(
hourly-rate: 1,
issuing-date: "2024-03-24", // Must be set to not break tests
biller: (
name: "ACME Corporation",
vat-id: "GB123456789",
iban: "GB29 NWBK 6016 1331 9268 19",
address: (
country: "United Kingdom",
city: "London",
... |
https://github.com/Julian-Wassmann/chapter-utils | https://raw.githubusercontent.com/Julian-Wassmann/chapter-utils/main/0.1.0/util/chapter-numbering.typ | typst | #let chapter-numbering(
depth: 1,
seperator: ".",
numbering-pattern: "1",
location: none,
) = {
locate(loc => {
if type(location) == "location" {
loc = location
}
counter(heading).at(loc)
.enumerate()
.filter(((level, ..)) => depth == none or level < depth)
.map(((.., headi... | |
https://github.com/jomaway/typst-bytefield | https://raw.githubusercontent.com/jomaway/typst-bytefield/main/lib/states.typ | typst | MIT License | // states
#let default-row-height = state("bf-row-height", 2.5em);
#let default-header-font-size = state("bf-header-font-size", 9pt);
#let default-field-font-size = state("bf-field-font-size", auto);
#let default-note-font-size = state("bf-note-font-size", auto);
#let default-header-background = state("bf-header-bg", n... |
https://github.com/polarkac/MTG-Stories | https://raw.githubusercontent.com/polarkac/MTG-Stories/master/stories/027%20-%20Conspiracy%3A%20Take%20the%20Crown/004_Proclamation%20by%20Adriana%2C%20Captain%20of%20the%20Guard.typ | typst | #import "@local/mtgstory:0.2.0": conf
#show: doc => conf(
"Proclamation by Adriana, Captain of the Guard",
set_name: "Conspiracy: Take the Crown",
story_date: datetime(day: 16, month: 08, year: 2016),
author: "<NAME>",
doc
)
Free Citizens of Paliano:
When you fell asleep last night, you were loyal... | |
https://github.com/SkiFire13/eh-presentation-shellcode | https://raw.githubusercontent.com/SkiFire13/eh-presentation-shellcode/master/task3.typ | typst | #import "@preview/polylux:0.3.1": *
#import "unipd.typ": *
#new-section[ Task 3 ]
#slide[
- Repeat task 1.b
- but with 64 bit
]
#new-section[ Task 3: Solution ]
#slide[
```asm
; The following code calls execve("/bin/sh", ...)
xor rdx, rdx ; 3rd argument
push rdx
mov rax,'#/bin/sh'
sh... | |
https://github.com/0xPARC/0xparc-intro-book | https://raw.githubusercontent.com/0xPARC/0xparc-intro-book/main/src/fs.typ | typst | #import("preamble.typ"):*
= Making it non-interactive: Fiat--Shamir
As we described it,
PLONK is an interactive protocol.
Peggy sends Victor some data;
Victor reads that data and sends back a random challenge.
Peggy sends back some more data;
Victor replies with more challenges.
After a few rounds of this,
the protoc... | |
https://github.com/The-Notebookinator/notebookinator | https://raw.githubusercontent.com/The-Notebookinator/notebookinator/main/themes/linear/entry-types.typ | typst | The Unlicense | #import "colors.typ": *
#let entry-type-metadata = (
"identify": light-red,
"brainstorm": light-yellow,
"decide": light-green,
"build": light-blue,
"program": light-purple,
"test": light-pink,
"management": gray,
"notebook": gray,
)
|
https://github.com/binhtran432k/ungrammar-docs | https://raw.githubusercontent.com/binhtran432k/ungrammar-docs/main/contents/requirements-analysis/index.typ | typst | #import "/components/glossary.typ": gls
= Requirements Analysis
== Functional requirements
This section outlines the functional requirements for a robust language support
system centered around Ungrammar, a grammar definition language. To achieve
maximum flexibility and adaptability, the system is designed a... | |
https://github.com/Myriad-Dreamin/tinymist | https://raw.githubusercontent.com/Myriad-Dreamin/tinymist/main/syntaxes/textmate/tests/unit/bugs/bad_show.typ | typst | Apache License 2.0 | #show math.equation: i-figured.show-equation.with(level:0,numbering:"(1)")
A and B |
https://github.com/yhtq/Notes | https://raw.githubusercontent.com/yhtq/Notes/main/计算机网络/数据链路层.typ | typst | #import "../template.typ": *
#show: note.with(
title: "计算机网络",
author: "YHTQ",
date: none,
logo: none,
)
#let chapter3 = [
= 数据链路层
== 位置与功能
位于物理层和网络层之间,负责对下层物理层的比特流汇聚,并对上层网络层提供明确的接口。\
在其下的数据链路层更多涉及通讯技术,本门课基本不涉及。
基本接口:
+ 主机、路由器统称节点
+ 连续两个站点间的物理链路:信道,可能有限或无线
+ 数据单位:帧
媒体访问协议 (MAC, Med... | |
https://github.com/TempContainer/typnotes | https://raw.githubusercontent.com/TempContainer/typnotes/main/sicm/lag_mech.typ | typst | #import "/book.typ": book-page
#import "/templates/my-template.typ": *
#show: book-page.with(title: "Lagrangian Mechanics")
#show: template
= 拉格朗日力学 (Lagrangian Mechanics)
系统的运动可以通过系统每个部分在每个时刻的位置给出. 这种对运动的描述称为*位形路径 (configuration path)*, 他是一个以时间为自变量的函数. 我们想要一种 path-distinguishing function, 它输入一个位形路径并产生一些输出, 当这个路径是可实... | |
https://github.com/yhtq/Notes | https://raw.githubusercontent.com/yhtq/Notes/main/数理逻辑/作业/ml-2_1-hw.typ | typst | #import "../../template.typ": proof, note, corollary, lemma, theorem, definition, example, remark
#import "../../template.typ": *
#import "../main.typ": not1, True, False, infer
#import "../main.typ": *
#show: note.with(
title: "作业2_1",
author: "YHTQ",
date: datetime.today().display(),
logo: none,
withOutline... | |
https://github.com/senaalem/ISMIN_reports_template | https://raw.githubusercontent.com/senaalem/ISMIN_reports_template/main/README.md | markdown | # _Template_ rapport ISMIN
Ce _template_ est celui que j'utilise pour écrire mes rapports à l'EMSE.
Il utilise le langage Typst et est grandement inspiré de [celui de <NAME>](https://github.com/thimotedupuch/Template_Rapport_ISMIN_Typst)
ainsi que du [_template_ Bubble](https://github.com/hzkonor/bubble-template).
... | |
https://github.com/tiankaima/typst-svgs | https://raw.githubusercontent.com/tiankaima/typst-svgs/master/240930fe-demo/main.typ | typst | #set page(width: auto, height: auto, margin: 0pt)
$
lim_(x->oo) (sin x) / x = 0
$ | |
https://github.com/Myriad-Dreamin/tinymist | https://raw.githubusercontent.com/Myriad-Dreamin/tinymist/main/docs/tinymist/frontend/neovim.typ | typst | Apache License 2.0 | #import "/docs/tinymist/frontend/mod.typ": *
#show: book-page.with(title: "Tinymist Neovim Extension")
Run and configure tinymist in neovim for Typst.
== Features
<features>
See #link("https://github.com/Myriad-Dreamin/tinymist#features")[Tinymist Features] for a list of features.
#include "common-finding-executabl... |
https://github.com/maxgraw/bachelor | https://raw.githubusercontent.com/maxgraw/bachelor/main/apps/document/src/0-base/0-index.typ | typst | #set page(numbering: "I", number-align: right)
#counter(page).update(1)
#include "1-oath.typ"
#include "2-abstract.typ"
#include "3-short.typ"
#include "4-outline.typ"
#include "5-figures.typ"
#include "listing.typ"
#include "6-abbreviations.typ" | |
https://github.com/lucannez64/Notes | https://raw.githubusercontent.com/lucannez64/Notes/master/Olympiades_Groupes_Partie_2.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: "Olympiades Groupes Partie 2",
authors: (
"<NAME>",
),
date: "30 Octobre, 2023",
)
#set heading(numbering: "1.1.")
== Exercices académ... | |
https://github.com/ivaquero/lang-speeches | https://raw.githubusercontent.com/ivaquero/lang-speeches/main/README.md | markdown | # Collection of Contemporary Speeches by Non-English Speakers
A collection of famous contemporary speeches in typst format.
## Compilation
To compile with the template, refer to the guide of this [repo](https://github.com/ivaquero/scibook).
| |
https://github.com/piepert/philodidaktik-hro-phf-ifp | https://raw.githubusercontent.com/piepert/philodidaktik-hro-phf-ifp/main/src/parts/spue/planung/tipps.typ | typst | Other | == Allgemeine Hinweise
+ Mehrere SPÜs in unterschiedlichen Fächern im selben Semester zu machen, ist zeitlich extrem fordernd und sollte vermieden werden!
+ Sie sind Teil einer Gruppe, es arbeitet sich einfacher gemeinsam.
+ Sprechen Sie mit...
- ... ihren Mitstudierenden, um neue Ideen und Unterstützung zu beko... |
https://github.com/Selflocking/cdut-typst | https://raw.githubusercontent.com/Selflocking/cdut-typst/master/report.typ | typst | MIT License | #import "fonts.typ": 字体
#import "fonts.typ": 字号
#set page("a4",
margin: (bottom: 150pt),
footer: [
#set align(center)
#set text(font: 字体.宋体, size: 字号.小三)
#text("2023 年 5 月 20 日")
],
)
// logo
#set align(center)
#image("images/cdut.png", height: 64pt)
#let course="《Python 程序设计》"
#let topic="论如何给母猪做产后护理"
#let na... |
https://github.com/kdog3682/mathematical | https://raw.githubusercontent.com/kdog3682/mathematical/main/0.1.0/src/examples/3d-cetz-attempt-2.typ | typst | // status: works
#import "@preview/cetz:0.2.2"
#import cetz.draw: *
#let get-cube-segments(x, y, z) = {
let length = 3
let vertices = (
(x, y, z),
(x + length, y, z),
(x + length, y + length, z),
(x, y + length, z),
(x, y, z + length),
(x + length, y, z + length),
(x + length, y + leng... | |
https://github.com/dainbow/MatGos | https://raw.githubusercontent.com/dainbow/MatGos/master/themes/4.typ | typst | #import "../conf.typ": *
= Теоремы о среднем Ролля, Лагранжа и Коши для дифференцируемых функций.
== Теорема Ролля
#definition[
Пусть $f$ определена в некоторой $delta_0$ окрестности точки $x_0$. Если
#eq[
$exists delta in (0, delta_0) : forall x in U_delta (x_0) : space f(x) <= f(x_0)$
]
то $x_0$ -- *точ... | |
https://github.com/YakBarber/resume | https://raw.githubusercontent.com/YakBarber/resume/master/resume.typ | typst |
// document-level formatting {{{1
#set page(
margin: 0.5in,
paper: "us-letter",
)
#set text(9pt)
#show link: content => underline(text(blue)[#content])
// function definitions {{{1
#let make_header(place, role, dates) = [
#if role=="" [
== #place #h(1fr) #dates
] else [
== #place, _#role _ #h(1fr) #date... | |
https://github.com/RaphGL/ElectronicsFromBasics | https://raw.githubusercontent.com/RaphGL/ElectronicsFromBasics/main/DC/chap5/5_power_calculations.typ | typst | Other | #import "../../core/core.typ"
=== Power calculations
When calculating the power dissipation of resistive components, use any
one of the three power equations to derive the answer from values of
voltage, current, and/or resistance pertaining to each component:
#image("static/10021.png")
This is easily managed by add... |
https://github.com/fenjalien/metro | https://raw.githubusercontent.com/fenjalien/metro/main/src/impl/impl.typ | typst | Apache License 2.0 | #import "unit.typ": unit, tothe, raiseto, qualifier
#import "num/num.typ": num
#import "qty.typ": qty
#import "array.typ": num-list, num-product, num-range, qty-list, qty-product, qty-range
#import "complex.typ": complex
#import "angle.typ": ang |
https://github.com/madhank93/typst-resume-template | https://raw.githubusercontent.com/madhank93/typst-resume-template/main/john_doe.typ | typst | #import "templates/template.typ": *
#show: resume.with(
author: (
firstname: "John",
lastname: "Doe",
positions: ("software engineer", "devops specialist"),
contact: (
phone: "+1 123 456 7890",
email: "<EMAIL>",
github: "johndoe",
linkedin: "johndoe"
),
professional_su... | |
https://github.com/maxgraw/bachelor | https://raw.githubusercontent.com/maxgraw/bachelor/main/apps/document/src/6-evaluation/discussion.typ | typst | In diesem Kapitel werden die Ergebnisse der Evaluation der Augmented Reality Konstruktionsumgebung für Möbelsysteme auf Basis von WebXR kritisch beleuchtet. Ziel der Evaluation war es, eine gute User Experience der Anwendung zu validieren.
Die Evaluation wurde mithilfe des UEQ-Fragebogens durchgeführt. Hierbei muss zu... | |
https://github.com/typst/packages | https://raw.githubusercontent.com/typst/packages/main/packages/preview/rivet/0.1.0/gallery/example2.typ | typst | Apache License 2.0 | #import "../src/lib.typ": schema, config
#let example = schema.load("/gallery/example2.yaml")
#schema.render(example, config: config.blueprint(
full-page: true,
left-labels: true
)) |
https://github.com/lukejcollins/cv | https://raw.githubusercontent.com/lukejcollins/cv/main/README.md | markdown | MIT License | # My CV
Below you can download my CV as a PDF:
<table cellspacing="0" cellpadding="0">
<tr>
<th>
<a href="https://github.com/lukejcollins/cv/releases/download/latest/english.pdf">
CV
</a>
</th>
</tr>
<tr>
<td>
<a href="https://git... |
https://github.com/r8vnhill/apunte-bibliotecas-de-software | https://raw.githubusercontent.com/r8vnhill/apunte-bibliotecas-de-software/main/opening.typ | typst | Iniciar un proyecto requiere considerar varios _aspectos críticos_, incluyendo la selección de
tecnologías y la planificación del tiempo y estructura del proyecto.
Sin embargo, un factor frecuentemente subestimado es el cambio.
El cambio es inevitable y debe considerarse desde el inicio para evitar que el proyecto s... | |
https://github.com/OrangeX4/typst-sympy-calculator.typ | https://raw.githubusercontent.com/OrangeX4/typst-sympy-calculator.typ/main/typst-sympy-calculator.typ | typst | MIT License | #let hidden(content) = {}
// matrix
#let cmat(..args) = {
let mat = if (type(args.pos().at(0)) != "array") { (args.pos(),) } else { args.pos() }
let mat_t = ()
for j in range(mat.at(0).len()) {
mat_t.push(())
for i in range(mat.len()) {
mat_t.at(j).push(mat.at(i).at(j))
}
}
math.mat(..mat_t... |
https://github.com/GYPpro/DS-Course-Report | https://raw.githubusercontent.com/GYPpro/DS-Course-Report/main/Templete/catelog.typ | typst | #set heading(
numbering: "1.1.1"
)
#outline(
title:[#smallcaps("Catalogue")\ #h(1fr)]
); | |
https://github.com/sa-concept-refactoring/doc | https://raw.githubusercontent.com/sa-concept-refactoring/doc/main/chapters/glossary.typ | typst | = Glossary
/ AST: Abbreviation for Abstract Syntax Tree. It is a hierarchical representation of source code structure, capturing syntax and semantics.
/ IDE: Integrated Development Environment. Software application that provies comprehensive facilities for software development.
/ LLVM: Abbreviation for Low Level Virtu... | |
https://github.com/frectonz/the-pg-book | https://raw.githubusercontent.com/frectonz/the-pg-book/main/book/145.%20todo.html.typ | typst | todo.html
The Top of My Todo List
April 2012A palliative care nurse called <NAME> made a list of the
biggest regrets
of the dying. Her list seems plausible. I could see
myself — can see myself — making at least 4 of these
5 mistakes.If you had to compress them into a single piece of advice, it might
be: don't be a c... | |
https://github.com/piepert/philodidaktik-hro-phf-ifp | https://raw.githubusercontent.com/piepert/philodidaktik-hro-phf-ifp/main/src/parts/ephid/rahmenplaene/main.typ | typst | Other | #import "/src/template.typ": *
= #ix("Rahmenpläne in MV", "Rahmenplan")
#author[<NAME>]
#include "fragen_kant.typ"
#include "kompetenzen.typ"
#include "themen.typ"
#include "zitieren.typ"
#task(key: "philosophie-ersatzfach")[Philosophie als Ersatzfach][
Erklären Sie, wofür und warum der Philosophieunterricht in ... |
https://github.com/rabotaem-incorporated/calculus-notes-2course | https://raw.githubusercontent.com/rabotaem-incorporated/calculus-notes-2course/master/sections/06-fourier-series/05-fourier-misc.typ | typst | #import "../../utils/core.typ": *
== Солянка а ля Фурье
#ticket[Свертка функций. Свойства.]
#def[
$L_(2pi)^1$ --- $2pi$ периодические функции, и $norm(f)_1 := integral_(-pi)^pi abs(f(t)) dif t < +oo$.
]
#def[
Если $f, g in L_(2pi)^1$, то _сверткой функций_ $f * g$ называется функция $h$ такая, что
$
h(x) ... | |
https://github.com/dasayan05/typst-ai-conf-templates | https://raw.githubusercontent.com/dasayan05/typst-ai-conf-templates/master/neurips/paper.typ | typst | MIT License | #import "neurips.typ": manuscript
#show: manuscript.with(
title: [Formatting Instructions For NeurIPS 2023],
authors: (
[
*Author 1*\
Affiliation 1\
Address 1\
`<EMAIL>`
],
[
*Author 2*\
Affiliation 2\
Ad... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.