-
Notifications
You must be signed in to change notification settings - Fork 153
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This adds another timeline for the sourdough bread history, adds more information and more references.
- Loading branch information
1 parent
4465e21
commit b8e03e8
Showing
3 changed files
with
274 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
\begin{tikzpicture} | ||
% Draw horizontal line | ||
\draw[line width=1pt] (0,0) -- (\textwidth,0); | ||
|
||
% Define the width of each segment | ||
\pgfmathsetlengthmacro{\segmentwidth}{\textwidth/13} | ||
|
||
|
||
% Lines for periods | ||
\draw[stealth-stealth, line width=1pt] (0,-4.2) | ||
-- node[midway, timeline_timespan] {Historic breadmaking} ({\segmentwidth * 6},-4.2); | ||
\draw[stealth-stealth, line width=1pt] ({\segmentwidth * 7},-4.2) | ||
-- node[midway, timeline_timespan] {Modern bread} ({\segmentwidth * 13},-4.2); | ||
|
||
% Regularly placed events | ||
\draw[line width=1pt] ({\segmentwidth*3.3},1.5) -- ({\segmentwidth*3.3},0.3) | ||
node[at start, above, timeline_event] {6000 BC: First beer in Egypt}; | ||
\draw[line width=1pt] ({\segmentwidth*5.95},2.5) -- ({\segmentwidth*5.95},0.3) | ||
node[at start, above, timeline_event] {70 BC:~First water mill}; | ||
|
||
\draw[line width=1pt] ({\segmentwidth*11.50},2.5) -- ({\segmentwidth*11.50},0.3); | ||
\node[timeline_event, above, anchor=east] at ({\segmentwidth*13.50},2.5) {1950:~Modern Wheat}; | ||
|
||
\draw[line width=1pt] ({\segmentwidth*12.20},-3.25) -- ({\segmentwidth*12.20},-0.3); | ||
\node[timeline_event, above, anchor=east] at ({\segmentwidth*13.20},-3.5) {2020~COVID-19 Pandemic}; | ||
|
||
\draw[line width=1pt] ({\segmentwidth*8.85},-1.25) -- ({\segmentwidth*8.85},-0.3) | ||
node[at start, above, timeline_event] {1785:~Steam mill}; | ||
\draw[line width=1pt] ({\segmentwidth*10.60},1.5) -- ({\segmentwidth*10.60},0.3) | ||
node[at start, above, timeline_event] {1868:~Commercial yeast}; | ||
\draw[line width=1pt] ({\segmentwidth*8.8},0.75) -- ({\segmentwidth*8.8},0.3) | ||
node[at start, above, timeline_event] {1680:~Discovery of microorganisms}; | ||
\draw[line width=1pt] ({\segmentwidth*10.80},-2.5) -- ({\segmentwidth*10.80},-0.3) | ||
node[at start, below, timeline_event] {1885:~Electrical mixer}; | ||
\draw[line width=1pt] ({\segmentwidth*10.57},-1.75) -- ({\segmentwidth*10.57},-0.3) | ||
node[at start, below, timeline_event] {1857:~Isolated Yeast}; | ||
|
||
% Lines to events | ||
% Cultivation of Einkorn | ||
\draw[line width=1pt] (0,1) -- (0,0.3); | ||
\draw[line width=1pt] (0,1) -- (0.25,1); | ||
\node[timeline_event, above, anchor=west] at (0.25,1) {12000 BC:~Cultivation of Einkorn}; | ||
|
||
% Sourdough in Jordan | ||
\draw[line width=1pt] (0,-1) -- (0,-0.3); | ||
\draw[line width=1pt] (0,-1) -- (0.25,-1); | ||
\node[timeline_event, above, anchor=west] at (0.25,-1) {12000 BC:~Sourdough in Jordan}; | ||
% Events | ||
|
||
% Indicators for period | ||
% Draw months and month separators | ||
\foreach \i/\month in {0/12000, 1/10000, 2/8000, 3/6000, 4/4000, 5/2000, | ||
6/0, 7/1500, 8/1600, 9/1700, 10/1800, 11/1900, 12/2000, 13/2100} { | ||
% Separators | ||
\draw[line width=1pt] (\i*\segmentwidth,0.1) -- (\i*\segmentwidth,-0.1); | ||
% Events for timeline | ||
\node[timeline_event, below] at ({(\i)*\segmentwidth},-0.1) {\month}; | ||
} | ||
\end{tikzpicture} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters