This is a direct port of the official PHP implementation of the ASCIIMath2TeX converter, using the Peachpie compiler.
Please refer to the original source code for details.
F# example (from https://github.com/cannorin/FsNote)
let am2tex (code: string) =
let am2t = new AMtoTeX()
am2t.convert(PhpValue.Create(code)).ToString()
C# example:
var am2t = new AMtoTeX();
Console.Write(am2t.convert("3^f-4").ToString());
Id: | ASCIIMath2TeX.Net |
Version: | 1.0.20200319 |
Published: | 12/6/2020 |
Project URL: | github.com/cannorin/ASCIIMath2Tex.Net |