Slightly hacky but good enough math rendering in emacs 馃獎
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at master 21 lines 544 B view raw
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"] }