Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Creating a LaTeX Document in C#/WPF Application

Has anyone ever created a .pdf document within their C#/WPF application using LaTeX? We're creating reports and displaying them to the screen and we've looked into creating the reports with HTML and LaTeX. The HTML option is easy, but creating a LaTeX document within C# seems non-trivial which I personally find a bit odd; I'd think people have done this many times before. Anyone know of any LaTeX libraries to look at or some other way of doing it?

like image 527
JToland Avatar asked Nov 04 '22 23:11

JToland


1 Answers

I've been working on a C# port of the iosMath LaTeX library. As I write this, it produces good results in most cases. I'm working on the remaining ones.

https://github.com/verybadcat/CSharpMath/tree/master

like image 173
William Jockusch Avatar answered Nov 12 '22 12:11

William Jockusch