Metadata-Version: 2.1
Name: manim-onlinetex
Version: 0.1.0
Summary: A Manim Plugin that renders LaTeX for Mobjects like Tex and MathTex via online services.
License: MIT
Author: Aathish Sivasubrahmanian
Author-email: aathish04@gmail.com
Requires-Python: >=3.6,<4.0
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Multimedia :: Graphics
Classifier: Topic :: Multimedia :: Video
Classifier: Topic :: Scientific/Engineering
Requires-Dist: manim
Requires-Dist: requests (>=2.25.1,<3.0.0)
Description-Content-Type: text/markdown

# manim-onlinetex

A Manim Plugin that renders LaTeX for Mobjects like `Tex` and `MathTex` via online services.
This plugin will try to render the LaTeX required by such Mobjects via [LaTeX4Technics](https://www.latex4technics.com/), and if for some reason LaTeX4Technics is down, will attempt to use [QuickLaTeX](https://quicklatex.com/).

## Usage instructions

Import the contents of `manim_onlinetex` AFTER `manim` has been imported, like so:

```py
from manim import *
from manim_onlinetex import *
```

Then, use a `Mobject` that requires `LaTeX` rendering. If the
Plugin is doing its job, then the `Tex` folder of your `media`
directory should have the source `.tex` file, the final `.svg` 
file, and no intermediary files (like `.dvi` files), since that's
all handled by the online service.
