我正在通过代码(C#)为 png 文件创建方程式。如何更改方程式的大小?因为有时我的方程式很长,图像包含小字符,而对于短方程式,图像包含大字符。
我的流程包含 3 个步骤:
- 生成 PDF
下面是我的代码:
\documentclass[6pt]{article}
\usepackage{amsmath, fontspec}
\setmainfont{Arial}
\setmathrm{Arial}
\begin{document}
\begin{equation*}
\mathrm{
{formula}
}
\end{equation*}
\end{document}
- PDFCROP
3.PDF 转 PNG
代码:
- 生成 pdf - 在 cmd 中运行命令:
-output-directory={outputDictionary} -jobname {_imageName} {表达式}
- pdf corp-在cmd中运行命令:
-margin 3 {_imageName}.pdf {_imageName}-crop.pdf
- Pdf 转 Png-在 cmd 中运行命令:
-png {_图像名称}-crop.pdf {_图像名称}