我的论文中有几张图片。我想在这些图片上绘制带有文字的箭头。之后我想缩放图片,但节点位置应该根据缩放和箭头进行调整,而文本大小不应改变。
以下是我的示例:
\begin{figure}
\begin{tikzpicture}[
every node/.style={font=12pt},
remember picture,
scale=0.3,
transform shape
]
\node[anchor=south west,inner sep=0] (Bild) at (0,0) {\includegraphics{images/Bild.eps}};
\node (a) at (28,44) {Hello};
\node (b) at (54,63) {};
\draw [
-latex,
line width=2mm,
] (a) -- (b);
\end{tikzpicture}
\caption{This is an example} \label{Fig:Example}
\end{figure}
因此,当我缩放0.3
图像时Bild.eps
,字体也会缩放得很小。
如何在不改变字体和箭头的情况下缩放图片,同时将节点坐标调整到缩放后的图片(相同位置)?
以下是我目前所掌握的信息:
\begin{tikzpicture}
\node[anchor=south west,inner sep=0] (image) at (0,0) {\includegraphics[width=1\textwidth]{Bild.eps}};
\begin{scope}[x={(image.south east)},y={(image.north west)}]
\draw[
-latex,
line width=2mm
] (1,1) -- (3,2);
\end{scope}
\end{tikzpicture}
但是我正在工作TikZEdt
。用光标设置节点来调整箭头非常困难。我得到了一个非常小的绿色矩形,它代表箭头的大小。
我怎样才能使这个矩形变大,以便更容易调整/设置箭头节点的位置?
好吧,我的意思就是这样:
- 缩放图片
- 保持箭头和字体大小(与文档大小相同)
- 保持节点的位置
该图片是我想要的输出(我用 Photoshop 对其进行了编辑)。