pgfplots - 如何在组图中查找图标题的坐标?

pgfplots - 如何在组图中查找图标题的坐标?

假设我通过以下方式为 groupplot 提供标题

title={Word}

有没有办法寻址这个节点的区域,例如通过.north west等等(详见手册第 314 页)?

答案1

当你执行 时title=something,插入的内容类似于\node [every axis title] {something};。你可以使用选项添加节点名称name=,因此你可以修改样式every axis title以添加标题节点的名称。

\documentclass{standalone}
\usepackage{pgfplots}
\usepgfplotslibrary{groupplots}
\begin{document}
\begin{tikzpicture}

\begin{groupplot}[group style={group size=2 by 1}]
\nextgroupplot[title=Stuff,every axis title/.append style={name=title1}]
\addplot {x^2};

\nextgroupplot[title=More Stuff,every axis title/.append style={name=title2}]
\addplot {x^3};
\end{groupplot}

\draw (title1.north east) to[out=45,in=135] (title2.north west);
\end{tikzpicture}

\end{document}

相关内容