I want to place a node in a tikzpicture in relation to the coordinates of a node in a previous tikzpicture.
MWE:
\documentclass[a7paper]{scrartcl}
\usepackage{tikz}
\usetikzlibrary{positioning}
\begin{document}
\centering
\begin{tikzpicture}
\node (a) {a};
\node[below left=of a] (b) {b};
\end{tikzpicture}
\newpage
\begin{tikzpicture}
\node[below=of b] (c) {c};
\end{tikzpicture}
\captionof{figure}{test}
\end{document}
I read the answers of a transforming coordinates question and to this coordinate extraction question, but I don’t think they work for me here.—Using an overlay also causes problems to the position of the caption.


\captionofand it is wherever you put it. This has nothing to do withoverlaybut only withnode distanceand the like. – Apr 22 '19 at 22:22yshift=4ptto the last "caption"-node and changing thetext widthto\textwidthresults in a perfect match for other captionskips/captionwidths – user1 Apr 22 '19 at 22:35