typst.md (928B)
1 --- 2 title: Typst, the smart tex alternative 3 author: "Linus Behrens" 4 date: 2025-06-01T15:00:00+02:00 5 tags: ['software', 'texteditor'] 6 header: "/header/math.invert.png" 7 --- 8 9 When ever editing big text projects I used $\LaTeX$. Just because Latex is the right tool for the job. 10 11 <!--  --> 12 13 <!-- https://www.reddit.com/r/LaTeX/comments/b9549s/i_dont_know_if_memes_are_allowed_but_here_is_a/ --> 14 15 But as it turned out there has been a simpler tool for the job. And it is called Typst. 16 17 Why it is simpler: 18 19 - It is FOSS 20 - Ready to write: no `\document{begin}` 21 - Markdown based syntax where it can: eg. headings with `=` 22 - Easy math syntax 23 - Simple coding constructs instead of single use case based macros 24 - FOSS templates ready to clone 25 - Renders preview from buffer: instant update without having to safe 26 27 ```typ 28 lim_(x->oo) 1/x = 0 29 ``` 30 31 Their [GitHub Page](https://github.com/typst) 32 33 34