From d617aa1d777b0e8730bec5d7d7b2cafe4cbd8f3b Mon Sep 17 00:00:00 2001 From: Hendrik Kleinwaechter Date: Mon, 7 Aug 2023 22:41:56 +0200 Subject: [PATCH] Fix flowchart overflow (#169) This fixes a flowchart having text overlapping elements inside of the chart. --- book/figures/fig-bulk-fermentation.tex | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/book/figures/fig-bulk-fermentation.tex b/book/figures/fig-bulk-fermentation.tex index 5819c05..fc69ba1 100644 --- a/book/figures/fig-bulk-fermentation.tex +++ b/book/figures/fig-bulk-fermentation.tex @@ -1,14 +1,14 @@ \begin{tikzpicture}[node distance = 3cm, auto] \node [block] (init) {\footnotesize Bulk fermentation}; \node [block, right of=init] (check_dough) {\footnotesize Check the dough}; - \node [block, right of=check_dough] (size_increase) {\footnotesize Check dough size increase}; + \node [block, right of=check_dough, node distance=4cm] (size_increase) {\footnotesize Check dough size increase}; \node [block, below of=size_increase, node distance=2cm] (ph_value) {\footnotesize Check dough pH value}; \node [block, below of=ph_value, node distance=2cm] (smell) {\footnotesize Check dough smell}; - \node [decision, right of=smell] (dough_ready) {\footnotesize Dough ready?}; + \node [decision, right of=ph_value, node distance=4cm] (dough_ready) {\footnotesize Dough ready?}; \node [block, below of=dough_ready] (divide_preshape) {\footnotesize Divide and preshape}; \node [decision, below of=smell] (dough_flattened) {\footnotesize Dough flattened out?}; - \node [block, left of=dough_flattened] (stretch_fold) {\footnotesize Stretch and fold}; - \node [block, left of=smell] (wait_60_minutes) {\footnotesize Wait 60~minutes}; + \node [block, below of=check_dough, node distance=3cm] (wait_60_minutes) {\footnotesize Wait 60~minutes}; + \node [block, below of=wait_60_minutes, node distance=4cm] (stretch_fold) {\footnotesize Stretch and fold}; \path [line] (init) -- (check_dough); \path [line] (check_dough) -- (size_increase);