Slightly hacky but good enough math rendering in emacs 馃獎
1[package]
2name = "mathrender"
3version = "0.1.0"
4edition = "2024"
5description = "Render LaTeX/Typst math to SVG via Typst's layout engine"
6
7[[bin]]
8name = "mathrender"
9path = "src/main.rs"
10
11[dependencies]
12typst = "0.13"
13typst-svg = "0.13"
14typst-library = "0.13"
15typst-assets = { version = "0.13", features = ["fonts"] }
16
17tex2typst-rs = "0.1"
18
19comemo = "0.4"
20chrono = { version = "0.4", features = ["clock"], default-features = false }
21clap = { version = "4", features = ["derive"] }