Factorize footnotesize in all TikZ flowcharts (#220)

Makes it somewhat simpler.  You can always ovewrite it per flowchart or
per box if you want to.
This commit is contained in:
cedounet
2023-09-08 10:34:58 +01:00
committed by GitHub
parent cec83c623f
commit f9ce261c94
17 changed files with 165 additions and 165 deletions

View File

@@ -1,14 +1,14 @@
\begin{tikzpicture}[node distance = 3cm, auto]
\node [start] (init) {\footnotesize Ready starter};
\node [block, right of=init, node distance=3cm] (mix_ingredients) {\footnotesize Mix ingredients};
\node [block, right of=mix_ingredients, node distance=3cm] (dough_strength) {\footnotesize Create dough strength};
\node [block, right of=dough_strength, node distance=3cm] (bulk) {\footnotesize Bulk ferment};
\node [decision, below of=dough_strength, node distance=3cm] (divide_test) {\footnotesize Making 1 loaf?};
\node [block, left of=divide_test, node distance=3cm] (divide) {\footnotesize Divide};
\node [block, left of=divide, node distance=3cm] (preshape) {\footnotesize Preshape};
\node [block, below of=preshape, node distance=3cm] (shape) {\footnotesize Shape};
\node [block, right of=shape, node distance=3cm] (proof) {\footnotesize Proof};
\node [success, right of=proof, node distance=3cm] (bake) {\footnotesize Bake};
\node [start] (init) {Ready starter};
\node [block, right of=init, node distance=3cm] (mix_ingredients) {Mix ingredients};
\node [block, right of=mix_ingredients, node distance=3cm] (dough_strength) {Create dough strength};
\node [block, right of=dough_strength, node distance=3cm] (bulk) {Bulk ferment};
\node [decision, below of=dough_strength, node distance=3cm] (divide_test) {Making 1 loaf?};
\node [block, left of=divide_test, node distance=3cm] (divide) {Divide};
\node [block, left of=divide, node distance=3cm] (preshape) {Preshape};
\node [block, below of=preshape, node distance=3cm] (shape) {Shape};
\node [block, right of=shape, node distance=3cm] (proof) {Proof};
\node [success, right of=proof, node distance=3cm] (bake) {Bake};
\path [line] (init) -- (mix_ingredients);
\path [line] (mix_ingredients) -- (dough_strength);
\path [line] (dough_strength) -- (bulk);