typst-kfu-slides-template/README.md
Gaspard Jankowiak 101f53c3c5 update README
2025-12-13 21:33:50 +01:00

51 lines
1.3 KiB
Markdown

# Typst KFU Slides Template
Adapted from Ernesto Martínez García's [definitely-not-isec-slides](https://typst.app/universe/package/definitely-not-isec-slides).
Quickstart (CLI):
```sh
typst init @preview/definitely-not-kfu-slides:1.0.1 slides
```
Quickstart (WebIDE):
- [Create Document](https://typst.app/app?template=definitely-not-kfu-slides&version=1.0.1)
- [Homepage](https://typst.app/universe/package/definitely-not-kfu-slides)
Tested typst version: `0.14.0`.
## Typst
### What's Typst?
A modern typesetting system which has:
- Milisecond incremental (memoized) builds¹
- Subsecond full builds¹
- Multithreaded builds per pagebreak
- Easy rustc-like compiler error messages (and no intermediates!)
- Transparent multiple compiler passes (no more mklatex/makefiles)
- Simple & powerful scripting and syntax
- WebAssembly plugin support (python/js interpreters in your thesis? Sure)
Migrating from LaTeX? Check the [migration guide](https://typst.app/docs/guides/guide-for-latex-users/)
¹: This is obviously not a serious benchmark and depends on the document. But
it's fast trust me
### Quick usage
Start incremental compilations with:
```sh
typst watch slides.typ
```
then open the generated PDF:
```sh
xdg-open slides.typ
```
Now edit `slides.typ` and it will be incrementally built in each save.