Files
the-sourdough-framework/book/figures/fig-non-wheat-process.tex
cedounet d591617819 Review non wheat (#252)
* 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
2023-10-10 17:12:58 +02:00

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}