在外部图形上绘制符号

在外部图形上绘制符号

假设我有下图,我想在其上添加符号:

enter image description here

最大的黑色正方形沿两个边的尺寸为 -1 到 1。我想在点 (0.5, 0.5) 处放置一个三角形符号。

如何在 TikZ 或 PStricks 中做到这一点?第一部分是加载图像并在其中放置符号,另一方面是获取正确的位置。

答案1

\documentclass[tikz,border=3.14mm]{standalone}
\usetikzlibrary{plotmarks}
\begin{document}
\begin{tikzpicture}
\node at (0,0) {\includegraphics[width=2cm,height=2cm]{example-image}};
\node[blue] at (0.5,0.5) {\pgfuseplotmark{triangle}};
\end{tikzpicture}
\end{document}

enter image description here

相关内容