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,11 +1,11 @@
\begin{tikzpicture}[node distance = 3cm, auto]
\node [block] (init) {\footnotesize Bulk fermentation};
\node [start] (init) {\footnotesize Bulk fermentation};
\node [block, right of=init] (check_dough) {\footnotesize Check the dough};
\node [block, right of=check_dough, node distance=4cm] (size_increase) {\footnotesize Check dough size increase};
\node [block, below of=size_increase, node distance=2cm] (ph_value) {\footnotesize Check dough pH value};
\node [block, below of=ph_value, node distance=2cm] (smell) {\footnotesize Check dough smell};
\node [decision, right of=ph_value, node distance=4cm] (dough_ready) {\footnotesize Dough ready?};
\node [block, below of=dough_ready] (divide_preshape) {\footnotesize Divide and preshape};
\node [success, below of=dough_ready] (divide_preshape) {\footnotesize Divide and preshape};
\node [decision, below of=smell] (dough_flattened) {\footnotesize Dough flattened out?};
\node [block, below of=check_dough, node distance=3cm] (wait_60_minutes) {\footnotesize Wait 60~minutes};
\node [block, below of=wait_60_minutes, node distance=4cm] (stretch_fold) {\footnotesize Stretch and fold};