Advertisement
kkoudas

bigger changes

Aug 4th, 2019
223
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 16mm,
  3. start chain = A going below,
  4. base/.style = {draw, minimum width=32mm, minimum height=8mm,
  5. align=center, on chain=A,join},
  6. startstop/.style = {ultra thick,double,base, rectangle, rounded corners, fill=white},
  7. process/.style = {ultra thick,base, rectangle, fill=white},
  8. io/.style = {ultra thick,base, trapezium,
  9. trapezium left angle=70, trapezium right angle=110,
  10. fill=white},
  11. decision/.style = {ultra thick,base, diamond, fill=white},
  12. every edge quotes/.style = {auto=right},
  13. every join/.style=-Stealth]
  14. ]
  15. \node [startstop] {Έναρξη}; % <-- A-1
  16. \node [io] {Εισαγωγή}; %A-2
  17. \node [decision] {Ερώτηση}; %Α-3
  18. \node [io, right=of A-3] {Απάντηση}; %A-4
  19. \node [startstop] {Τέλος}; % <-- A-5
  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 west);
  23. \draw (A-3) --node[below]{όχι} (A-4);
  24. \end{tikzpicture}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement