-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Typst Support #16
Comments
All of the code is heavily dependent upon the Latexify.jl package, so I don't think this is doable without a Typst equivalent of latexify.jl. It looks like Typstry is more so the equivalent to LaTeXStrings.jl right? However, I have used the typst option for rendering in quarto and the handcalcs equations render out. Have you tried that? |
@jakobjpeters can you comment on feasibility here? |
It has similar goals to both LaTeXStrings.jl and Latexify.jl. Formatting Julia values is done by defining methods of So after Typstry.jl implements a = 2
@typst($a * x)
== TypstString(:(2 * x))
== TypstString(TypstFunction(*, 2, :x))
== typst"$2x$" |
I tried typst for the first time last night, and it is pretty amazing. I guess time will tell how good integration we can get in Julia with typst, but yeah I can try and get it integrated once features are closer to Latexify! |
There seems to be significant enthusiasm behind a new typesetting system called Typst to replace LaTeX. I would like to be able to use this package with it.
A Latexify.jl equivalent Typstry.jl already exists, so hopefully you can just swap out the backend?
Probably a big ask, but I leave it anyway for your consideration. Thanks.
The text was updated successfully, but these errors were encountered: