tikzpicture 出现奇怪错误

tikzpicture 出现奇怪错误

我正在尝试打印这张图片

在此处输入图片描述

使用以下代码:

\begin{tikzpicture}
    \draw [->] (-2.5,0) -- (2.5,0) node [pos=1,below] {$\Re$};
    \draw [->] (0,-0.5) -- (0,2.5) node [pos=1,right] {$\Im$};

    \begin{scope}[thick, decoration={
        markings,
        mark=at position 0.25 with {\arrow{>}}, mark=at position 0.75 with {\arrow{>}}}
        ] 
        \draw[orange,postaction={decorate}] (2cm,0) arc (0:180:2cm) node[pos=0,below]{$\Gamma$} node[pos=0.1,right]{$C_R^+$};
        \draw[orange,postaction={decorate}] (0.5cm,0) arc (180:0:0.5cm) node[pos=0.3,above]{$C_\varepsilon^-$};
    \end{scope}

    \begin{scope}[thick, decoration={
        markings,
        mark=at position 0.75 with {\arrow{>}}}
        ] 
        \draw[orange,postaction={decorate}] (-2,0) -- (0.5,0);
        \draw[orange,postaction={decorate}] (1.5,0) -- (2,0);
    \end{scope}

    \draw[fill,red] (1,0) circle (0.5mm) node[below]{$\omega$};
\end{tikzpicture}

直到昨天,它都运行正常。今天,当我尝试编译该文件(通过 Overleaf)时,它给出了以下错误消息:

软件包 tikz 错误:抱歉,系统调用“pdflatex -shell-escape -halt-on-error -interaction=batchmode -jobname "output-figure0" "\def\tikzexternalrealjob{output}\input{output}"”未产生可用的输出文件“output-figure0”(预期为 .pdf:.jpg:.jpeg:.png: 之一)。请确认您已启用系统调用。对于 pdflatex,这是“pdflatex -shell-escape”。有时它也被命名为“write 18”或类似名称。或者命令可能只是失败了?错误消息可以在“output-figure0.log”中找到。如果您现在继续,我将尝试排版图片。

我不太明白这是什么意思,而且我在网上查找也没有结果。

相关内容