mirror of
https://github.com/hendricius/the-sourdough-framework
synced 2025-11-26 04:43:59 -06:00
26 lines
1.7 KiB
TeX
26 lines
1.7 KiB
TeX
\begin{tikzpicture}[node distance = 4cm, auto]
|
|
\node [start] (init) {Take your regular or liquid starter};
|
|
\node [block, right of=init, node distance = 4cm] (feed_new_ratio) {Mix \qty{10}{\gram} existing starter, \qty{50}{\gram} flour and \qty{25}{\gram} water};
|
|
\node [decision, right of=feed_new_ratio, node distance=5cm] (too_dry) {Starter very dry, hard to mix?};
|
|
\node [block, right of=too_dry, node distance=4cm] (add_water) {Add more water};
|
|
\node [block, below of=too_dry] (next_day) {Wait\\ \qty{24}{\hour}};
|
|
\node [block] at (feed_new_ratio |- next_day) (feed_again) {Feed again using 1:5:2.5 ratio};
|
|
\node [decision, below of=next_day, node distance=3.5cm] (ready_signs) {Size increase and sour smell?};
|
|
\node [block] at (ready_signs -| add_water) (last_feed) {Feed one last time};
|
|
\node [success, below of=last_feed, node distance=3cm] (bread_dough) {Make bread dough};
|
|
\path [line] (init) -- (feed_new_ratio);
|
|
\path [line] (feed_again) -- (feed_new_ratio);
|
|
\path [line] (next_day) -- (ready_signs);
|
|
\path [line] (ready_signs) -- node{No} (feed_again |- last_feed) -| (feed_again.south);
|
|
\path [line] (ready_signs) -- node{Yes} (last_feed);
|
|
\path [line] (last_feed) -- node{after \qtyrange{6}{12}{\hour}} (bread_dough);
|
|
\path [line] (feed_new_ratio) -- (too_dry);
|
|
\path [line] (add_water.north) -- node{} ++(0, 1.3) -| (too_dry.north);
|
|
\path [line] (too_dry) -- node{No} (next_day);
|
|
\path [line] (too_dry) -- node{Yes} (add_water);
|
|
\path [line] (ready_signs) -- node{Yes} (last_feed);
|
|
|
|
\node [text width=5em, align=center] (repeat_text) at ($(feed_new_ratio)!0.5!(next_day)$) {Repeat 3~times};
|
|
\draw [line] ($(repeat_text) +(0, 1 cm)$) arc (90:-210:1cm);
|
|
\end{tikzpicture}
|