typst-kfu-slides-template/README.md
Gaspard Jankowiak 3c695efdf8 update README
2025-12-13 21:30:36 +01:00

49 lines
1.2 KiB
Markdown

# KFU Slides Template
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.