mirror of
https://github.com/hendricius/the-sourdough-framework
synced 2025-11-10 21:21:12 -06:00
* Tidyup non-wheat process flowchart - Factorize code - Spread the boxes - Align arrows * Review non-wheat chapter Usual typos and text improvements plus a little LaTeX magic for better typography
14 lines
648 B
TeX
14 lines
648 B
TeX
\begin{tikzpicture}[node distance = 3.8cm, auto]
|
|
\node [start] (init) {Mix \\ingredients};
|
|
\node [block, below of=init, node distance = 3cm] (bulk_ferment) {Bulk ferment};
|
|
\node [block, right of=init] (divide) {Divide};
|
|
\node [block] at (divide |- bulk_ferment) (shape) {Shape};
|
|
\node [block, right of=divide] (proof) {Proof};
|
|
\node [success] at (proof |- bulk_ferment) (bake) {Bake};
|
|
\path [line] (init) -- (bulk_ferment);
|
|
\path [line] (bulk_ferment.north east) -- (divide.south west);
|
|
\path [line] (divide) -- (shape);
|
|
\path [line] (shape.north east) -- (proof.south west);
|
|
\path [line] (proof) -- (bake);
|
|
\end{tikzpicture}
|