mirror of
https://github.com/hendricius/the-sourdough-framework
synced 2025-11-15 23:51:11 -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
22 lines
1.1 KiB
TeX
22 lines
1.1 KiB
TeX
\input{./vars}
|
|
|
|
\begin{document}
|
|
\begin{tikzpicture}[node distance = 3cm, auto]
|
|
\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] (ready_question) {\footnotesize Perform readiness check};
|
|
\path [line] (feed) -- (ready_question);
|
|
\node [block, below of=feed, node distance=3cm] (wait_12) {\footnotesize Wait 12 hours};
|
|
\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);
|
|
\path [line] (is_bubbly) -- node{no} (wait_12);
|
|
\node [decision, below of=is_bubbly, node distance=4.0cm] (check_smell) {\footnotesize Vinegary, or yogurt smell?};
|
|
\path [line] (is_bubbly) -- node{yes} (check_smell);
|
|
\node [block, below of=init, node distance=6cm] (make_dough) {\footnotesize Make your dough};
|
|
\path [line] (check_smell) -- node{yes} (make_dough);
|
|
\path [line] (check_smell) -- node{no} (wait_12);
|
|
\end{tikzpicture}
|
|
\end{document}
|