多部分节点中的相对定位

多部分节点中的相对定位

有没有办法使用相对定位从支架尖端的起点画一条线?

\documentclass{article} 
\usepackage{tikz}
\usetikzlibrary{shapes.multipart,positioning,decorations.pathreplacing}

\begin{document}
   \begin{tikzpicture}
     \draw[help lines] (0,0) grid (3.0,3.0);
     \node[align=center,draw,shape=rectangle split,
           rectangle split horizontal,rectangle split parts=3, text width=2cm] (A)
           {1\nodepart{two}2\nodepart{three}3};
     \draw [decoration={brace,mirror,raise=5pt},
            decorate,below=10pt](A.one south) -- node[below=10pt]{}(A.two south);
     \draw [->] (-1.1,-0.5) --(-1.1,-2);
   \end{tikzpicture}
\end{document}

答案1

\documentclass{article} 
\usepackage{tikz}
\usetikzlibrary{shapes.multipart,positioning,decorations.pathreplacing}

\begin{document}
  \begin{tikzpicture}
  \draw[help lines] (0,0) grid (3.0,3.0);
  \node[align=center,draw,shape=rectangle split,
       rectangle split horizontal,
       rectangle split parts=3, text width=2cm] (A)
        {1\nodepart{two}2\nodepart{three}3};
  \draw [decoration={brace,mirror,raise=5pt},
         decorate,below=10pt](A.one south) -- coordinate[below=10pt] (tip) (A.two south);
  \draw [->] (tip) -- (2,-2);
  \end{tikzpicture}
\end{document} 

在此处输入图片描述

相关内容