ASCIIMath2TeX.Net

cannorin Free   Connect to feed
ASCIIMath to TeX converter, port of the official PHP implementation using the Peachpie compiler

ASCIIMath2TeX.Net

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.

Install via NuGet

Example

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());

More information

ASCIIMath2TeX.Net
1.0.20200319
12/6/2020
github.com/cannorin/ASCIIMath2Tex.Net

Share