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

이것이 차이를 만든다면 나는 overleaf를 사용하여 비머 프리젠테이션을 컴파일하고 있습니다.

관련 정보