为了进行故障排除,我将问题简化到最基本的部分。因此,我使用以下命令启动我的 tex 文件:
\documentclass[tikz,convert={outext=.png}]{standalone}
如果我跟pdflatex
注
pdflatex.exe -shell-escape file_name
它返回
'magick' is not recognized as an internal or external command,
operable program or batch file.
Class standalone Warning: Conversion unsuccessful!
(standalone) There might be something wrong with your
(standalone) conversation software or the file permissions!
) )
(\end occurred when \ifx on line 3 was incomplete)
No pages of output.
但是,如果我magick
直接从同一个文件夹调用
magick file_name.pdf file_name.png
一切安好。
miktex 和 magick 文件夹都在路径中。我已经没有调试的想法了。有人能帮我吗?
答案1
在 standalone.cfg 文件中,我添加:
\standaloneconfig{convert={convertexe={D:/my/path/to/ImageMagick/magick.exe}}}
并且运行良好。