kkoudas

small changes

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