repo stringlengths 26 115 | file stringlengths 54 212 | language stringclasses 2
values | license stringclasses 16
values | content stringlengths 19 1.07M |
|---|---|---|---|---|
https://github.com/infolektuell/gradle-typst | https://raw.githubusercontent.com/infolektuell/gradle-typst/main/README.md | markdown | MIT License | # Gradle Typst Plugin
[](https://plugins.gradle.org/plugin/de.infolektuell.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.
A... |
https://github.com/PmaFynn/cv | https://raw.githubusercontent.com/PmaFynn/cv/master/src/content/en/education.typ | typst | The Unlicense | #import "../../template.typ": *
#cvSection("Education")
#cvEntry(
title: [M.Sc in Information Systems],
organisation: [Universität Münster],
//TODO: insert uni muenster logo here
logo: "",
date: [10/2023 - Present],
location: [Münster, Germany],
description: list(
[Pursuing advance... |
https://github.com/jdpieck/oasis-align | https://raw.githubusercontent.com/jdpieck/oasis-align/main/0.1.0/oasis-align.typ | typst | #let oasis-align(
int-frac: 0.5,
tolerance: 0.001pt,
max-iterations: 50,
int-dir: 1,
debug: false,
item1,
item2,
) = context {
// Debug functions
let error(message) = text(red, weight: "bold", message)
let heads-up(message) = text(orange, weight: "bold", message)
// Check that inputs are v... | |
https://github.com/typst/packages | https://raw.githubusercontent.com/typst/packages/main/packages/preview/bubble/0.1.0/README.md | markdown | Apache License 2.0 | # Bubble
Simple and colorful template for [Typst](https://typst.app). This template uses a main color (default is `#E94845`) applied to list items, links, inline blocks and headings. You can also set a custom table of content title. Every page is numbered and hase the title of the document and the name of the author at... |
https://github.com/NorthSecond/Auto_Typst_Resume_Template | https://raw.githubusercontent.com/NorthSecond/Auto_Typst_Resume_Template/main/readme.md | markdown | MIT License | # Typst 中文简历模板
## 介绍
一个借助 Github Actions 实现自动部署的 Typst 简历模板。效果如下(也可参考 Release 页面中的 PDF 文件):
| [中文示例](https://github.com/NorthSecond/Auto_Typst_Resume_Template/releases/download/Release-template-1.0.0/default.pdf) | [英文示例](https://github.com/NorthSecond/Auto_Typst_Resume_Template/releases/download/Release-template-... |
https://github.com/ralphmb/typst-template-stats-dissertation | https://raw.githubusercontent.com/ralphmb/typst-template-stats-dissertation/main/writeup/sections/appendix.typ | typst | Apache License 2.0 | #let c = counter("appendix")
#let appendix(it) = block[
#c.step()
#heading([Appendix #c.display("1"): #it], numbering: none, outlined:false)
]
// The above function automatically numbers the appendices
//
#appendix([My Code])
A Python implementation of fizzbuzz. \
#raw(read("../assets/code/fizzbuzz.py"),lang:"P... |
https://github.com/txtxj/Formal-Methods-Typst | https://raw.githubusercontent.com/txtxj/Formal-Methods-Typst/main/formal_method_template.typ | typst | #let proof_line(formula, theory, x0, predicate_flag) = {
if predicate_flag {
columns(3)[
#x0
#colbreak()
#formula
#colbreak()
#{ if theory == [p] {
[premise]
} else if theory == [a]{
[assumption]
} else {
theory
}}
]
} else {
col... | |
https://github.com/dyc3/ssw-555-agile-methods | https://raw.githubusercontent.com/dyc3/ssw-555-agile-methods/main/lib/glossary.typ | typst | // copied from: https://github.com/typst/typst/issues/755#issuecomment-1542595624
// modified to taste
#import "@preview/in-dexter:0.0.5": *
// Generate a regex that matches all the words in glossary named filename
#let glossaryWords(filename) = {
let pipeList = "(?i:" // Match case insensitively
for word in yaml... | |
https://github.com/xdoardo/co-thesis | https://raw.githubusercontent.com/xdoardo/co-thesis/master/thesis/chapters/recursive/co-induction.typ | typst | #import "/includes.typ": *
== Induction<section-recursive-induction>
The easiest and most intuitive inductive datatype is that of natural numbers. In
Agda, one may represent them as shown in @code-nat.
#code(label: <code-nat>)[
```hs
data Nat : Set where
zero : Nat
succ : Nat -> Nat
... | |
https://github.com/mem-courses/linear-algebra | https://raw.githubusercontent.com/mem-courses/linear-algebra/main/note/9.二次型.typ | typst | #import "../template.typ": *
#show: project.with(
title: "Linear Algebra #9",
authors: (
(name: "<NAME>", email: "<EMAIL>", phone: "3230104585"),
),
date: "December 29, 2023",
)
#let xi = math.bold(math.xi)
#let theta = math.bold(math.theta)
#let AA = math.bold(math.italic("A"))
#let BB = math.bold(math.ita... | |
https://github.com/explicit-refinement/ert-icfp | https://raw.githubusercontent.com/explicit-refinement/ert-icfp/main/ert.typ | typst | BSD Zero Clause License | #import "@preview/polylux:0.3.1": *
#import themes.simple: *
#show: simple-theme
#let ert = $λ_sans("ert")$;
#let stlc = $λ_sans("stlc")$;
#title-slide[
= Explicit Refinement Types
#v(2em)
<NAME> #h(1em)
<NAME>
University of Cambridge
September 7
ICFP'23 -- Seattle
]
#slide[
#one-by-one[
... |
https://github.com/kotfind/hse-se-2-notes | https://raw.githubusercontent.com/kotfind/hse-se-2-notes/master/cpp/lectures/2024-09-27.typ | typst | #import "/utils/math.typ": *
= Полиморфизм
#def[
#defitem[Полиморфизм] --- возможность написания кода, которым можно
использовать для разных типов ("форм").
]
В C++ есть два полиморфизма:
- Времени компиляции (шаблоны)
- Времени исполнения (с помощью наследования и виртуальных функций)
== Наследование
#def[... | |
https://github.com/typst-doc-cn/tutorial | https://raw.githubusercontent.com/typst-doc-cn/tutorial/main/src/basic/reference-math-symbols.typ | typst | Apache License 2.0 | #import "mod.typ": *
#show: book.page.with(title: [参考:常用数学符号])
#set table(
stroke: none,
align: horizon + left,
row-gutter: 0.45em,
)
推荐阅读:
+ #link("https://github.com/johanvx/typst-undergradmath/releases/download/v1.2.0/undergradmath.pdf")[本科生Typst数学英文版,适用于Typst 0.10.0]
+ #link("https://github.com/brynne8/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/frontmatter.typ | typst | Creative Commons Attribution Share Alike 4.0 International | #import "/utils.typ"
#import "/packages.typ": notebookinator, codetastic
#import notebookinator: *
#import themes.radial.components: *
#import codetastic: qrcode
#let label(label: "", size: 0.7em) = {
let data = entry-type-metadata.at(label)
let colored-image = utils.change-icon-color(raw-icon: data.icon, fill: wh... |
https://github.com/Krsnik/typst-nix | https://raw.githubusercontent.com/Krsnik/typst-nix/main/templates/example/src/package1/lib.typ | typst | #let test = [This is a test]
| |
https://github.com/mangkoran/utm-thesis-typst | https://raw.githubusercontent.com/mangkoran/utm-thesis-typst/main/05_certification.typ | typst | MIT License | #import "@preview/tablex:0.0.7": tablex, colspanx
#let content() = [
#align(center)[
#upper[*Pengesahan Peperiksaan*]
]
#align(horizon)[
#tablex(
auto-lines: false,
columns: (auto, 1fr),
[Tesis ini telah diperiksa dan diakui oleh], [:],
[Nama dan Alamat Peperiksa Luar], [:],
... |
https://github.com/alberto-lazari/cv | https://raw.githubusercontent.com/alberto-lazari/cv/main/modules_en/honors.typ | typst | #import "/common.typ": *
= Honors
#honor(
date: [November 2020],
title: [Scholarship “Mille e una lode”],
issuer: [
University of Padua \
_Merit\-based Scholarship for the best Computer Science students (\~3% of the total)_
],
)
| |
https://github.com/fabriceHategekimana/master | https://raw.githubusercontent.com/fabriceHategekimana/master/main/3_Theorie/Type_embeding.typ | typst | === Le type embedding
Une notion intéressante que j'ai découvert dans le langage de programmation de Go est l'intégration de (type embedding). C'est un concept qui favorise la composition par rapport à l'héritage.
L'héritage est un concept de la programmation orientée objet où une classe (dite sous-classe) hérite de... | |
https://github.com/typst/packages | https://raw.githubusercontent.com/typst/packages/main/packages/preview/unichar/0.1.0/ucd/block-FE00.typ | typst | Apache License 2.0 | #let data = (
("VARIATION SELECTOR-1", "Mn", 0),
("VARIATION SELECTOR-2", "Mn", 0),
("VARIATION SELECTOR-3", "Mn", 0),
("VARIATION SELECTOR-4", "Mn", 0),
("VARIATION SELECTOR-5", "Mn", 0),
("VARIATION SELECTOR-6", "Mn", 0),
("VARIATION SELECTOR-7", "Mn", 0),
("VARIATION SELECTOR-8", "Mn", 0),
("VARIAT... |
https://github.com/SkiFire13/typst-touying-unipd | https://raw.githubusercontent.com/SkiFire13/typst-touying-unipd/master/README.md | markdown | MIT License | # typst-touying-unipd
A theme for [touying](https://github.com/touying-typ/touying) based on the [Latex Beamer Padova](https://www.math.unipd.it/~burattin/other/tema-latex-beamer-padova/) theme.
|
https://github.com/Akida31/anki-typst | https://raw.githubusercontent.com/Akida31/anki-typst/main/typst/src/lib.typ | typst | #import "raw.typ": anki_export
#import "config.typ"
#import config: set_date, is_export
#import "theorems.typ"
/// Setup the document
///
/// This is crucial for displaying everything correctly!
///
/// *Example*:
/// #example(`show: anki.setup.with(enable_theorems: true)`, ratio: 1000, scale-preview: 100%)
///
/// - ... | |
https://github.com/sofianedjerbi/ResumeOld | https://raw.githubusercontent.com/sofianedjerbi/ResumeOld/main/modules/references.typ | typst | Apache License 2.0 | #import "../brilliant-CV/template.typ": *
#cvSection("References")
#let lightbold(str) = text(weight: 501, str)
*Par souci de confidentialité, merci de me contacter afin de joindre mes références.*
#grid(
columns: (50%, 50%),
gutter: 2%,
[
- #lightbold("<NAME>"): Manager Ingenico
- #lightbold("<NAME>"... |
https://github.com/Myriad-Dreamin/typst.ts | https://raw.githubusercontent.com/Myriad-Dreamin/typst.ts/main/fuzzers/corpora/meta/link_08.typ | typst | Apache License 2.0 |
#import "/contrib/templates/std-tests/preset.typ": *
#show: test-page
// Link to page one.
#link((page: 1, x: 10pt, y: 20pt))[Back to the start]
|
https://github.com/jamesrswift/journal-ensemble | https://raw.githubusercontent.com/jamesrswift/journal-ensemble/main/src/pages/cover.typ | typst | The Unlicense | #import "../ensemble.typ"
#import "../elements.typ"
#let cover-content(
hero: [],
date: datetime.today(),
volume: 1,
issue: 1,
title: none,
) = {
move(
dx: -2.5cm,
block(
width: 100% + 5cm,
grid(
columns: (1fr, 1fr),
rows: (10cm),
column-gutter: 1cm,
elem... |
https://github.com/elpekenin/access_kb | https://raw.githubusercontent.com/elpekenin/access_kb/main/typst/content/parts/hardware/main.typ | typst | === Cableado de las teclas <sec:scanning>
#include "scanning.typ"
=== Pantallas <pantallas>
En los últimos años es cada vez más común ver teclados que incorporan pequeñas pantallas, sin embargo, no son muy útiles ya que en la gran mayoría de casos se trata de SH1106 o SSD1306, que son dispositivos OLED de 2 colores y ... | |
https://github.com/Servostar/dhbw-abb-typst-template | https://raw.githubusercontent.com/Servostar/dhbw-abb-typst-template/main/src/pages/titlepage.typ | typst | MIT License | // .--------------------------------------------------------------------------.
// | Titlepage |
// '--------------------------------------------------------------------------'
// Author: <NAME>
// Edited: 28.06.2024
// License: MIT
#let new_title_page(co... |
https://github.com/typst/packages | https://raw.githubusercontent.com/typst/packages/main/packages/preview/thesist/0.1.0/template/Chapters/1-Introduction.typ | typst | Apache License 2.0 | #import "@preview/thesist:0.1.0": flex-caption, subfigure-grid
#import "@preview/glossarium:0.4.1": gls, glspl
= Introduction
// Start writing here...
|
https://github.com/chamik/gympl-skripta | https://raw.githubusercontent.com/chamik/gympl-skripta/main/cj-dila/11-rur.typ | typst | Creative Commons Attribution Share Alike 4.0 International | #import "/helper.typ": hrule, dilo, replika
#dilo("R. U. R.", "rur", "<NAME>", "", "Meziválečná lit.", "Francie", "1880", "epika", "povídka")
#columns(2, gutter: 1em)[
*Téma*\
Hrozba nadvlády strojů, varování před rapidním technologickým pokrokem.
*Motivy*\
hodnota lidská práce, kapitalismus, biblické (Ada... |
https://github.com/mariunaise/HDA-Thesis | https://raw.githubusercontent.com/mariunaise/HDA-Thesis/master/content/BACH.typ | typst | #import "@preview/glossarium:0.4.1": *
#import "@preview/tablex:0.0.8": tablex, rowspanx, colspanx
= Boundary Adaptive Clustering with Helper Data (BACH)
//Instead of generating helper-data to improve the quantization process itself, like in #gls("smhdt"), or using some kind of error correcting code after the quantiz... | |
https://github.com/ralphmb/typst-template-stats-dissertation | https://raw.githubusercontent.com/ralphmb/typst-template-stats-dissertation/main/writeup/sections/bigsection.typ | typst | Apache License 2.0 | == Tables and Plots
Here's a table with some R output.
#table(
columns:4,
[Variable], [Estimate], [Std. Error], [p],
[(Intercept)], [-1.527], [0.698], [0.029],
[Variable 1], [-0.014], [0.008], [0.081],
[Variable 2], [0.033], [0.008], [0.000],
[Variable 3], [-0.087], [0.... |
https://github.com/lluchs/evince-typst | https://raw.githubusercontent.com/lluchs/evince-typst/master/README.md | markdown | Apache License 2.0 | # evince-typst
(Experimental) addon for the [Evince][evince] document viewer to load [Typst][typst] files directly, without creating an intermediate PDF file.
[evince]: https://wiki.gnome.org/Apps/Evince
[typst]: https://typst.app
## Building
Configure:
```sh
meson setup build --buildtype=release
```
Build:
```sh
... |
https://github.com/AliothCancer/AppuntiUniversity | https://raw.githubusercontent.com/AliothCancer/AppuntiUniversity/main/capitoli_fisica/aria_umida.typ | typst | = Aria Umida (miscela bicomponente) <aria-umida-miscela-bicomponente>
== Umidità Assoluta <umidità-assoluta>
$ U_A = 0.622 dot.op frac(p_(v a p o r e %), p_(t o t a l e) - p_(v a p o r e %)) = 0.622 dot.op frac(phi dot.op p_S, p_(upright("totale")) - phi dot.op p_S) $
- $U_A$: Umidità assoluta
- $phi$: Umidità relati... | |
https://github.com/Kasci/LiturgicalBooks | https://raw.githubusercontent.com/Kasci/LiturgicalBooks/master/CSL_old/oktoich/Hlas1/5_Piatok.typ | typst | #let V = (
"HV": (
("", "Prechváľniji múčenicy", "Na kresťí prečísťiji rúci tvojí prostérl jesí Christé, ot tebé daléče bývšyja prizyvája, i blíz tebé ustrojája. Ťímže moľúsja tí: pľinéna mjá bývša strasťmí soberí, i pokajánije mí dáruj, vsjáku skvérnu strastnúju očiščájuščeje."),
("", "", "Dláni prečístyja t... | |
https://github.com/RolfBremer/in-dexter | https://raw.githubusercontent.com/RolfBremer/in-dexter/main/README.md | markdown | Apache License 2.0 | # in-dexter
Automatically create a handcrafted index in [typst](https://typst.app/).
This typst component allows the automatic creation of an Index page with entries
that have been manually marked in the document by its authors. This, in times
of advanced search functionality, seems somewhat outdated, but a handcrafte... |
https://github.com/Tran-Thu-Le/tybank | https://raw.githubusercontent.com/Tran-Thu-Le/tybank/main/main.typ | typst | #import "@preview/suiji:0.1.0": *
#import "template.typ": *
#import "utils.typ": *
#import "bank.typ": questions
#let show_answer = true
// #let show_answer = false
// #let show_solution = true
#let show_solution = false
// #let show_tags = true
#let show_tags = false
#let show_options = (
"answer": show_answer,
... | |
https://github.com/ufodauge/master_thesis | https://raw.githubusercontent.com/ufodauge/master_thesis/main/src/template/utils/date.typ | typst | MIT License | #let toJapaneseCalendar(date) = {
assert(type(date) == "datetime")
let year = str(date.year() - 2018)
let month = str(date.month())
let date = str(date.day())
return "令和" + year + "年" + month + "月" + date + "日"
}
|
https://github.com/pku-typst/meppp | https://raw.githubusercontent.com/pku-typst/meppp/main/table.typ | typst | MIT License | // return the number of rows of the table
#let table-row-counter(cells, columns) = {
let last-row = (0,) * columns
let x = 0
let y = 0
let volume = 0
for cell in cells {
if cell.has("body") {
let colspan = 1
let rowspan = 1
if cell.has("colspan") {
colspan = cell.colspan
}
... |
https://github.com/Ombrelin/adv-java | https://raw.githubusercontent.com/Ombrelin/adv-java/master/Slides/5-prog-parallele.typ | typst | #import "@preview/polylux:0.3.1": *
#import "@preview/sourcerer:0.2.1": code
#import themes.clean: *
#show: clean-theme.with(
logo: image("images/efrei.jpg"),
footer: [<NAME>, EFREI Paris],
short-title: [EFREI LSI L3 ALSI62-CTP : Java Avancé],
color: rgb("#EB6237")
)
#title-slide(
title: [Java Avancé],
su... | |
https://github.com/mkpoli/ipsj-typst-template | https://raw.githubusercontent.com/mkpoli/ipsj-typst-template/master/docs/doc.typ | typst | #import "@preview/tidy:0.2.0"
#import "./custom-style.typ"
#set text(font: "Noto Serif CJK JP", size: 10pt)
#show raw: set text(font: ("Fira Code", "Noto Sans Mono CJK JP"))
#set heading(numbering: "1.1")
#set page(paper: "jis-b5")
#outline(title: "目次")
#let show-module = tidy.show-module.with(
style: custom-style,
... | |
https://github.com/typst/packages | https://raw.githubusercontent.com/typst/packages/main/packages/preview/unichar/0.1.0/ucd/block-10F00.typ | typst | Apache License 2.0 | #let data = (
("OLD SOGDIAN LETTER ALEPH", "Lo", 0),
("OLD SOGDIAN LETTER FINAL ALEPH", "Lo", 0),
("OLD SOGDIAN LETTER BETH", "Lo", 0),
("OLD SOGDIAN LETTER FINAL BETH", "Lo", 0),
("OLD SOGDIAN LETTER GIMEL", "Lo", 0),
("OLD SOGDIAN LETTER HE", "Lo", 0),
("OLD SOGDIAN LETTER FINAL HE", "Lo", 0),
("OLD S... |
https://github.com/mumblingdrunkard/mscs-thesis | https://raw.githubusercontent.com/mumblingdrunkard/mscs-thesis/master/src/computer-architecture-fundamentals/index.typ | typst | = Computer Architecture Fundamentals <ch:computer-architecture-fundamentals>
By the nature of the genre (master's theses), this text is targeted at those graduating from a programme in computer science or similar.
// Let $A$ be the set of all computer science students, and $B$ be the set of all computer science studen... | |
https://github.com/Xe/automuse | https://raw.githubusercontent.com/Xe/automuse/main/paper/automuse_1/template.typ | typst | zlib License | #let conf(
title: none,
authors: (),
abstract: [],
doc,
) = {
set page(
paper: "us-letter",
header: align(
right + horizon,
text(font: "Iosevka Etoile Iaso", size: 9pt)[#title]
),
)
set par(justify: true)
set text(
font: "<NAME>",
size: 9.8pt,
)
set align(center)
t... |
https://github.com/goshakowska/Typstdiff | https://raw.githubusercontent.com/goshakowska/Typstdiff/main/tests/test_complex/all_types_working/all_types_working_delete_result.typ | typst | GNU nano 6.2 test1.typ
= Introduction
#strike[In];#strike[ ];#strike[this];#strike[ ];#strike[report,];#strike[
];#strike[we];#strike[ ];#strike[will];#strike[
];#strike[explore];#strike[ ];#strike[the];#strike[
];#strike[various];#strike[ ];#strike[factors];#strike[
];#strike[that];#strike[ ];#strike[influence];#stri... | |
https://github.com/gabrielluizep/typst-ifsc | https://raw.githubusercontent.com/gabrielluizep/typst-ifsc/main/examples/ifscyan.example.typ | typst | Creative Commons Zero v1.0 Universal | #import "../templates/ifscyan.typ": *
#show: body => ifscyan-theme(aspect-ratio: "16-9", body)
#title-slide(title: "Slide Massa")[
<NAME>\
#text(.8em, link("<EMAIL>"))
#align(bottom)[
20/09/2023
]
]
#slide(title: "Slide Massa")[
#text([Título]) \ \
// #uncover(2)[
// #text([Subtítulo])
// ]
] |
https://github.com/jgm/typst-hs | https://raw.githubusercontent.com/jgm/typst-hs/main/test/typ/compiler/ops-invalid-24.typ | typst | Other | // Error: 3-8 cannot mutate a temporary value
#(1 + 2 += 3)
|
https://github.com/polarkac/MTG-Stories | https://raw.githubusercontent.com/polarkac/MTG-Stories/master/stories/028%20-%20Kaladesh/003_Torch%20of%20Defiance.typ | typst | #import "@local/mtgstory:0.2.0": conf
#show: doc => conf(
"Torch of Defiance",
set_name: "Kaladesh",
story_date: datetime(day: 05, month: 09, year: 2016),
author: "<NAME>",
doc
)
#emph[A Planeswalker from Kaladesh ] visited Ravnica#emph[ to ask for the assistance of the Gatewatch. The consensus was... | |
https://github.com/roife/resume | https://raw.githubusercontent.com/roife/resume/master/resume-en.typ | typst | MIT License | #import "chicv.typ": *
#show: chicv
= #redact(alter: "roife")[placeholder]
#fa[#phone] #redact(mark: true)[00000000000] |
#fa[#envelope] <EMAIL> |
#fa[#github] #link("https://github.com/roife")[roife] |
#fa[#globe] #link("https://roife.github.io")[roife.github.io] |
#fa[#location-arrow] Hong Kong
== Edu... |
https://github.com/jgm/typst-hs | https://raw.githubusercontent.com/jgm/typst-hs/main/test/typ/layout/list-marker-04.typ | typst | Other | // Error: 19-21 array must contain at least one marker
#set list(marker: ())
|
https://github.com/kdog3682/mathematical | https://raw.githubusercontent.com/kdog3682/mathematical/main/0.1.0/src/demos/ratio.typ | typst | #import "@local/typkit:0.1.0": *
#import "@local/mathematical:0.1.0": *
#let ratio(size: 12, ratios: (1, 2), fills: ("blue", "green")) = {
let store = ()
let d = ratios.sum()
let n = int(size / d)
let callback((i, n)) = {
return colored(resolve-math-content(n), getter(fills, i))
}
let p... | |
https://github.com/VisualFP/docs | https://raw.githubusercontent.com/VisualFP/docs/main/SA/design_concept/content/introduction/tool_research.typ | typst | #import "../../../style.typ": *
= Existing tools <existing_tools>
There already are tools available that could fill the role of a visual
functional programming language as described in @motivation.
But even if they fail to live up to the specific goals of this project, they
may still be helpful as inspiration or a s... | |
https://github.com/hongjr03/shiroa-page | https://raw.githubusercontent.com/hongjr03/shiroa-page/main/DSA/chapters/2线性表.typ | typst |
#import "../template.typ": *
#import "@preview/pinit:0.1.4": *
#import "@preview/fletcher:0.5.0" as fletcher: diagram, node, edge
#import "/book.typ": book-page
#show: book-page.with(title: "线性表 | DSA")
= 线性表
#definition[
*线性结构*是一个数据元素的有序(次序)集,集合中必存在唯一的一个“第一元素”和唯一的一个“最后元素”,除第一个元素外,集合中的每个元素均有唯一的前驱,除最后一个元素外,集合中的每... | |
https://github.com/Error-418-SWE/Documenti | https://raw.githubusercontent.com/Error-418-SWE/Documenti/src/1%20-%20Candidatura/Verbali/Interni/21-10-23/21-10-23.typ | typst | ERROR\_418 \
Verbale 21/10/23
#figure(
align(center)[#table(
columns: 2,
align: (col, row) => (left,left,).at(col),
inset: 6pt,
[Mail:],
[<EMAIL>],
[Redattori:],
[<NAME>, <NAME>],
[Verificatori:],
[<NAME>, <NAME>, <NAME>],
[Amministratori:],
[<NAME>, <NAME>],
[Destinatari:],
[<NAME>, <NAME>],... | |
https://github.com/GartmannPit/Praxisprojekt-II | https://raw.githubusercontent.com/GartmannPit/Praxisprojekt-II/main/Praxisprojekt%20II/PVA-Templates-typst-pva-2.0/template/conf.typ | typst | #let style(content) = {
set text(
font: "Times New Roman", // set global font
size: 12pt, // and size
lang: "de" // set language of document: influencing auto-generating describtions and some character placing like ' and ""
)
set heading(
numbering: "1.1", // set global heading style
out... | |
https://github.com/typst/packages | https://raw.githubusercontent.com/typst/packages/main/packages/preview/cetz-plot/0.1.0/src/chart/piechart.typ | typst | Apache License 2.0 | #import "/src/cetz.typ": draw, styles, palette, util, vector, intersection
#import util: circle-arclen
#import "/src/plot/legend.typ"
// Piechart Label Kind
#let label-kind = (value: "VALUE", percentage: "%", label: "LABEL")
// Piechart Default Style
#let default-style = (
stroke: auto,
fill: auto,
/// Outer c... |
https://github.com/wizicer/gnark-cheatsheet | https://raw.githubusercontent.com/wizicer/gnark-cheatsheet/main/gnark-cheatsheet.typ | typst | #set document(title: "gnark cheatsheet", author: "<NAME> @wizicer")
#set page(
paper: "a4",
margin: (x: 1cm, top: 1cm, bottom: 1cm),
// header: align()[
// A fluid dynamic model for
// glacier flow
// ],
// numbering: "1",
)
// #set par(justify: true)
#set text(
size: 9pt,
)
#show heading.where(
... | |
https://github.com/Error-418-SWE/Documenti | https://raw.githubusercontent.com/Error-418-SWE/Documenti/src/2%20-%20RTB/Documentazione%20esterna/Verbali/23-12-06/23-12-06.typ | typst | #import "/template.typ": *
#show: project.with(
date: "06/12/23",
subTitle: "Colloquio tecnico su tecnologie e PoC",
docType: "verbale",
externalParticipants : (
(name: "<NAME>", role: "Referente aziendale"),
),
authors: (
"<NAME>",
),
reviewers: (
"<NAME>",
),
timeStart: "16:00",
tim... | |
https://github.com/raygo0312/Typst_template | https://raw.githubusercontent.com/raygo0312/Typst_template/main/template-common.typ | typst | #import "@preview/physica:0.9.3": *
// font setting
#let font-serif = (
"CMU Serif",
"<NAME>",
)
#let font-sans = (
"CMU Sans Serif",
"<NAME>",
)
// color setting
#let theme-color = (
title: state("title", rgb("#66a5ad")),
ex: state("ex", rgb("#e3e2b4")),
axm: state("axm", rgb("#f4acb7")),
def: state(... | |
https://github.com/i-am-wololo/cours | https://raw.githubusercontent.com/i-am-wololo/cours/master/TP/i21/1/main.typ | typst | #import "./templates.typ": *
#show: project.with(title: "TP1 i21")
= Echecs
L'exercice consiste a trouver les positions possibles dans une grille, on attend de l'eleve a retranscrire les regles de deplacement en indices sur une matrice qui fait office d'abstraction pour un plateau d'echecs. Personellement pour les p... | |
https://github.com/EunTilofy/NumComputationalMethods | https://raw.githubusercontent.com/EunTilofy/NumComputationalMethods/main/Chapter9/Chapter9-1.typ | typst | #import "../template.typ": *
#show: project.with(
course: "Computing Method",
title: "Computing Method - Chapter9-1",
date: "2024.5.14",
authors: "<NAME>, 3210106357",
has_cover: false
)
*Problems:Chapter9-1,2,Chapter8-10*
#HWProb(name: "1")[
用幂法计算矩阵$
A = bmatrix(4,2,2;2,5,1;2,1,6)
$
的最大特征值和相应的特征向量。
]
... | |
https://github.com/DaAlbrecht/thesis-TEKO | https://raw.githubusercontent.com/DaAlbrecht/thesis-TEKO/main/content/Evaluation.typ | typst | #import "@preview/tablex:0.0.5": tablex, cellx
#import "@preview/codelst:1.0.0": sourcecode
== API Library
The microservice needs to interact with RabbitMQ and read from the broker.
These interaction happen over the AMQP protocol. To not reinvent the wheel,
off-the-shelf library of the AMQP protocol should be used.
... | |
https://github.com/jonaspleyer/peace-of-posters | https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/main/themes.typ | typst | MIT License | #let _state-poster-theme = state("poster-theme", (
"body-box-args": (
inset: 0.6em,
width: 100%,
),
"body-text-args": (:),
"heading-box-args": (
inset: 0.6em,
width: 100%,
fill: rgb(50, 50, 50),
stroke: rgb(25, 25, 25),
),
"heading-text-args": (
... |
https://github.com/Leo1003/resume | https://raw.githubusercontent.com/Leo1003/resume/main/secrets.typ | typst | #let secret_data = toml("secrets.toml")
#let secret(key) = {
secret_data.at(key, default: "<REDACTED>")
}
| |
https://github.com/MultisampledNight/flow | https://raw.githubusercontent.com/MultisampledNight/flow/main/src/presentation.typ | typst | MIT License | #import "info.typ"
#import "palette.typ": *
#import "@preview/polylux:0.3.1": *
#let slide(body) = {
// don't register headings that don't have any content
// this way one can use a bare `=` for an empty slide
// and a bare `==` for a new slide without heading
show heading.where(body: []): set heading(
num... |
https://github.com/justinvulz/typst_packages | https://raw.githubusercontent.com/justinvulz/typst_packages/main/lecture.typ | typst | #import "@preview/ctheorems:1.1.2": *
#import "@preview/cuti:0.2.1": show-fakebold
#import "./symbol.typ": *
#let exercise = thmbox(
"exercise",
"Exercise",
stroke: black + 1pt,
base: none,
).with(numbering: "I")
#let theorem = thmbox(
"id1",
"Theorem",
// fill: rgb("e8e8f8"),
base_level: 1,
... | |
https://github.com/drupol/master-thesis | https://raw.githubusercontent.com/drupol/master-thesis/main/resources/typst/equivalence-classes-of-reproducibility.typ | typst | Other | #import "../../src/thesis/imports/preamble.typ": *
#table(
columns: (1fr, 1fr),
align: left + horizon,
stroke: none,
table.header(
[*Equivalence class*],
table.vline(stroke: .5pt),
[*Examples*],
table.hline(stroke: .5pt),
),
[Same phenomenon],
[Human experts],
table.hline(stroke: .5pt),... |
https://github.com/jneug/typst-codetastic | https://raw.githubusercontent.com/jneug/typst-codetastic/main/checksum.typ | typst | MIT License |
#import "util.typ"
#let gtin(code) = {
assert.eq(type(code), "array")
assert(
code.len() in (4, 7, 11, 12, 13),
message: "GTIN codes may be 4,7,11,12 or 13 digits long (excluding checksum). Got " + str(code.len()),
)
let cs = util.weighted-sum(code.rev(), (3, 1))
let rem = calc.rem(cs, 10)
if rem... |
https://github.com/maxgraw/bachelor | https://raw.githubusercontent.com/maxgraw/bachelor/main/apps/document/src/6-evaluation/method.typ | typst | #import "../charts.typ": *
Um die Untersuchung der Zielfrage durchzuführen, wurde eine Studie in Form einer Online-Umfrage über einen Zeitraum von zwei Wochen durchgeführt. Die Teilnehmenden wurden über persönliche Kontakte rekrutiert.
Innherhalb der Studie wurden 21 Teilnehmende rekrutiert. Hierbei waren 3 Teilnehme... | |
https://github.com/kotfind/hse-se-2-notes | https://raw.githubusercontent.com/kotfind/hse-se-2-notes/master/edu/seminars/2024-10-23.typ | typst | = Про итоговое задание
Нужно:
- Выложить в SmartLMS план-сценарий или презентацию для занятия
- Провести часть вашего занятия для одногруппников и преподавателя (20 минут):
- Нужно сказать, какую аудиторию должны отыграть другие
Оценивается тремя способами:
- Оценивание учителем
- Взаимооценивание
- Самооценивани... | |
https://github.com/goshakowska/Typstdiff | https://raw.githubusercontent.com/goshakowska/Typstdiff/main/tests/test_complex/text_formats/text_formats_updated_result.typ | typst | = Heading1
Paragraph with quotes “This is #strike[in];#underline[super] quotes.”
#strong[Date:] #strike[26.12.2022];#underline[26.02.2024] \
Date used in paragraph #strong[Date:]
#strike[26.12.2022];#underline[30.12.2022] \
#strong[Topic:] Infrastructure Test \
#strong[Severity:] High \
= Heading3
#emph[emphasis]
So... | |
https://github.com/pal03377/master-thesis | https://raw.githubusercontent.com/pal03377/master-thesis/main/thesis_typ/abstract_en.typ | typst | MIT License | #let abstract_en() = {
set page(
margin: (left: 30mm, right: 30mm, top: 40mm, bottom: 40mm),
numbering: none,
number-align: center,
)
let body-font = "New Computer Modern"
let sans-font = "New Computer Modern Sans"
set text(
font: body-font,
size: 12pt,
lang: "en"
)
set par(le... |
https://github.com/DriedYellowPeach/project-vietnam | https://raw.githubusercontent.com/DriedYellowPeach/project-vietnam/main/project-vietnam.typ | typst | #set heading(numbering: "1.")
#set page(header: text(8pt, align(right)[
Project Vietnam 🇻🇳
]), numbering: "<1/1>", margin: (x: 2cm, y: 2cm))
#set par(justify: true)
#set text(font: "ComicCode Nerd Font", size: 11pt, lang: "en")
// The Title
#pad(top: 10pt, bottom: 10pt, [
#align(center, text(20pt, weight: "bo... | |
https://github.com/Toniolo-Marco/git-for-dummies | https://raw.githubusercontent.com/Toniolo-Marco/git-for-dummies/main/slides/practice/init.typ | typst | #import "@preview/touying:0.5.2": *
#import themes.university: *
#import "@preview/numbly:0.1.0": numbly
#import "@preview/fletcher:0.5.1" as fletcher: node, edge
#let fletcher-diagram = touying-reducer.with(reduce: fletcher.diagram, cover: fletcher.hide)
#import "../components/gh-button.typ": gh_button
#import "../c... | |
https://github.com/piepert/typst-seminar | https://raw.githubusercontent.com/piepert/typst-seminar/main/README.md | markdown | # Eine Einführung in [Typst](https://typst.app)
_(Diese Repository ist hauptsächlich für die Teilnehmer des Seminars am 2.6.2023 gedacht. Hier gibt es die Präsentation und einige Beispiele.)_
[Typst](https://typst.app) ist eine moderne Textsatz-Engine und eine mögliche Alternative zu LaTeX. Hier soll eine kleine Einf... | |
https://github.com/soul667/typst | https://raw.githubusercontent.com/soul667/typst/main/PPT/MATLAB/touying/docs/docs/utilities/fit-to.md | markdown | ---
sidebar_position: 2
---
# Fit to Height / Width
Thanks to [ntjess](https://github.com/ntjess) for the code.
## Fit to Height
If you need to make an image fill the remaining slide height, you can try the `fit-to-height` function:
```typst
#utils.fit-to-height(1fr)[BIG]
```
Function definition:
```typst
#let f... | |
https://github.com/antonWetzel/Masterarbeit | https://raw.githubusercontent.com/antonWetzel/Masterarbeit/main/arbeit/main.typ | typst | #import "setup.typ": *
#import "lt.typ": lt
#set document(
author: "<NAME>",
title: "Berechnung charakteristischen Eigenschaften von botanischen Bäumen mithilfe von 3D-Punktwolken.",
keywords: ("Punktwolken", "botanische Bäume", "Rust", "WebGPU", "Visualisierung"),
)
// #show: word-count
// Wörter: #total-words
... | |
https://github.com/jgm/typst-hs | https://raw.githubusercontent.com/jgm/typst-hs/main/test/typ/math/vec-00.typ | typst | Other | // Test wide cell.
$ v = vec(1, 2+3, 4) $
|
https://github.com/rdboyes/resume | https://raw.githubusercontent.com/rdboyes/resume/main/modules_fr/publications.typ | typst | // Imports
#import "@preview/brilliant-cv:2.0.2": cvSection, cvPublication
#let metadata = toml("../metadata.toml")
#let cvSection = cvSection.with(metadata: metadata)
#cvSection("Publications")
#cvPublication(
bib: bibliography("../src/publications.bib"),
keyList: ("smith2020", "jones2021", "wilson2022"),
refS... | |
https://github.com/MultisampledNight/flow | https://raw.githubusercontent.com/MultisampledNight/flow/main/README.md | markdown | MIT License | # flow
typst note template and utils
## How do I use this?
Compile `src/doc/manual.typ` using [Typst] and look at the resulting PDF!
Pass `--input dev=true` if you want some nicer colors!
## features
- Checkboxes just like with markdown syntax!
- Color palette management for absolutely no reason!
- Callouts for qu... |
https://github.com/adam-zhang-lcps/papers | https://raw.githubusercontent.com/adam-zhang-lcps/papers/main/animal-behavior.typ | typst | Creative Commons Attribution Share Alike 4.0 International | #import "@preview/cetz:0.2.2"
#import "aet-lab-report-template.typ": aet-lab-report
#let species = [_Tribolium confusum_]
#show: doc => aet-lab-report(
title: [Investigating the Cheerios preference of #species],
course: "AET AP Biology",
teacher: "<NAME>",
partners: ([<NAME>],),
date: datetime(year: 2024, m... |
https://github.com/chamik/gympl-skripta | https://raw.githubusercontent.com/chamik/gympl-skripta/main/cj-dila/16-audience.typ | typst | Creative Commons Attribution Share Alike 4.0 International | #import "/helper.typ": dilo, replika
#dilo("Audience", "audience", "<NAME>", "", "2. p. 20. st.", "ČSSR", "1975", "drama", "tragikomedie")
#columns(2, gutter: 1em)[
*Téma*\
absurdita socialismu
*Motivy*\
pivovar, intelektuálové $times$ burani, pracovní morálka, normalizace
*Časoprostor*\
\70. léta 20. s... |
https://github.com/nimalu/mustermann-cv | https://raw.githubusercontent.com/nimalu/mustermann-cv/main/lib.typ | typst | #import "@preview/fontawesome:0.2.0": *
// const color
#let color-darknight = rgb("#131A28")
#let color-darkgray = rgb("#333333")
#let color-gray = rgb("#5d5d5d")
#let default-accent-color = rgb("#262F99")
// const icons
#let linkedin-icon = box(
fa-icon("linkedin", fill: color-darknight, font: "Font Awesome 6 Br... | |
https://github.com/arakur/typst-to-mathlog | https://raw.githubusercontent.com/arakur/typst-to-mathlog/master/README.md | markdown | MIT License | # Write Mathlog markup with Typst(WIP)
[Mathlog](https://mathlog.info/) のマークアップを [Typst](https://typst.app/) で書いて変換するツールです.
A tool to write [Mathlog](https://mathlog.info/) markup with [Typst](https://typst.app/).
## Example
Typst source:
```typst
// set mathlog style
#import "../style/mathlog_style.typ": *
// ... |
https://github.com/Myriad-Dreamin/typst.ts | https://raw.githubusercontent.com/Myriad-Dreamin/typst.ts/main/fuzzers/corpora/layout/align_01.typ | typst | Apache License 2.0 |
#import "/contrib/templates/std-tests/preset.typ": *
#show: test-page
// Test that multiple paragraphs in subflow also respect alignment.
#align(center)[
Lorem Ipsum
Dolor
]
|
https://github.com/8LWXpg/jupyter2typst | https://raw.githubusercontent.com/8LWXpg/jupyter2typst/master/template/base.typ | typst | MIT License | // #import "template.typ": *
#show: template
#block[
= Jupyter Notebook files
#lorem(50)
== Markdown content
#lorem(50)
]
#block[
#code-block("import pandas as pd
pd.DataFrame([['hi', 'there'], ['this', 'is'], ['a', 'DataFrame']], columns=['Word A', 'Word B'])"
, lang: "python", count: 6)
]
#block[
#result-block(" ... |
https://github.com/Arsenii324/matap-p2 | https://raw.githubusercontent.com/Arsenii324/matap-p2/main/t-repo/template.typ | typst | // The project function defines how your document looks.
// It takes your content and some metadata and formats it.
// Go ahead and customize it to your liking!
#let project(title: "", authors: (), body) = {
// Set the document's basic properties.
set document(author: authors.map(a => a.name), title: title)
set p... | |
https://github.com/typst/packages | https://raw.githubusercontent.com/typst/packages/main/packages/preview/unichar/0.1.0/ucd/block-A6A0.typ | typst | Apache License 2.0 | #let data = (
("BAMUM LETTER A", "Lo", 0),
("BAMUM LETTER KA", "Lo", 0),
("BAMUM LETTER U", "Lo", 0),
("BAMUM LETTER KU", "Lo", 0),
("BAMUM LETTER EE", "Lo", 0),
("BAMUM LETTER REE", "Lo", 0),
("BAMUM LETTER TAE", "Lo", 0),
("BAMUM LETTER O", "Lo", 0),
("BAMUM LETTER NYI", "Lo", 0),
("BAMUM LETTER I... |
https://github.com/HPDell/typst-mathshortcuts | https://raw.githubusercontent.com/HPDell/typst-mathshortcuts/main/lib.typ | typst | /**
* Shortcuts for Math
*
* Author: <NAME>
*/
#let va = $bold(a)$
#let vb = $bold(b)$
#let vc = $bold(c)$
#let vd = $bold(d)$
#let ve = $bold(e)$
#let vf = $bold(f)$
#let vg = $bold(g)$
#let vh = $bold(h)$
#let vi = $bold(i)$
#let vj = $bold(j)$
#let vk = $bold(k)$
#let vl = $bold(l)$
#let vm = $bold(m)$
#let vn... | |
https://github.com/dainbow/MatGos | https://raw.githubusercontent.com/dainbow/MatGos/master/themes/8.typ | typst | #import "../conf.typ": *
= Достаточные условия дифференцируемости функции нескольких переменных
#definition[
Пусть $f$ определена в некоторой окрестности $x_0 in RR^n$. *Полным приращением* $f$ в
точке $x_0$ называется
#eq[
$Delta f(x_0) = f(x_0 + Delta x) - f(x_0) = f(x_(0, 1) + Delta x_1, ..., x_(0, n) + D... | |
https://github.com/binhtran432k/ungrammar-docs | https://raw.githubusercontent.com/binhtran432k/ungrammar-docs/main/contents/system-implementation/service.typ | typst | === Ungrammar Language Service <subsec-impl-langservice>
The Ungrammar Language Service serves as the foundational module of our system.
Its independence from external dependencies ensures a focused implementation of
core Ungrammar language logic. This modular approach offers several key
advantages:
- *Centralized Lo... | |
https://github.com/touying-typ/touying | https://raw.githubusercontent.com/touying-typ/touying/main/lib.typ | typst | MIT License | #import "src/exports.typ": *
#import "themes/themes.typ" |
https://github.com/polarkac/MTG-Stories | https://raw.githubusercontent.com/polarkac/MTG-Stories/master/stories/050_Phyrexia%3A%20All%20Will%20Be%20One.typ | typst | #import "@local/mtgset:0.1.0": conf
#show: doc => conf("Phyrexia: All Will Be One", doc)
#include "./050 - Phyrexia: All Will Be One/001_Cinders.typ"
#include "./050 - Phyrexia: All Will Be One/002_A Hollow Body.typ"
#include "./050 - Phyrexia: All Will Be One/003_Episode 1: Uncontrolled Descent.typ"
#include "./050 -... | |
https://github.com/pimm-dev/agreement-about-religion | https://raw.githubusercontent.com/pimm-dev/agreement-about-religion/main/typst/README.md | markdown | # ./typst
Typst sources are built by [`/build.sh`](../build.sh)
## Change Name of Lead Manager
Adjust parameter `lead_manager` in [`main.typ`](./main.typ) line 1.
## When Make New Revision and Release
Change page heading `종교에 관한 서약서, r1.1, 좌측` and `종교에 관한 서약서, r1.1, 우측` to new numbering of revision.
## Requirement... | |
https://github.com/tingerrr/hydra | https://raw.githubusercontent.com/tingerrr/hydra/main/tests/features/fallback/test.typ | typst | MIT License | // Synopsis:
// - when a page starts with a primary element it is displayed
#import "/src/lib.typ": hydra
#set page(paper: "a7", header: context hydra(skip-starting: false, 2))
#set heading(numbering: "1.1")
#show heading.where(level: 1): it => pagebreak(weak: true) + it
#set par(justify: true)
= Content
== First Se... |
https://github.com/TypstApp-team/typst | https://raw.githubusercontent.com/TypstApp-team/typst/master/tests/typ/bugs/pagebreak-set-style.typ | typst | Apache License 2.0 | // https://github.com/typst/typst/issues/2162
// The styles should not be applied to the pagebreak empty page,
// it should only be applied after that.
#pagebreak(to: "even") // We should now skip to page 2
Some text on page 2
#pagebreak(to: "even") // We should now skip to page 4
#set page(fill: orange) // This se... |
https://github.com/kotfind/hse-se-2-notes | https://raw.githubusercontent.com/kotfind/hse-se-2-notes/master/prob/homeworks/to-2024-10-07.typ | typst | = ДЗ 4
== Задача 64
$H_i (i = 0, 1, 2)$ --- в первой двойке мячей игранных было $i$
$A$ --- во второй двойке мячей игранных было 0.
$ P(H_0) = 12/20 dot 11/19 = 0.347 $
$ P(H_1) = 12/20 dot 8/19 + 8/20 dot 12/19 = 0.505 $
$ P(H_2) = 8/20 dot 7/19 = 0.147 $
$ P(A | H_0) = 10/20 dot 9/19 = 0.237 $
$ P(A | H_1) = 11/2... | |
https://github.com/Myriad-Dreamin/typst.ts | https://raw.githubusercontent.com/Myriad-Dreamin/typst.ts/main/fuzzers/corpora/math/spacing_03.typ | typst | Apache License 2.0 |
#import "/contrib/templates/std-tests/preset.typ": *
#show: test-page
// Test spacing for set comprehension.
#set page(width: auto)
$ { x in RR | x "is natural" and x < 10 } $
|
https://github.com/YDX-2147483647/herglotz | https://raw.githubusercontent.com/YDX-2147483647/herglotz/main/foreword/typst.md | markdown | # Typst
- 用[Typst][typst]编译非常快,常常快到以为没编译——切换窗口前就编译好了。初次编译`*.typ`都远快于一般`*.tex`增量编译,通常也比[从 *.md 生成的网页][mkdocs-serve]更新快。
- Typst的语法比LaTeX简洁。在数学公式中,“↦”就是`|->`(竖线、连字符、大于号),结合字体提供的连字,几乎所见即所得,比`\mapsto`清晰不少。
- [Typst嵌入了平易的脚本语言和“标准库”][typst-scripting],能弥补个人局部需求与公共通用功能间的空隙。LaTeX虽能力更强,但那种`\expandafter`或[`\tl_if_empty:nTF`][lat... | |
https://github.com/atareao/fondos-productivos | https://raw.githubusercontent.com/atareao/fondos-productivos/master/src/bash.typ | typst | MIT License | #import "@preview/fletcher:0.4.5" as fletcher: diagram, node, edge
#set page(
"presentation-16-9",
fill: black,
margin: 0.5cm)
#set text(size: 13pt, fill: white)
= Bash
#columns(3, gutter: 12pt)[
== Trabajando con procesos
#table(
columns: (1fr, 5fr),
gutter: -4pt,
`Ctrl+C`, "Mata un p... |
https://github.com/mizlan/typst-resume-sans | https://raw.githubusercontent.com/mizlan/typst-resume-sans/main/resume.typ | typst | #set text(font: "Inter", fill: rgb("#222222"), hyphenate: false)
#show heading: set text(font: "General Sans", tracking: 1em/23)
#show link: underline
#set page(
margin: (x: 1.1cm, y: 1.3cm),
)
#set par(justify: true)
#let chiline() = {v(-2pt); line(length: 100%, stroke: rgb("#777777")); v(-5pt)}
#text(15pt)[= BELL... | |
https://github.com/HEIGVD-Experience/docs | https://raw.githubusercontent.com/HEIGVD-Experience/docs/main/S4/WEB/docs/4-ObjectedOrientedJavaScript/objectoriented.typ | typst | #import "/_settings/typst/template-note-en.typ": conf
#show: doc => conf(
title: [
JavaScript
],
lesson: "WEB",
chapter: "3 - JavaScript",
definition: "The text covers educational objectives including creating objects with the class syntax, DOM manipulation, and drawing on the HTML Canvas with JavaScript.... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.