mirror of
https://github.com/hendricius/the-sourdough-framework
synced 2025-11-22 02:51:11 -06:00
- Change tikzstyle definition for "line" so that all flowchart arrows have the "Latex" styling. - Fix the little line that the above change introduces in fig-stiff-starter-conversion.tex - Change fig-starter-process.tex to use the global "line" style; accept the proposed sidebar syntax.
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}
|