I would like to take two TikZ matrix, possibly of different dimensions and stack them. My demo code:
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{matrix}
\begin{document}
\begin{tikzpicture}
\matrix [matrix of nodes,row sep=-\pgflinewidth,column 2/.style={nodes={rectangle,draw,minimum width=3em}}]
{
0 & 6 \\
};
\matrix [matrix of nodes,row sep=-\pgflinewidth,column 2/.style={nodes={rectangle,draw,minimum width=3em}}]
{
1 & 3 \\
};
\end{tikzpicture}
\end{document}
There should be some space between the matrices and they should be aligned. I've tried to use below of but it doesn't seem to work...



at (3,2)? :P – percusse Nov 17 '12 at 00:11labeloption instead of using a matrix. – percusse Nov 17 '12 at 00:23below of, and solves it pretty well. – bright-star Jan 14 '14 at 22:02\documentclassand the appropriate packages that sets up the problem. – Peter Grill Jan 14 '14 at 22:37