RyanMarcus / tex2svg

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

tex2svg

pip3 install tex2svg

A simple program to convert a LaTeX equations to SVGs.

# for "inline mode" LaTeX
echo "x^2" | tex2svg > x2.svg 

# for "block" LaTeX
echo "x^2" | tex2svg --block > x2.svg

Depends on pdflatex, pdfcrop, pdf2svg, and svgo. On Arch Linux, you can install these with:

sudo pacman -S pdf2svg texlive-most npm
sudo npm install -g svgo

This program automatically caches outputs. The cache is stored in ~/.tex2svg.

About

License:GNU General Public License v3.0


Languages

Language:Python 91.9%Language:Shell 8.1%