Incidentally, there's an open issue with Typst for making HTML output, but I don't understand why that wasn't the project's first priority. Even if scientific journals require PDF uploads, you can still get those from printing HTML. The opposite isn't true at all.
Exploring Typst, a new typesetting system similar to LaTeX
241–243 of 243 posts
Re: Exploring Typst, a new typesetting system similar to LaTeX
#242Earlier quoted context omitted.
I'm doing PDF document generation in typst, the format I'm generating is similar to invoices (specific to how the law in my country is, but that's a longer story). Typst code generation was easy to automate with trivial python templates (jinja2). The core part of my document are multi-page tables, and typst splits them nicely. I had to google around a bit, as there are multiple settings on how large tables are handle…
Thanks! Are you using the json loading feature in typst at all?
Re: Exploring Typst, a new typesetting system similar to LaTeX
#243Earlier quoted context omitted.
It seems good, and there's an emacs version, altough simpler than auctex. Not having the preview in the code buffer, isn't a dealbreaker, especially when typst is so fast, but it's still a useful feature. The part of the packages I wasn't talking about a tex feature but an emacs one. When you import a package, it'll usually add environments or macros (in typst i believe they are called commands). Emacs would recogniz…
With typst you can get autocomplete for symbols imported from packages or defined locally. And your bibliography can use the same .bib files as latex if you want to. I’m pretty sure the typst editor plugins also know which mode you’re in and give you different autocomplete suggestions depending on the mode. But yeah, it’s probably still not quite as mature. But it is, in my opinion, much better designed. What feature…