I have prepared a series of illustrated tables for a technical brochure, and I have finally elected to use the option "matrix of nodes" of Tikz. I could not manage however to center (on the same vertical center line) the large labels such as "40" or "40C1" with the graphics above. How to do this? Strangely, the bottom labels, such a s "40 contacts #20" are perfectly aligned.
\documentclass{article}
\usepackage[draft]{graphicx}
\usepackage{tikz}
\begin{document}
\centering
\begin{tikzpicture} [font=\sf,
mynode/.style={rectangle, text width = 4.5 cm, anchor=north, inner sep=0pt},
myheader/.style={rectangle, fill, color=blue!20, text width = 4.55cm, text=black, text centered, font={\Huge, \sf}, inner sep=5pt},
mylabel/.style={rectangle, fill, minimum height=10ex, color=black!10, text=black, text width = 4.55 cm, anchor=north, inner sep=5pt},
]
\matrix [column sep=0pt , row sep=0mm, align=center, draw, rectangle]
{
\node {\includegraphics[width=0.3\textwidth]{40Insert.pdf}}; &
\node {\includegraphics[width=0.3\textwidth]{40C1Inser.pdf}};
&\node {\includegraphics[width=0.3\textwidth]{45Insert.pdf}}; \\
\node [myheader]{40};&\node [myheader]{40C1};&\node [myheader]{45}; \\
\node [mylabel] {40 contacts \#20 };
&\node [mylabel] {39 contacts \#20 \\ 1 coax or triax contact \#5 \\ or 1 contact \#10};
&\node [mylabel] {45 contacts \#20};\\
\node [mynode] {};& \node [mynode]{}; &\node [mynode]{};\\
\node [mynode] {};& \node [mynode]{}; &\node [mynode]{};\\
};
\end{tikzpicture}
\end {document}

,in the font key (it’s not a list)? Simply declarefont=\Huge\sffamily. – Qrrbrbirlbel Aug 04 '13 at 14:10