I have a reference to a nested node which is not working as well as expected. Here is an example:
Code: Select all
\begin{tikzpicture}
\node[draw, ellipse] (e1){
\begin{tikzpicture}
\node (n1) {$a$};
\end{tikzpicture}
};
\node[draw, ellipse] (e2) at (2,0){
\begin{tikzpicture}
\node (n2) {$b$};
\end{tikzpicture}
};
% Arrow
\draw[->, >=latex] (n2) to[out=160, in=20] (c1) ;
\end{tikzpicture}
I think instead of starting from the real position of b it starts from the position of b relatively to e2.
Is it possible to fix this? (and to keep the nested structure of the ellipses)
Thanks in advance.