From 03707bf3e9c830807cc8107a267e677ba7ffadc0 Mon Sep 17 00:00:00 2001 From: Cedric Date: Sun, 26 Nov 2023 15:16:19 +0000 Subject: [PATCH] Fix kneading process flowchart --- book/figures/fig-kneading-process.tex | 32 +++++++++++++-------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/book/figures/fig-kneading-process.tex b/book/figures/fig-kneading-process.tex index 7732c4b..4a48db3 100644 --- a/book/figures/fig-kneading-process.tex +++ b/book/figures/fig-kneading-process.tex @@ -1,26 +1,26 @@ -\begin{tikzpicture}[node distance = 3cm, auto] +\begin{tikzpicture}[node distance = 4cm, auto] \node [start] (init) {Homogenize recipe ingredients}; - \node [block, right of=init, node distance=3cm] (wait1) {Wait\\15~minutes}; + \node [block, right of=init] (wait1) {Wait\\15~minutes}; \path [line] (init) -- (wait1); - \node [block, right of=wait1, node distance=3cm] (knead1) {Knead 5~minutes}; - \path [line] (wait1) -- (knead1); - \node [block, right of=knead1, node distance=3cm] (wait2) {Wait\\15~minutes}; - \path [line] (knead1) -- (wait2); - \node [decision, below of=wait2, node distance=3cm] (windowpane_test) {Window-pane?}; + \node [block, right of=wait1] (knead) {Knead 5~minutes}; + \path [line] (wait1) -- (knead); + \node [block, right of=knead] (wait2) {Wait\\15~minutes}; + \path [line] (knead) -- (wait2); + \node [decision, below of=wait2, node distance=4cm] (windowpane_test) {Window-pane?}; \path [line] (wait2) -- (windowpane_test); - \path [line] (windowpane_test) -- node{no} (knead1); - \node [decision, left of=windowpane_test, node distance=4.5cm] (more_water) {Bassinage for more water?}; + \path [line] (windowpane_test.east) -- node{no} ++(1, 0) -- node{} ++(0, 5.7) -| (knead.north); + \node [decision] at (windowpane_test -| knead) (more_water) {Bassinage for more water?}; \path [line] (windowpane_test) -- node{yes} (more_water); - \node [block, left of=more_water, node distance=4.5cm] (add_water) {Add water}; + \node [block] at (wait1 |- more_water) (add_water) {Add water}; \path [line] (more_water) -- node{yes} (add_water); - \path [line] (add_water) -- (knead1); - \node [decision, below of=more_water, node distance=3.5cm] (dough_sample) {Aliquot sample?}; + \path [line] (add_water.north east) -- (knead.south west); + \node [decision, below of=more_water, node distance=4.5cm] (dough_sample) {Aliquot sample?}; \path [line] (more_water) -- node{no} (dough_sample); - \node [block, right of=dough_sample, node distance=4.5cm] (dough_ball) {Make round dough ball}; + \node [block] at (dough_sample -| wait2) (dough_ball) {Make round dough ball}; \path [line] (dough_sample) -- node{no} (dough_ball); - \node [block, below of=dough_sample, node distance=3cm] (extract_sample) {Extract sample}; + \node [block, below of=dough_sample] (extract_sample) {Extract sample}; \path [line] (dough_sample) -- node{yes} (extract_sample); - \path [line] (extract_sample) -- (dough_ball); - \node [success, below of=dough_ball, node distance=3cm] (begin_bulk) {Begin bulk fermentation}; + \path [line] (extract_sample.north east) -- (dough_ball.south west); + \node [success, below of=dough_ball] (begin_bulk) {Begin bulk fermentation}; \path [line] (dough_ball) -- (begin_bulk); \end{tikzpicture}