
事實上,我笨拙地列印節點,然後使用適合節點來覆蓋多個子節點。
這並不漂亮。一定有更聰明、更自然的東西。
微量元素
\documentclass{standalone}
\usepackage{tikz}
\usetikzlibrary{calc,shadows,fit,matrix}
\usepackage{duckuments}
\begin{document}
\def\myimageA{\includegraphics[width=2cm]{example-image-duck}}
\def\myimageB{\includegraphics[width=1cm]{example-image-duck}}
\def\d{\textbf{Selling group}}
\def\e{\textbf{Investors}}
\begin{tikzpicture}[
font=\sffamily,
level1/.style={
rounded corners,
fill=#1,
inner sep=5pt,
text=black,
text centered,
opacity = 0.5,
text opacity = 1,
},
level2/.style={
rounded corners,
fill=#1,
inner sep=7pt,
text=black,
text centered,
opacity = 0.5,
text opacity = 1,
},
rectnode/.style={
rounded corners,
fill=#1,
inner sep=7pt,
text=black,
text centered,
text opacity = 1,
},
level4/.style={
fill=#1,
draw=gray,
inner sep=5pt,
text=black,
text width=1.5cm,
text centered,
font=\tiny,
anchor=north,
opacity = 0.5,
text opacity = 1,
},
myline/.style={
draw=gray,
opacity=0.7,
arrows = {-latex},
line width=1pt,
},
]
\matrix[
matrix of nodes,
column sep=0.5ex,
row sep=3ex,
row 1/.style={nodes={level1={gray}}},
row 2/.style={nodes={level2={gray}}},
row 3/.style={nodes={rectnode={gray}}},
row 4/.style={nodes={level4={gray}}},
row 5/.style={nodes={rectnode={gray}}},
] (m) {
& & & {\myimageA} \\
& & & {\myimageB} \\
& {\myimageB} & & {\myimageB} & & {\myimageB} \\
{\d}& {\d} & {\d} & {\d} & {\d} & {\d} \\
x & x & x & x & x & {\e} \\ % <- I clumsily put the nodes like this
};
% I certainly should use a \path but not confortable with its syntax.
\draw[myline] (m-1-4.south) -- (m-2-4);
\draw[myline] (m-2-4.west) -| (m-3-2);
\draw[myline] (m-2-4.east) -| (m-3-6);
\draw[myline] (m-2-4.190) -| (m-4-3);
\draw[myline] (m-2-4.south) -| (m-3-4);
\draw[myline] (m-3-2.west) -| (m-4-1);
\draw[myline] (m-3-2.south) -| (m-4-2);
\draw[myline] (m-3-4.south) -| (m-4-4);
\draw[myline] (m-3-4.east) -| (m-4-5);
\draw[myline] (m-3-6.south) -- (m-4-6);
\draw[myline] (m-3-6.south) -- (m-4-6);
\draw[myline] (m-4-1.south) -- (m-5-1);
\draw[myline] (m-4-2.south) -- (m-5-2);
\draw[myline] (m-4-3.south) -- (m-5-3);
\draw[myline] (m-4-4.south) -- (m-5-4);
\draw[myline] (m-4-5.south) -- (m-5-5);
\draw[myline] (m-4-6.south) -- (m-5-6);
\node[align=center,rectnode={gray},inner sep=0pt,fit=(m-5-1)(m-5-2)] {\e};
\node[align=center,rectnode={gray},inner sep=0pt,fit=(m-5-3)(m-5-5)] {\e};
\end{tikzpicture}
\end{document}
答案1
從現有節點到現有節點的北邊緣(不是北邊緣的中心)繪製垂直線的語法是
\draw (node1) -- (node1.south|-node2.north)
因此,消除矩陣的最後一行並將“投資者”節點放置在您想要的位置。我把它們放在1.2cm
矩陣最後一行的下面。第一個位於m-4-2
節點下方;第二個位於m-4-4
和的中點下方m-4-5
。
然後命令
\draw[myline] (m-4-1.south) -- (m-4-1.south|-new1.north);
將從(m-4-1.south)
直線向下繪製到 的北邊緣(new1)
,這就是我命名的第一個「投資者」節點。
\matrix[
matrix of nodes,
column sep=0.5ex,
row sep=3ex,
row 1/.style={nodes={level1={gray}}},
row 2/.style={nodes={level2={gray}}},
row 3/.style={nodes={rectnode={gray}}},
row 4/.style={nodes={level4={gray}}},
row 5/.style={nodes={rectnode={gray}}},
] (m) {
& & & {\myimageA} \\
& & & {\myimageB} \\
& {\myimageB} & & {\myimageB} & & {\myimageB} \\
{\d}& {\d} & {\d} & {\d} & {\d} & {\d} \\
%x & x & x & x & x & {\e} \\ % <- I clumsily put the nodes like this
};
\draw[myline] (m-1-4.south) -- (m-2-4);
\draw[myline] (m-2-4.west) -| (m-3-2);
\draw[myline] (m-2-4.east) -| (m-3-6);
\draw[myline] (m-2-4.190) -| (m-4-3);
\draw[myline] (m-2-4.south) -| (m-3-4);
\draw[myline] (m-3-2.west) -| (m-4-1);
\draw[myline] (m-3-2.south) -| (m-4-2);
\draw[myline] (m-3-4.south) -| (m-4-4);
\draw[myline] (m-3-4.east) -| (m-4-5);
\draw[myline] (m-3-6.south) -- (m-4-6);
\draw[myline] (m-3-6.south) -- (m-4-6);
\node[align=center, rectnode={gray}, minimum width=5cm] at ([yshift=-1.2cm]m-4-2)(new1){\e};
\node[align=center, rectnode={gray}, minimum width=3.5cm]at ([yshift=-1.2cm]$.5*(m-4-4)+.5*(m-4-5)$)(new2){\e};
\node[align=center, rectnode={gray}]at ([yshift=-1.2cm]m-4-6)(new3){\e};
\draw[myline] (m-4-1.south) -- (m-4-1.south|-new1.north);
\draw[myline] (m-4-2.south) -- (new1);
\draw[myline] (m-4-3.south) -- (m-4-3.south|-new1.north);
\draw[myline] (m-4-4.south) -- (m-4-4.south|-new2.north);
\draw[myline] (m-4-5.south) -- (m-4-5.south|-new2.north);
\draw[myline] (m-4-6.south) -- (new3);