I am a boy from Spain. In Spain there are not forums for that reason I am here
Sorry for my english and thank for help.
My problem is this:
I want to put the same image of code just below of this.
This code do
Code: Select all
\documentclass[border=3mm]{standalone}
\usepackage{tikz}
\usetikzlibrary{shadows,arrows,positioning}
\begin{document}
\begin{tikzpicture}[scale=0.75, transform shape]
\tikzset{every node/.style={minimum height=2em},
proc/.style={draw=black, fill=blue!15, drop shadow},
}
\newcounter{pos}
\setcounter{pos}{0}
\foreach \process/\width in {2/3,3/3,1/24}
{
\node [draw, proc, minimum width=\width em, anchor=west] (p\process) at (\thepos em,0) {P\process};
\addtocounter{pos}{\width}
\node [below=of p\process.east] {\thepos} edge [draw] (p\process.east);
}
\node [below=of p2.west] {0} edge [draw] (p2.west);
\end{tikzpicture}
\end{document}
I want this:
IMAGE:2
Thank you all for the help.