mirror of
https://github.com/hendricius/the-sourdough-framework
synced 2025-11-11 21:51:12 -06:00
* add tikzcache * ignore files * add latexmkrc file * Move figures to new files * rename images * Fix build commands * Release as epub3 and mobi * Add cover-image support * use older epub * Externalize all tables * change gh actions command * fix linux xargs rm
25 lines
1.3 KiB
TeX
25 lines
1.3 KiB
TeX
\input{./vars}
|
|
|
|
\begin{document}
|
|
\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};
|
|
\path [line] (init) -- (wait1);
|
|
\node [block, right of=wait1, node distance=3cm] (feed) {\footnotesize 10g of previous day + 50g water + 50g 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, right of=timeout, node distance=3cm] (discard2) {\footnotesize Batch failed};
|
|
\path [line] (timeout) -- node{no} (discard2);
|
|
\path [line] (timeout) -- node{yes} (wait2);
|
|
\path [line] (feed) -- (decide);
|
|
\node [block, right of=decide, node distance=3cm] (use) {\footnotesize Ready to use};
|
|
\path [line] (decide) -- node{no} (timeout);
|
|
\path [line] (wait2) -- (feed);
|
|
\path [line] (decide) -- node{yes} (use);
|
|
\end{tikzpicture}
|
|
\end{document}
|