Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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 MathJaxRenderer

julia> m = Math("\\frac{1}{1 + x}");

julia> write("fraction.png", m);

```

See `?Math` for the full range of rendering options available.