mirror of
https://github.com/hendricius/the-sourdough-framework
synced 2025-11-24 12:01: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>
18 lines
1.2 KiB
TeX
18 lines
1.2 KiB
TeX
\begin{tikzpicture}[node distance = 5cm, auto]
|
|
\node [start] (init) {Take your regular or stiff starter};
|
|
\node [block, right of=init] (feed_new_ratio) {Mix \qty{1}{\gram} existing starter, \qty{5}{\gram} flour and \qty{25}{\gram} water};
|
|
\node [decision, below of=feed_new_ratio, node distance=5cm] (ready_signs) {Sour yogurty smell and bubbles visible on flour?};
|
|
\node [block, right of=ready_signs, node distance=4cm] (feed_again) {Feed again using 1:5:25 ratio};
|
|
\node [block, left of=ready_signs, node distance=5cm] (last_feed) {Feed one last time};
|
|
\node [success, below of=last_feed, node distance=4cm] (bread_dough) {Make bread dough};
|
|
\path [line] (init) -- (feed_new_ratio);
|
|
\path [line] (feed_new_ratio) -- node{Wait \qty{24}{\hour}} (ready_signs);
|
|
\path [line] (feed_again) -- node[anchor=east] {} ++(2.2,0) |- (feed_new_ratio);
|
|
\path [line] (ready_signs) -- node{no} (feed_again);
|
|
\path [line] (ready_signs) -- node[above=2pt]{~yes} (last_feed);
|
|
\path [line] (last_feed) -- node{after \qtyrange{6}{12}{\hour}} (bread_dough);
|
|
\draw [thick, ->] ($ (feed_again.north) +(0.7cm, 1cm)$) arc (-45:220:1cm);
|
|
\node [anchor=north, text width=5em] at ($(feed_again.north west)+(1.8cm, 2.3cm)$) {Repeat 3~times};
|
|
|
|
\end{tikzpicture}
|