Files
the-sourdough-framework/book/figures/fig-bulk-fermentation.tex
cedounet 4637c29a37 Use Siunitx package for dealing with units (#129)
It is complicated :
[1] The International System of Units (si), https://www.bipm.org/en/
measurement-units/.
[2] International System of Units from nist, http://physics.nist.gov/cuu/Units/
index.html.

And one will never get it right (space or not, half-space?) nor
consistent so using that instead.

I am not sure how times and hours, when to write digits and when in
letter so I did not change much..

Did not touch the tables as ebooks on github actions seems to break when
you look at them funny.

Co-authored-by: Cedric <ced@awase.ostal>
2023-06-28 20:30:12 +02:00

27 lines
1.6 KiB
TeX

\begin{tikzpicture}[node distance = 3cm, auto]
\node [block] (init) {\footnotesize Bulk fermentation};
\node [block, right of=init] (check_dough) {\footnotesize Check the dough};
\node [block, right of=check_dough] (size_increase) {\footnotesize Check dough size increase};
\node [block, below of=size_increase, node distance=2cm] (ph_value) {\footnotesize Check dough pH value};
\node [block, below of=ph_value, node distance=2cm] (smell) {\footnotesize Check dough smell};
\node [decision, right of=smell] (dough_ready) {\footnotesize Dough ready?};
\node [block, below of=dough_ready] (divide_preshape) {\footnotesize Divide and preshape};
\node [decision, below of=smell] (dough_flattened) {\footnotesize Dough flattened out?};
\node [block, left of=dough_flattened] (stretch_fold) {\footnotesize Stretch and fold};
\node [block, left of=smell] (wait_60_minutes) {\footnotesize Wait 60~minutes};
\path [line] (init) -- (check_dough);
\path [line] (check_dough) -- (size_increase);
\path [line] (check_dough) -- node{or} (ph_value);
\path [line] (check_dough) -- node{or} (smell);
\path [line] (size_increase) -- (dough_ready);
\path [line] (ph_value) -- (dough_ready);
\path [line] (smell) -- (dough_ready);
\path [line] (dough_ready) -- node{yes} (divide_preshape);
\path [line] (dough_ready) -- node{no} (dough_flattened);
\path [line] (dough_flattened) -- node{yes} (stretch_fold);
\path [line] (dough_flattened) -- node{no} (wait_60_minutes);
\path [line] (stretch_fold) -- (wait_60_minutes);
\path [line] (wait_60_minutes) -- (check_dough);
\end{tikzpicture}