140
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
this post was submitted on 18 Mar 2026
140 points (96.7% liked)
Open Source
45525 readers
590 users here now
All about open source! Feel free to ask questions, and share news, and interesting stuff!
Useful Links
- Open Source Initiative
- Free Software Foundation
- Electronic Frontier Foundation
- Software Freedom Conservancy
- It's FOSS
- Android FOSS Apps Megathread
Rules
- Posts must be relevant to the open source ideology
- No NSFW content
- No hate speech, bigotry, etc
Related Communities
- !libre_culture@lemmy.ml
- !libre_software@lemmy.ml
- !libre_hardware@lemmy.ml
- !linux@lemmy.ml
- !technology@lemmy.ml
Community icon from opensource.org, but we are not affiliated with them.
founded 6 years ago
MODERATORS
One issue i had with typst that was never an issue with LaTeX is dealing with big documents. One of the reports I was putting together had a very big appendix with a lot of images. I run typst locally and it autocompiles as you write, but with more images, it uses more RAM and everything slows down. The problem I had was that the thing would crash every time I tried to write anything. I turned off automobile and do it manually now, but it still cant so the full document with the appendix. My work around was to compile the appendix separately and in ten page increments, then merge the pdfs afterwards. This sort of thing would never be an issue in LaTeX with the added convenience of draft mode for big documents with lots of figures.
In fairness, this behavior is definitely a result of some bug and compiling everything is still significantly faster than LaTeX.
Another thing that kind of bothers me is references. I am a big fan of the natbib way of writing \citet or \citep. In Typst, you normally type "@Doe2026" and it produces a normal citation like \citep, but if you want anything else, you have to use the far more cumbersome #cite command or define a custome function. Its not that big of a deal but still annoying for me.