Pretty printing math in C# desktop application

后端 未结 3 1028
[愿得一人]
[愿得一人] 2021-01-05 09:37

What is the best method of printing math equations in a C# (winforms) desktop application? The format for the source is not important; I can generate almost anything with a

3条回答
  •  旧巷少年郎
    2021-01-05 10:21

    Some googling lead me to this CodeProject article: it uses MimeTex, a library that generates gif from latex formulas. You'll have to use PInvoke to have it in C#, but everything seems to be in the article.

提交回复
热议问题