Files
the-sourdough-framework/book/figures/fig-stiff-starter-conversion.tex
2025-01-11 10:31:19 +00:00

26 lines
1.8 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);
% TODO: find a better way to position the Repeat 3 times text and arrow. Hard-coded values are finicky and don't work well across media.
\draw [line] ($ (feed_again.east) +(0.7cm, 0.9cm)$) arc (220:-45:1cm);
\node [anchor=north, text width=5em] at ($(feed_again.east)+(1.9cm, 2cm)$) {Repeat 3~times};
\end{tikzpicture}