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:
cedounet
2023-08-18 10:31:33 +01:00
committed by GitHub
parent 38ac7c6b11
commit 104cbcf6ac
18 changed files with 53 additions and 41 deletions

View File

@@ -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);