mirror of
https://github.com/hendricius/the-sourdough-framework
synced 2025-11-29 06:13:58 -06:00
* Make figs includable in main document
Remove the capability to build them as standalone document but we can
include them in the main document. It should simplify things down the
road.
* Replace tikx pics
* Remove figures compilation from makefile
No need to compile figs to pdf anymore, at least to build the books
* Delete svg figures from ebook build
* Create png for TikZ figures
- Add export_figures back
- Build a pdf from the the TikZ in standalone mode
- Change the cleanup to deal with those changes
- Remove trailing spaces..
* Replace centering by an environment
More LaTeX idomatic
* Increase clean_figures robustness
as we use temporary tex files (.tex.in) we can't run clean_figures twice in a
row
* Center TikZ figures
Because it looks better
* Remove png building
Seems to struggle on CI with \\\b or something, we don't absolutely need
it right now so let's get rid of it.
* Remove trgt_figures dependency for pdf and ebooks
This should not be needed now that we include the TikZ directly, only
needed for png generation.
* Revert "Remove png building"
This reverts commit fdd542de57.
This is now fine to add the code back, so that it can be debugged when
times come.
24 lines
1.7 KiB
TeX
24 lines
1.7 KiB
TeX
\begin{tikzpicture}[node distance = 3cm, auto]
|
|
\node [block] (heat_oven) {\footnotesize Heat oven to 230°C (446°F) for 30 minutes};
|
|
\node [block, right of=heat_oven, node distance=3cm] (score_dough) {\footnotesize Score your dough};
|
|
\node [decision, right of=score_dough, node distance=4cm] (decide_steam) {\footnotesize Choose your steaming method};
|
|
\node [block, below of=heat_oven, node distance=4cm] (inverted_tray_method) {\footnotesize Inverted tray method};
|
|
\node [block, right of=inverted_tray_method, node distance=3cm] (dutch_oven) {\footnotesize Dutch oven};
|
|
\node [block, right of=dutch_oven, node distance=3cm] (steam_injection) {\footnotesize Steam injection oven};
|
|
\node [block, below of=inverted_tray_method, node distance=3cm] (bake_30) {\footnotesize Bake dough for 30 minutes with steam};
|
|
\node [block, right of=bake_30, node distance=3cm] (remove_steam) {\footnotesize Remove source of steam};
|
|
\node [block, right of=remove_steam, node distance=3cm] (build_crust) {\footnotesize Build the crust};
|
|
\node [block, right of=build_crust, node distance=3cm] (finish_baking) {\footnotesize Stop baking 10--30 minutes later depending on crust preference};
|
|
\path [line] (heat_oven) -- (score_dough);
|
|
\path [line] (score_dough) -- (decide_steam);
|
|
\path [line] (decide_steam) -- (inverted_tray_method);
|
|
\path [line] (decide_steam) -- (dutch_oven);
|
|
\path [line] (decide_steam) -- (steam_injection);
|
|
\path [line] (steam_injection) -- (bake_30);
|
|
\path [line] (inverted_tray_method) -- (bake_30);
|
|
\path [line] (dutch_oven) -- (bake_30);
|
|
\path [line] (bake_30) -- (remove_steam);
|
|
\path [line] (remove_steam) -- (build_crust);
|
|
\path [line] (build_crust) -- (finish_baking);
|
|
\end{tikzpicture}
|