Updated trees1

This commit is contained in:
Kenneth John Odle 2021-11-26 20:25:46 -05:00
parent c61e2de4cf
commit b6572cdfbb
2 changed files with 3 additions and 2 deletions

Binary file not shown.

View File

@ -1,4 +1,4 @@
\documentclass[border=0.5cm]{standalone}
\documentclass[border=0.3cm]{standalone}
\usepackage{tikz}
\usetikzlibrary{shapes.geometric, arrows}
\tikzstyle{block} = [rectangle, rounded corners, minimum width=3cm, minimum height=1cm,text centered, draw=red, fill=white]
@ -9,7 +9,8 @@
\node (stop) [block, below of=start] {Stop};
\node (other) [block, right of=stop, xshift=2cm] {Other};
\draw [arrow] (start) -- (stop);
\draw [arrow] (start) -- (other);
\draw [arrow] (start) -| (other);
\draw [arrow] (other) -- (stop);
\end{tikzpicture}
\end{document}