I am try to create a diagram similar to the following in Tikz:
I know how to create each individual row I think, I'm doing something similar to:
\tikzstyle{cell} = [rectangle, rounded corners=5pt, thick, draw, text width=0.65cm ]
\node [cell, text width=8.7cm] (n1) {Z};
I figured I could stack them with something like:
\node [cell, text width=8.7cm] (n1) [above=of n2]{Z};
\node [cell, text width=4.1cm] (n2) {X};
\node [cell, text width=4.1cm] (n3) [right=of n2] {Y};
but that doesn't stack them the way I want to. I've seen similar answers using stuff like "above right", etc. but those seem to place them diagonally instead of aligned like the picture above.
Any help would be appreciated - thanks!






\documentclass{...}, the required\usepackage's,\begin{document}, and\end{document}. That may seem tedious to you, but think of the extra work it represents for TeX.SX users willing to give you a hand. Help them help you: remove that one hurdle between you and a solution to your problem. – CarLaTeX Sep 10 '17 at 04:49