Files
the-sourdough-framework/book/figures/fig-process-flat-bread.tex
cedounet 104cbcf6ac Add color coding to flow charts (#180)
This will hopefully allow easier reading by identifying start and end
point more easily
2023-08-18 11:31:33 +02:00

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}