是否有任何插件可以安装在服务器上或仅保留在服务器上以将乳胶方程式转换为图像?
我想给出如下输入
A_{m,n}=\begin{pmatrix}a_{1,1}&a_{1,2}&\cdots&a_{1,n}\\a_{2,1}&a_{2,2}&\cdots&a_{2,n}\\\vdots&\vdots&\ddots&\vdots\\a_{m,1}&a_{m,2}&\cdots&a_{m,n}\end{pmatrix}
并以图像形式输出
我经历了GitHub 解决方案并弄清楚了这个 bash 脚本但它不支持一些 Latex 方程,例如
A_{m,n}=\begin{pmatrix}a_{1,1}&a_{1,2}&\cdots&a_{1,n}\\a_{2,1}&a_{2,2}&\cdots&a_{2,n}\\\vdots&\vdots&\ddots&\vdots\\a_{m,1}&a_{m,2}&\cdots&a_{m,n}\end{pmatrix}
和
M=\begin{bmatrix}\frac56&\frac16&0\\[0.3em]\frac56&0&\frac16\\[0.3em]0&\frac56&\frac16\end{bmatrix}
答案1
假设您的 latex 文件是myfile.tex
,
那么您可以执行以下操作:
latex myfile.tex
生成 dvi 文件。(即 myfile.dvi)
要将 dvi 文件转换为图像,
请运行:
dvipng myfile.dvi
或:
dvigif myfile.dvi
当然,可以使用 shell 脚本或设置别名轻松实现此过程的自动化。
答案2
您可以使用图像魔术师可以做到这一点。据我所知,它有很多功能可以对乳胶方程式执行您想要的操作。
这Stack Overflow 上的 Imagemagick 标签有与您的问题相关的帖子。
这是 ImageMagick 的一个插件:github LatexEquationPreview