mirror of
https://github.com/hendricius/the-sourdough-framework
synced 2025-11-28 05:44:00 -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.
23 lines
1.6 KiB
TeX
23 lines
1.6 KiB
TeX
\begin{tikzpicture}[node distance = 3cm, auto]
|
|
\node [decision] (init) {\footnotesize Room temperature proofing?};
|
|
\node [decision, right of=init, node distance=9cm] (retard_bake_decision) {\footnotesize Bake in less than 10 hours from now?};
|
|
\node [block, below of=init, node distance=4cm] (poke) {\footnotesize Poke the dough};
|
|
\node [block, right of=poke, node distance=4cm] (wait_poke) {\footnotesize Wait 15 minutes};
|
|
\node [decision, below of=poke, node distance=3cm] (dent_visible_decision) {\footnotesize Dent still visible after 1 minute?};
|
|
\node [block, right of=dent_visible_decision, node distance=4cm] (bake) {\footnotesize Score and bake};
|
|
\node [block, below of=retard_bake_decision, node distance=3cm] (wait_retard) {\footnotesize Wait 15 minutes};
|
|
\node [block, below of=wait_retard, node distance=3cm] (retard) {\footnotesize Proof in fridge at 4°C (40°F)};
|
|
\node [block, right of=wait_retard, node distance=3cm] (move_to_fridge) {\footnotesize Move dough directly to fridge};
|
|
\path [line] (init) -- node{yes} (poke);
|
|
\path [line] (init) -- node{no} (retard_bake_decision);
|
|
\path [line] (poke) -- (dent_visible_decision);
|
|
\path [line] (dent_visible_decision) -- node{yes} (bake);
|
|
\path [line] (dent_visible_decision) -- node{no} (wait_poke);
|
|
\path [line] (wait_poke) -- (poke);
|
|
\path [line] (retard_bake_decision) -- node{yes} (wait_retard);
|
|
\path [line] (retard_bake_decision) -- node{no} (move_to_fridge);
|
|
\path [line] (wait_retard) -- (retard);
|
|
\path [line] (move_to_fridge) -- (retard);
|
|
\path [line] (retard) -- (bake);
|
|
\end{tikzpicture}
|