Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/michaelhatherly/mathjaxrenderer.jl
Render LaTeX equations with MathJax offline.
https://github.com/michaelhatherly/mathjaxrenderer.jl
julia mathjax
Last synced: about 1 month 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 (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2024-04-01T19:36:50.000Z (9 months ago)
- Last Synced: 2024-11-10T00:04:48.963Z (about 2 months ago)
- Topics: julia, mathjax
- Language: Julia
- Homepage:
- Size: 67.4 KB
- Stars: 19
- Watchers: 3
- 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.