tex 0.2.0
tex: ^0.2.0 copied to clipboard
Tiny TeX to SVG engine by Andreas Schwenk. Glyphs are taken from MathJax.
example/tex_example.dart
import 'package:tex/tex.dart';
void main() {
var tex = TeX();
var svgImageData = tex.tex2svg("x^2 + y^2");
if (svgImageData.isEmpty) {
print('Errors occurred: ${tex.error}');
}
print(svgImageData);
}