https://github.com/michaelhatherly/mathjaxrenderer.jl
Render LaTeX equations with MathJax offline.
https://github.com/michaelhatherly/mathjaxrenderer.jl
julia mathjax
Last synced: 8 days ago
JSON representation
Render LaTeX equations with MathJax offline.
- Host: GitHub
- URL: https://github.com/michaelhatherly/mathjaxrenderer.jl
- Owner: MichaelHatherly
- License: mit
- Created: 2021-03-27T16:17:40.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-11-15T08:44:24.000Z (8 months ago)
- Last Synced: 2025-07-07T00:03:01.523Z (8 days ago)
- Topics: julia, mathjax
- Language: Julia
- Homepage:
- Size: 69.3 KB
- Stars: 19
- Watchers: 2
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# MathJaxRenderer.jl
Wrapper package for rendering LaTeX mathematics using offline MathJax and
`rsvg-convert` to SVG, PNG, PDF, and postscript.## Usage
Wrap an `AbstractString` in the provided `Math` object:
```julia
julia> using MathJaxRendererjulia> m = Math("\\frac{1}{1 + x}");
julia> write("fraction.png", m);
```
See `?Math` for the full range of rendering options available.