I got a simple TikZ nodes
\begin{tikzpicture}
\matrix (magic) [matrix of nodes,ampersand replacement=\&, column sep=6mm, row sep=5mm]{
\node (DT) [draw,shape=rectangle, rounded corners,visible on=<2->]{Source de données}; \\
\node (IF) [draw,shape=rectangle, rounded corners,visible on=<3->] {Items fréquents}; \\
\node (FER) [draw,shape=rectangle, rounded corners,visible on=<4->] {Fermetures}; \\
\node (SUB) [draw,shape=rectangle, rounded corners,visible on=<5->] {Sous-ensembles des fermetures}; \\
\node (ISC) [draw,shape=rectangle, rounded corners,visible on=<6->] {Itemsets cycliques}; \\
\node (RAC) [draw,shape=rectangle, rounded corners,visible on=<7->] {Régles d'association cycliques}; \\
};
\draw[->, thick,visible on=<3->] (DT) -- (IF);
\draw[->, thick,visible on=<4->] (IF) -- (FER);
\draw[->, thick,visible on=<5->] (FER) -- (SUB);
\draw[->, thick,visible on=<6->] (SUB) -- (ISC);
\draw[->, thick,visible on=<7->] (ISC) -- (RAC);
\end{tikzpicture}
I just need to make a label on the right side for each node that appears when the node appears (not before or after).
\matrixby giving the optionnodes={style}avoiding over crowded drawings. You can also make style keys that concatenate several keys into one withmy key/.style={keys}see this question for instance – Guilherme Zanotelli Nov 23 '16 at 14:46\documentclass{...}and ending with\end{document}. – samcarter_is_at_topanswers.xyz Nov 23 '16 at 15:36