mirror of
https://github.com/hendricius/the-sourdough-framework
synced 2025-11-26 12:54:00 -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:
@@ -2,11 +2,11 @@
|
||||
\node [block] (init) {\footnotesize Make a starter};
|
||||
\node [block, right of=init, node distance=3cm] (feed) {\footnotesize Feed your starter};
|
||||
\path [line] (init) -- (feed);
|
||||
\node [block, right of=feed, node distance=3cm] (wait_12_after_feed) {\footnotesize Wait 12 hours};
|
||||
\node [block, right of=feed, node distance=3cm] (wait_12_after_feed) {\footnotesize Wait \qty{12}{\hour}};
|
||||
\path [line] (feed) -- (wait_12_after_feed);
|
||||
\node [block, right of=wait_12_after_feed, node distance=3cm] (ready_question) {\footnotesize Perform readiness check};
|
||||
\path [line] (wait_12_after_feed) -- (ready_question);
|
||||
\node [block, below of=feed, node distance=3cm] (wait_12) {\footnotesize Wait 12 hours};
|
||||
\node [block, below of=feed, node distance=3cm] (wait_12) {\footnotesize Wait \qty{12}{\hour}};
|
||||
\path [line] (wait_12) -- (feed);
|
||||
\node [decision, right of=ready_question, node distance=3.5cm] (is_bubbly) {\footnotesize Bubbly? Size Increase?};
|
||||
\path [line] (ready_question) -- (is_bubbly);
|
||||
|
||||
Reference in New Issue
Block a user