使用图钉是注释 PGF 图中的图的一种好方法。但是,我希望将图表上某个点到文本的线的粗细设为粗体。我该怎么做?
考虑以下 MWE:
\documentclass{minimal}
\usepackage{pgfplots}
\pgfplotsset{compat=1.5.1}
\begin{document}
\begin{tikzpicture}
\begin{axis}
\addplot[domain=1:6]
{exp(x)};
54.59815
\node[coordinate,pin=left:{A pin!}]
at (axis cs:4,54.59815) {};
\end{axis}
\end{tikzpicture}
\end{document}
答案1
要修改单个引脚,您可以使用pin edge
:
\documentclass{article}
\usepackage{pgfplots}
\pgfplotsset{compat=1.5.1}
\begin{document}
\begin{tikzpicture}
\begin{axis}
\addplot[domain=1:6]
{exp(x)};
54.59815
\node[coordinate,pin={[pin edge={blue,ultra thick}]left:{A pin!} } ]
at (axis cs:4,54.59815) {};
\end{axis}
\end{tikzpicture}
\end{document}
要更改所有图钉的格式,您可以更改样式every pin edge
。