Files
the-sourdough-framework/book/figures/fig-wheat-sourdough-process.tex
2025-01-21 20:56:40 +00:00

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}