For example, in the following (contrived) MWE, I'd like to top align the blue square and the green square. (my ultimate goal is a document with text and pictures, and I would like all of that to look like pure text : top-aligned, left aligned)
More generally, I'd like to be able to control individually all the cells positions in their given "space" in the matrix. Some would be north-east, some south-center, etc.
I suspect the answer to be an "anchor" option with a "north" value, but I don't fully understand the examples I read (on tex.stackexchange.com, in some documents like VisualTikZ, ...).
Any hint (or link to an example) would be much appreciated.
If it is not possible only with TikZ, I will use another package.
Thanks !
MWE
\documentclass{standalone}
\usepackage{tikz}
\usetikzlibrary{matrix}
\begin{document}
\begin{tikzpicture}
\matrix [line width=2pt] {
\draw (0,0) rectangle (1,1) [draw=blue];
&
\draw (0,0) rectangle (2,2) [draw=orange];
\
\draw (0,0) rectangle (2,2) [draw=red];
&
\draw (0,0) rectangle (1,1) [draw=green];
\
};
\end{tikzpicture}
\end{document}

