Earlier quoted context omitted.
Is it as good for generating EPUB or HTML for instance? Or just plain text?
I use it to generate PDF. The last release introduced experimental HTML output which is promising but still immature. Work on EPUB support hasn't started as far as I know but it's on the roadmap, and I guess it will be relatively easy once the ongoing work on HTML and accessibility is done.
Typst: A Possible LaTeX Replacement
151–160 of 390 posts
Re: Typst: A Possible LaTeX Replacement
#152I just found out https://typst.app/play/ - this is an absolute gamechanger. Tried it for a minute, but already loving it.
Re: Typst: A Possible LaTeX Replacement
#153Typst is just wonderful, I hear maths majors now procrastinate on thesis writing by writing typst packages instead. Give it ten years and see how it developed. Pros: - Instant compile. It just sits there waiting, and once you save your .typ, boom, your .pdf is ready. - Surprisingly often I find myself using it as markdown replacement, e.g., for random meeting notes. Syntax is as easy as markdown and without boilerpla…
Re: Typst: A Possible LaTeX Replacement
#154Earlier quoted context omitted.
For your use case, why were you using LaTeX in the first place? That is more surprising than finding a replacement for LaTeX.
What else would you use to generate PDFs from a text-based template?
Re: Typst: A Possible LaTeX Replacement
#155In the past I have also used it to generates quotes (in terms of finances, invoice etc.). It was neat because all of the logic for adding up the subtotal was written in the language (and was fairly easy to understand). I can imagine trying to do that logic in LaTeX…
Re: Typst: A Possible LaTeX Replacement
#156Earlier quoted context omitted.
8. Programming with it is lovely. Its got a little interpreted language built in, with helper functions like json("some_file.json"). I wrote a paper in it, and used that extensively to populate all my result tables. (Benchmark script -> JSON files -> typst compiled the results directly into the PDF).
As you wrote a paper, how difficult would you say is it to recreate the template of the venue you submitted to?
Re: Typst: A Possible LaTeX Replacement
#157It's great to see Typst getting more visibility. We migrated a real-world workload to it a couple of years back: generating and e-mailing 1.5M+ PDFs daily at my org, Zerodha. Our previous pipeline was LaTeX-based (first pdflatex, then lualatex), but we were constantly fighting cryptic memory errors on large documents and huge Docker image sizes that slowed down boot times of our ephemeral workers. Switching to Typst…
I am using a LaTeX pipeline for creating text, invoices, forms, etc. from snippets stored in a database. It was quite complicated to set up, but the results are very satisfying. In principle, I would like an easier markup language, but am afraid to wast my time trying out something new, just to run into limitations after awhile. Here are my most important requirements: Multiple columns configurable for meaningful col…
Re: Typst: A Possible LaTeX Replacement
#158Re: Typst: A Possible LaTeX Replacement
#159Re: Typst: A Possible LaTeX Replacement
#160These are some notes I wrote when I started out with typst when comparing with LaTeX: 1. It doesn't generate 5 bloody files when compiling. 2. Compiling is instant. 3. Diagnostics are way easier to understand (sort of like Rust compiler suggestion style). 4. List items can be either - item1 - item2, etc. or [item1], [item2]. The latter is way better because you can use anchoring to match on the braces (like "%" in vi…