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 来编写 beamer 演示文稿,看看这是否有什么不同

相关内容