slides: expand a bit on editor choices

This commit is contained in:
multisn8 2024-03-03 16:15:24 +01:00
parent 881a9beb78
commit bc7abb95d9
Signed by untrusted user: multisamplednight
GPG key ID: 6D525AA147CBDAE2

View file

@ -5,9 +5,12 @@
#set text(font: "Atkinson Hyperlegible", size: 1.5em) #set text(font: "Atkinson Hyperlegible", size: 1.5em)
// headings absichtlich in default typst font // headings absichtlich in default typst font
#show heading: set text(font: "Linux Libertine") #show heading: set text(font: "Linux Libertine")
#show link: set text(fill: blue)
#let muted = rgb("444") #let muted = rgb("444")
#let mute = text.with(fill: muted)
#let person(pfp, name, pronouns, description) = { #let person(pfp, name, pronouns, description) = {
// warum kann ich die font hier nicht setzen? // warum kann ich die font hier nicht setzen?
show heading: set text(weight: "regular"); show heading: set text(weight: "regular");
@ -28,7 +31,7 @@
#polylux-slide(align(horizon + center)[ #polylux-slide(align(horizon + center)[
= typst - Dokumente schreiben macht auf einmal Spaß?! = typst - Dokumente schreiben macht auf einmal Spaß?!
#text(fill: muted)[_von Schrottkatze & Multisamplednight_] #mute[_von Schrottkatze & Multisamplednight_]
]) ])
#polylux-slide[ #polylux-slide[
@ -40,7 +43,7 @@
rows: (auto, auto), rows: (auto, auto),
gutter: 12%, gutter: 12%,
person("schrottkatze-pfp.jpg", [ Schrottkatze ], [ sie/ihr ], [ TODO ]), person("schrottkatze-pfp.jpg", [ Schrottkatze ], [ sie/ihr ], [ TODO ]),
person("multisn8-pfp.jpg", [ Multisamplednight ], [ \* ], [ TODO ]), person("multisn8-pfp.jpg", [ Multisamplednight ], [ alle pronomen ], [ höchst portables beschwergerät ]),
), ),
) )
] ]
@ -50,15 +53,23 @@
= Setup = Setup
- Web-app (Proprietär, braucht einen Account) - Web-app (Proprietär, braucht einen Account)
- CLI - CLI
- Installation via Paketmanager falls verfügbar (Arch, Nix, Void, Homebrew) - Installation via Paketmanager falls verfügbar (Arch, Nix, Void, Homebrew)
- von Github Release: github.com/typst/typst/releases - von Github Release: github.com/typst/typst/releases
- Editor
- Liegt euch offen
- Auch ein reiner Texteditor ohne Syntax Highlighting ist gut verwendbar
- VS Codium und Code haben beide eine exzellente Extension namens `Typst LSP`
- Ansonsten gibt es auch einen LSP server standalone
- https://github.com/nvarner/typst-lsp/
] ]
#polylux-slide[ #polylux-slide[
= CLI Benutzung = CLI Benutzung
- `typst compile` kompiliert ein Dokument - `typst compile` kompiliert ein Dokument
- `typst watch` rekompiliert bei allen änderungen - `typst watch` rekompiliert bei allen änderungen
- Die `--open` flag öffnet Dokumente im standard PDF-Viewer - Die `--open` flag öffnet Dokumente im standard PDF-Viewer
] ]