mirror of
https://github.com/hendricius/the-sourdough-framework
synced 2026-02-25 23:57:15 -06:00
Change flowchart color (#185)
* Change BG color to white * Fix flowcharts where graphics overlap with text * Increase border size * change arrow style * Allow standalone building of TikZ flowcharts Useful for reference or website etc.. * Prevent manual hyphenation in TikZ diagrams A Bit of a manual tweak.. but worth it to look nicer :D * Add missing file for flowcharts --------- Co-authored-by: Cedric <ced@awase.ostal>
This commit is contained in:
committed by
GitHub
parent
fad30fa1db
commit
a8dc6dc210
@@ -1,10 +1,10 @@
|
||||
\begin{tikzpicture}[node distance = 3cm, auto]
|
||||
\node [start] (init) {\footnotesize Homogenize recipe ingredients};
|
||||
\node [block, right of=init, node distance=3cm] (wait1) {\footnotesize Wait 15~minutes};
|
||||
\node [block, right of=init, node distance=3cm] (wait1) {\footnotesize Wait\\15~minutes};
|
||||
\path [line] (init) -- (wait1);
|
||||
\node [block, right of=wait1, node distance=3cm] (knead1) {\footnotesize Knead 5~minutes};
|
||||
\path [line] (wait1) -- (knead1);
|
||||
\node [block, right of=knead1, node distance=3cm] (wait2) {\footnotesize Wait 15~minutes};
|
||||
\node [block, right of=knead1, node distance=3cm] (wait2) {\footnotesize Wait\\15~minutes};
|
||||
\path [line] (knead1) -- (wait2);
|
||||
\node [decision, below of=wait2, node distance=3cm] (windowpane_test) {\footnotesize Window-pane?};
|
||||
\path [line] (wait2) -- (windowpane_test);
|
||||
|
||||
Reference in New Issue
Block a user