Estou tentando sobrepor uma cruz em um png usando tikz. No entanto, em vez de ser produzida uma cruz, apenas uma caixa fina com contorno quadrado é mostrada.
O código que usei é mostrado aqui:
\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}%
Estou usando o verso para compilar uma apresentação do beamer, se isso fizer diferença