mirror of
https://github.com/hendricius/the-sourdough-framework
synced 2025-11-12 14:11:11 -06:00
Fix flowcharts (#47)
* Replace image with coded flowchart * Fix flat bread process * Remove flat bread process image * Maintenance chart fix * Fix baking process * Remove conversion graphic
This commit is contained in:
committed by
GitHub
parent
f2a9b4c583
commit
2b5aeea1dd
@@ -169,10 +169,17 @@ easiest way to start making great bread at home. With just a
|
||||
few steps you can stop buying bread forever. This works with
|
||||
every flour, including gluten free options.
|
||||
|
||||
\begin{figure}[htb!]
|
||||
\includegraphics[width=1.0\textwidth]{flat-bread-process}
|
||||
\centering
|
||||
\caption{The simple process of making a flat bread}
|
||||
\begin{figure}[!htb]
|
||||
\begin{tikzpicture}[node distance = 3cm, auto, every node/.style={inner sep=10, outer sep=0}]
|
||||
\node [block] (init) {Mix ingredients};
|
||||
\node [block, right of=init, node distance=5cm] (wait) {Wait for dough to be ready};
|
||||
\node [block, right of=wait, node distance=5cm] (bake_bread) {Bake bread on stove};
|
||||
\path [line] (init) -- (wait);
|
||||
\path [line] (wait) -- (bake_bread);
|
||||
\end{tikzpicture}
|
||||
\caption{The process of making a flat bread is very simple requiring very little effort. This
|
||||
type of bread is especially handy for busy bakers.}
|
||||
\label{fig:flat-bread-process}
|
||||
\end{figure}
|
||||
|
||||
This is my goto recipe that I use to make bread whenever
|
||||
|
||||
Reference in New Issue
Block a user