I encounter an error with the following code :
\documentclass{standalone}
\usepackage{tikz}
\usetikzlibrary{positioning,shapes.multipart, fit,backgrounds,calc}
\begin{document}
\node[matrix, column sep=1cm,] (postes){%
\foreach\x in{1,...,5}{%
\node{poste};&
}
\node{poste};\\
};
\end{tikzpicture}
\end{document}
In that case, I use a matrix in order to obtain a multi-column matrix with the foreach command but it seems that it is inappropriate.
I was wondering if some simple solution for padding automatically a matrix in tikz existed.


\pposte. – Zarko Nov 20 '15 at 20:39