Is it possible to use circuitikz-shapes as cells inside a TikZ-matrix?
(I mean, as cells
<*> & <*> & <*> ... \\, how to place nodes afterwards is already clear.)
If I put in |[tgenericshape]|{} I get an error ! Package PGF Math Error: Unknown function base (in 'base').
\documentclass[margin=5pt, multi=circuitikz]{standalone}
\usepackage{circuitikz}
\usetikzlibrary{matrix}
\begin{document}
\begin{circuitikz}[]
\node[tgenericshape, label=center:GS0](G0){};
\matrix[matrix of nodes, nodes in empty cells,
draw, column sep=11mm,
] at (0,-2) (m){
1 & 2 & 3 \\
%|[tgenericshape, label=center:GS1]|{} & |[fill=pink]|{Test} & \\ does not work
};
\end{circuitikz}
\end{document}


