将 tikz 转换为 PNG

将 tikz 转换为 PNG

大家好, 我正在尝试将图像 tikz 转换为 png,但我不知道如何在 TeXStudio 中使用 shell escape。我在 Windows 10 操作系统中使用 imageMagik。

如何在 TeXStudio 中使用选项 -shell-escape 编译我的 tex 文件,以及在编译后在哪里找到我的图像。

这是一个例子:

\documentclass[preview,border=4mm,convert={density=600,outext=.png}]{standalone} 
    \usepackage[utf8x]{inputenc}
    \usepackage[T1]{fontenc}
    \usepackage[light, largesmallcaps]{kpfonts}
    \usepackage{pgf,tikz,pgfplots}

    \begin{document}
    \begin{tikzpicture}
    \draw (0,0) rectangle (3,2) ;
    \end{tikzpicture}
    \end{document}

相关内容