Files
the-sourdough-framework/book/figures/fig-starter-process.tex
cedounet e98ea7e555 Tuning sourdough starter flowcharts (#210)
* Improve sourdough starter flowchart

Remove one state
Mor air between blocks

* Tidy-up starter readiness flowchart

Right angles arrows look neater

* Fix typo on starter maintenance flowchart

There is more to do but can't say if i enjoy the chaotic look of that
one or if I hate it :D

Very packed though, so not sure how to make it less scary.
2023-09-04 10:47:26 +02:00

20 lines
1.2 KiB
TeX

\begin{tikzpicture}[node distance = 3.5cm, auto]
\node [start] (init) {\footnotesize Mix \qty{50}{\gram} flour + \qty{50}{\gram} water, stir};
\node [block, right of=init] (wait2) {\footnotesize Wait\\ \qty{24}{\hour}};
\path [line] (init) -- (wait2);
\node [block, below of=wait2, node distance=3.5cm] (feed) {\footnotesize \qty{10}{\gram} of previous day + \qty{50}{\gram} water + \qty{50}{\gram} flour, stir};
\path [line] (wait2) -- (feed);
\node [block, below of=feed] (discard) {\footnotesize Discard the rest};
\path [line] (feed) -- (discard);
\node [decision, right of=feed, node distance=3.5cm] (decide) {\footnotesize Is good?};
\node [decision, above of=decide, node distance=3.5cm] (timeout) {\footnotesize Less than 10 feeds?};
\node [fail, right of=timeout, node distance=3.5cm] (discard2) {\footnotesize Batch failed};
\path [line] (timeout) -- node{no} (discard2);
\path [line] (timeout) -- node{yes} (wait2);
\path [line] (feed) -- (decide);
\node [success, right of=decide, node distance=3.5cm] (use) {\footnotesize Ready to use};
\path [line] (decide) -- node{no} (timeout);
\path [line] (wait2) -- (feed);
\path [line] (decide) -- node{yes} (use);
\end{tikzpicture}