Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- \begin{tikzpicture}[
- node distance = 8mm and 4mm,
- start chain = A going below,
- base/.style = {draw, minimum width=32mm, minimum height=8mm,
- align=center, on chain=A, join=by -Stealth},
- startstop/.style = {ultra thick,double,base, rectangle, rounded corners, fill=white},
- process/.style = {ultra thick,base, rectangle, fill=white},
- io/.style = {trapezium, trapezium stretches,
- trapezium left angle=70, trapezium right angle=110,
- base, ultra thick, fill=white},
- decision/.style = {ultra thick,base, diamond, fill=white},
- every edge quotes/.style = {auto=right}
- ]
- \node [startstop] {Έναρξη}; % <-- A-1
- \node [io] {Εισαγωγή};
- \node [decision] {Ερώτηση};
- \node [io, right=of A-3] {Απάντηση};
- \node [startstop] {Τέλος}; % <-- A-5
- \coordinate[above right=of A-2.west] (aux);
- \draw [arrows=-Stealth]
- (A-3.west) to node[pos=.5,below]{ναι} ++ (-1,0) |- (aux) -- (aux |- A-2.north);
- \path (A-3) to ["όχι"] (A-4);
- \end{tikzpicture}
Advertisement
Add Comment
Please, Sign In to add comment