确实存在一个非常好的原型我问的问题。看一下它会更容易理解这个问题。
我们如何在框中添加“注释”,并添加指向塔顶的箭头?
与此类似
这似乎有帮助,但它创建了一个很长的盒子,这在投影仪上看不清楚。
平均能量损失
\documentclass[convert]{standalone}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\node [anchor=west] (note) at (6.0,4) {
\fbox{\begin{minipage}{11em}
FOOBARBAZ FOOBARBAZ FOOBARBAZ
\end{minipage}}};
\begin{scope}[xshift=1.5cm]
\node[anchor=south west,inner sep=0] (image) at (0,0) {\includegraphics[scale=0.15]{graphs/test.pdf}};
\begin{scope}[x={(image.south east)},y={(image.north west)}]
\draw [-latex, ultra thick, red] (note) to[out=0, in=90] (0.68,0.70);
%\draw[blue,thick,rounded corners] (0.2,1.0) rectangle (0.1,0.15);
\end{scope}
\end{scope}
\end{tikzpicture}%
\end{document}
答案1
您可以node
向箭头添加一些文字。希望这能帮助您入门。如果没有,请提供一个最低限度的工作示例。
平均能量损失
\documentclass[convert]{standalone}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\draw[->, thick] node[draw, text width=3cm, above]
{Enter your text here. Adjust the \texttt{text width} to change the size of the box.}
(0,0)--++(0, -2);
\end{tikzpicture}
\end{document}