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] (heat_oven) {\footnotesize Preheat DO to \qty{230}{\degreeCelsius} (\qty{446}{\degF}) for 30~minutes};
\node [start] (heat_oven) {\footnotesize Preheat DO to \qty{230}{\degreeCelsius} (\qty{446}{\degF}) for 30~minutes};
\node [block, right of=heat_oven] (remove_oven) {\footnotesize Remove DO from oven };
\node [block, right of=remove_oven] (open_load_dough) {\footnotesize Open DO \& load your dough};
\node [block, right of=open_load_dough] (score) {\footnotesize Score your dough};
@@ -12,7 +12,7 @@
\node [block, right of=is_ready_check, node distance=4cm] (remove_do_lid) {\footnotesize Remove DO lid};
\node [block, right of=wait_5_minutes] (test_temperature_again) {\footnotesize Test core temperature again};
\node [decision, right of=remove_do_lid, node distance=4cm] (dark_enough_decision) {\footnotesize Crust color dark enough?};
\node [block, below of=dark_enough_decision] (finish_baking) {\footnotesize Bread is finished};
\node [success, below of=dark_enough_decision] (finish_baking) {\footnotesize Bread is finished};
\node [block, below of=close] (test_crust_again) {\footnotesize Test crust color again};
\node [block, below of=test_crust_again] (bake_5_more_minutes) {\footnotesize Bake another 5~minutes};
\path [line] (heat_oven) -- (remove_oven);