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
888 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
I've been meaning to learn LaTeX but never got around to it. I write documents in markdown and convert to PDF, but would like to have some rich typesetting.
For anyone who has ever used both, would you recommend learning this or LaTeX for non-academic use case?
Typst is way simpler to learn, especially if you're used to markdown. You can first approach it as a markup language like markdown, but with some scripting.
Package management in LaTeX is infuriatingly bad, you can't even specify the version you want to use.
I can only speak for myself but I like Typst a lot more than LaTeX. Typst compiles instantly and the markup language is very reasonable. LaTeX by comparison is slow and arcane, with a macro language that is unlike anything else in common use today. It also has pretty awful defaults to be honest, especially if you're writing in a language that isn't English. There are a few things that Typst can't quite do, but that gap is shrinking as well.
Edit: This blog post has some examples and showcases a lot of the core functionality, including the scripting. Typst has a playground which you can use to get a feel for the basics (though installing it locally isn't a massive pain either, unlike LaTeX). Overleaf allows trying LaTeX in the browser for free as well, although only with an account (partly because LaTeX tooling is a pain and expensive in CPU resources).
As someone who used LaTeX for many years and then switched over to Typst, I see no reason to use LaTeX these days. Typst syntax is more readable and it is much nicer to write.
Especially if you’re coming from markdown, I think Typst is the better choice. Typst syntax is very similar to markdown for the simple things and more advanced things are like any super high level programming language.