mirror of
https://github.com/hendricius/the-sourdough-framework
synced 2025-12-07 18:14:25 -06:00
Fix issue with degrees display in flowcharts
This commit is contained in:
@@ -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?};
|
||||
|
||||
Reference in New Issue
Block a user