mirror of
https://github.com/hendricius/the-sourdough-framework
synced 2025-11-24 03: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,5 +1,5 @@
|
||||
\begin{tikzpicture}[node distance = 3cm, auto]
|
||||
\node [block] (init) {\footnotesize Ready starter};
|
||||
\node [start] (init) {\footnotesize Ready starter};
|
||||
\node [block, right of=init, node distance=3cm] (mix_ingredients) {\footnotesize Mix ingredients};
|
||||
\node [block, right of=mix_ingredients, node distance=3cm] (dough_strength) {\footnotesize Create dough strength};
|
||||
\node [block, right of=dough_strength, node distance=3cm] (bulk) {\footnotesize Bulk ferment};
|
||||
@@ -8,7 +8,7 @@
|
||||
\node [block, left of=divide, node distance=3cm] (preshape) {\footnotesize Preshape};
|
||||
\node [block, below of=preshape, node distance=3cm] (shape) {\footnotesize Shape};
|
||||
\node [block, right of=shape, node distance=3cm] (proof) {\footnotesize Proof};
|
||||
\node [block, right of=proof, node distance=3cm] (bake) {\footnotesize Bake};
|
||||
\node [success, right of=proof, node distance=3cm] (bake) {\footnotesize Bake};
|
||||
\path [line] (init) -- (mix_ingredients);
|
||||
\path [line] (mix_ingredients) -- (dough_strength);
|
||||
\path [line] (dough_strength) -- (bulk);
|
||||
|
||||
Reference in New Issue
Block a user