mirror of
https://github.com/hendricius/the-sourdough-framework
synced 2025-11-22 02:51:11 -06:00
Add color coding to flow charts (#180)
This will hopefully allow easier reading by identifying start and end point more easily
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
\begin{tikzpicture}[node distance = 3cm, auto, every node/.style={inner sep=10, outer sep=0}]
|
||||
\node [block] (init) {Mix ingredients};
|
||||
\node [start] (init) {Mix ingredients};
|
||||
\node [block, right of=init, node distance=5cm] (wait) {Wait for dough to be ready};
|
||||
\node [block, right of=wait, node distance=5cm] (bake_bread) {Bake bread on stove};
|
||||
\node [success, right of=wait, node distance=5cm] (bake_bread) {Bake bread on stove};
|
||||
\path [line] (init) -- (wait);
|
||||
\path [line] (wait) -- (bake_bread);
|
||||
\end{tikzpicture}
|
||||
|
||||
Reference in New Issue
Block a user