You are on page 1of 1

Platon 2222

\usetikzlibrary{positioning}
\tikzset{block/.style={draw,minimum width=1.8cm,minimum
height=1.8cm,text width=1.8cm,font=\raggedright},
line/.style = {draw,thick, shorten >=1.5mm,shorten <= 1.5mm}
}

\begin{tikzpicture}
\node [block] (a) {Datos,\\ Premisas};
\node[block,right = .8cm of a] (b) {Entonces};
\node[block,right = 3cm of b] (c) {Cuali-\\ficador};
\node[block,right = 1cm of c] (d) {Conclu-\\si\'on};
\node[block,below = 1.5cm of b,xshift=1.8cm] (e) {Garant\'ia};
\node[block,below = 1.5cm of c,xshift=-0.8cm] (f) {Excepcio-\\nes};
\node[block,below = 1cm of e] (g) {Respaldo};

\path[line] (a) -- (b);


\path[line] (a-|e) -- (e) ;
\path[line] (c.south-|f) -- (f) ;
\path[line] (b) -- (c);
\path[line] (c) -- (d);
\path[line] (e) -- (g);

\end{tikzpicture}

You might also like