mirror of
https://github.com/hendricius/the-sourdough-framework
synced 2025-11-25 12:31:12 -06:00
* Correct wording, category for starter conversion - Now a flowchart (and a renamed label) - More explicit wording as per https://github.com/hendricius/the-sourdough-framework/issues/234 * Fix warnings from make check The one I am 100% sure are mistakes * Review starter type chapter - Add some new sections - fine tune tables - some typos/new paragraphs * Fix typos in sourdough starter types * Simplify liquid conversion flowchart * Simplify stiff conversion flowchart * Fine tune liquid conversion flowchart * Update some of the images * Improve explanation of conversion * Update explanation for stiff starter conversion * Update fall note --------- Co-authored-by: Hendrik Kleinwaechter <hendrik.kleinwaechter@gmail.com>
25 lines
1.7 KiB
TeX
25 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);
|
|
\draw [thick, <-] ($ (feed_again.east) +(2.1cm, 0.7cm)$) arc (-45:220:1cm);
|
|
\node [anchor=north, text width=5em] at ($(feed_again.east)+(2cm, 2cm)$) {Repeat 3~times};
|
|
\end{tikzpicture}
|