mirror of
https://github.com/hendricius/the-sourdough-framework
synced 2025-11-23 19:41:12 -06:00
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>
This commit is contained in:
@@ -1,14 +1,14 @@
|
||||
\begin{tikzpicture}[node distance = 3cm, auto]
|
||||
\node [block] (init) {\footnotesize Mix 50g flour + 50g water, stir};
|
||||
\node [block, right of=init, node distance=3cm] (wait1) {\footnotesize Wait 24 hours};
|
||||
\node [block] (init) {\footnotesize Mix \qty{50}{\gram} flour + \qty{50}{\gram} water, stir};
|
||||
\node [block, right of=init, node distance=3cm] (wait1) {\footnotesize Wait \qty{24}{\hour}};
|
||||
\path [line] (init) -- (wait1);
|
||||
\node [block, right of=wait1, node distance=3cm] (feed) {\footnotesize 10g of previous day + 50g water + 50g flour, stir};
|
||||
\node [block, right of=wait1, node distance=3cm] (feed) {\footnotesize \qty{10}{\gram} of previous day + \qty{50}{\gram} water + \qty{50}{\gram} flour, stir};
|
||||
\path [line] (wait1) -- (feed);
|
||||
\node [block, below of=feed] (discard) {\footnotesize Discard the rest};
|
||||
\path [line] (feed) -- (discard);
|
||||
\node [decision, right of=feed, node distance=3.5cm] (decide) {\footnotesize Is good?};
|
||||
\node [decision, above of=decide, node distance=3cm] (timeout) {\footnotesize Less than 10 feeds?};
|
||||
\node [block, above of=feed, node distance=3cm] (wait2) {\footnotesize Wait 24 hours};
|
||||
\node [block, above of=feed, node distance=3cm] (wait2) {\footnotesize Wait \qty{24}{\hour}};
|
||||
\node [block, right of=timeout, node distance=3cm] (discard2) {\footnotesize Batch failed};
|
||||
\path [line] (timeout) -- node{no} (discard2);
|
||||
\path [line] (timeout) -- node{yes} (wait2);
|
||||
|
||||
Reference in New Issue
Block a user