mirror of
https://github.com/hendricius/the-sourdough-framework
synced 2025-11-12 14:11:11 -06:00
8 lines
399 B
TeX
8 lines
399 B
TeX
\begin{tikzpicture}[node distance = 3cm, auto, every node/.style={inner sep=10, outer sep=0}]
|
|
\node [start] (init) {Mix ingredients};
|
|
\node [block, right of=init, node distance=5cm] (wait) {Wait for dough to be ready};
|
|
\node [success, right of=wait, node distance=5cm] (bake_bread) {Bake bread on stove};
|
|
\path [line] (init) -- (wait);
|
|
\path [line] (wait) -- (bake_bread);
|
|
\end{tikzpicture}
|