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}%

私はオーバーリーフを使ってビーマープレゼンテーションをコンパイルしていますが、これが違いを生むかどうかはわかりません

関連情報