Tikz 十字未顯示,僅顯示輪廓框

Tikz 十字未顯示,僅顯示輪廓框

我正在嘗試使用 tikz 在 png 上疊加一個十字。然而,只顯示了一個薄方形輪廓框,而不是產生一個十字。

我使用的程式碼如下所示:

\begin{tikzpicture}
\node [anchor=west] (tc99) at (0,6) {\Large Isotope to Trace};
\begin{scope}[xshift=1.5cm]
    \node[anchor=south west,inner sep=0] (image) at (0,0) {\includegraphics[width=0.8\textwidth]{Photos/coN_99tc.png}};
    \begin{scope}[x={(image.south east)},y={(image.north west)}]
        \draw[blue,ultra thick,rounded corners] (0.58,0.67) rectangle (0.67,0.50);
        \draw [-latex, ultra thick, blue] (tc99) to[out=0, in=120] (0.60,0.68);
        \node [cross out,draw=red] at (0.55,0.55) {};
    \end{scope}
\end{scope}
\end{tikzpicture}%

我正在使用背頁來編譯投影機演示文稿,如果這有什麼不同的話

相關內容