mirror of
https://github.com/hendricius/the-sourdough-framework
synced 2025-11-16 08:01:13 -06:00
23 lines
1.1 KiB
TeX
23 lines
1.1 KiB
TeX
\begin{tikzpicture}[node distance = 3.2cm, auto]
|
|
\node [start] (init) {Ready starter};
|
|
\node [block, right of=init] (mix_ingredients) {Mix ingredients};
|
|
\node [block, right of=mix_ingredients] (dough_strength) {Create dough strength};
|
|
\node [block, right of=dough_strength] (bulk) {Bulk ferment};
|
|
\node [decision, below of=bulk] (divide_test) {Making one loaf?};
|
|
\node [block, right of=divide_test] (divide) {Divide};
|
|
\node [block, below of=divide] (preshape) {Preshape};
|
|
\node [block, below of=divide_test] (shape) {Shape};
|
|
\node [block, left of=shape] (proof) {Proof};
|
|
\node [success, left of=proof] (bake) {Bake};
|
|
\path [line] (init) -- (mix_ingredients);
|
|
\path [line] (mix_ingredients) -- (dough_strength);
|
|
\path [line] (dough_strength) -- (bulk);
|
|
\path [line] (bulk) -- (divide_test);
|
|
\path [line] (divide_test) -- node{Yes} (shape);
|
|
\path [line] (divide_test) -- node{No} (divide);
|
|
\path [line] (divide) -- (preshape);
|
|
\path [line] (preshape) -- (shape);
|
|
\path [line] (shape) -- (proof);
|
|
\path [line] (proof) -- (bake);
|
|
\end{tikzpicture}
|