mirror of
https://github.com/hendricius/the-sourdough-framework
synced 2025-11-08 12:11:11 -06:00
Fix issue with degrees display in flowcharts
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
\begin{tikzpicture}[node distance = 3cm, auto]
|
||||
\node [start] (heat_oven) {Heat oven to \qty{230}{\degreeCelsius} (\qty{446}{\degF}) for 30~minutes};
|
||||
\node [start] (heat_oven) {Heat oven to 230°C (446°F) for 30~minutes};
|
||||
\node [block, right of=heat_oven, node distance=3cm] (score_dough) {Score your dough};
|
||||
\node [decision, right of=score_dough, node distance=4cm] (decide_steam) {Choose your steaming method};
|
||||
\node [block, below of=heat_oven, node distance=4cm] (inverted_tray_method) {Inverted tray method};
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
\begin{tikzpicture}[node distance = 3cm, auto]
|
||||
\node [start] (heat_oven) {Preheat DO to \qty{230}{\degreeCelsius} (\qty{446}{\degF}) for 30~minutes};
|
||||
\node [start] (heat_oven) {Preheat DO to 230°C (446°F) for 30~minutes};
|
||||
\node [block, right of=heat_oven] (remove_oven) {Remove DO from oven };
|
||||
\node [block, right of=remove_oven] (open_load_dough) {Open DO \& load your dough};
|
||||
\node [block, right of=open_load_dough] (score) {Score your dough};
|
||||
\node [block, right of=score] (spritz) {Spritz dough with water};
|
||||
\node [block, below of=spritz] (close) {Close DO};
|
||||
\node [block, left of=close] (back_oven) {Place DO back in oven};
|
||||
\node [block, left of=back_oven] (bake) {Bake 30~minutes at \qty{230}{\degreeCelsius} (\qty{446}{\degF})};
|
||||
\node [block, left of=back_oven] (bake) {Bake 30~minutes at 230°C (446°F)};
|
||||
\node [block, below of=heat_oven] (wait_5_minutes) {Wait\\ 5 minutes};
|
||||
\node [decision, below of=wait_5_minutes, node distance=4cm] (is_ready_check) {Core temperature \qty{92}{\degreeCelsius} (\qty{197}{\degF})?};
|
||||
\node [decision, below of=wait_5_minutes, node distance=4cm] (is_ready_check) {Core temperature 92°C (197°F)?};
|
||||
\node [block, right of=is_ready_check, node distance=4cm] (remove_do_lid) {Remove DO lid};
|
||||
\node [block, right of=wait_5_minutes] (test_temperature_again) {Test core temperature again};
|
||||
\node [decision, right of=remove_do_lid, node distance=4cm] (dark_enough_decision) {Crust color dark enough?};
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
\node [decision, below of=poke, node distance=3cm] (dent_visible_decision) {Dent still visible after 1~minute?};
|
||||
\node [success, right of=dent_visible_decision, node distance=4cm] (bake) {Score and bake};
|
||||
\node [block, below of=retard_bake_decision, node distance=3cm] (wait_retard) {Wait\\ 15~minutes};
|
||||
\node [block, below of=wait_retard, node distance=3cm] (retard) {Proof in fridge at \qty{4}{\degreeCelsius} (\qty{40}{\degF})};
|
||||
\node [block, below of=wait_retard, node distance=3cm] (retard) {Proof in fridge at 4°C (40°F)};
|
||||
\node [block, right of=wait_retard, node distance=3cm] (move_to_fridge) {Move dough directly to fridge};
|
||||
\path [line] (init) -- node{yes} (poke);
|
||||
\path [line] (init) -- node{no} (retard_bake_decision);
|
||||
|
||||
Reference in New Issue
Block a user