forked from hendricius/the-sourdough-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
book.tex
136 lines (103 loc) · 2.9 KB
/
book.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
\documentclass[a4paper, 12pt]{book}
% General packages
\usepackage[utf8]{inputenc}
\usepackage{blindtext}
\usepackage{graphicx}
\usepackage{pgfplotstable}
\usepackage{booktabs}
\usepackage{filecontents}
\usepackage{longtable}
\usepackage{float}
\usepackage[T1]{fontenc}
\usepackage{tocloft}
% References
\usepackage[backend=biber]{biblatex}
\addbibresource{references.bib}
% Clickable links in the table of contents
\usepackage[hidelinks]{hyperref}
\hypersetup{
linktoc=all
allcolors=black
}
% Folders where to search for images
\graphicspath{
{./images/}
{./troubleshooting/}
{./sourdough-starter/}
{./troubleshooting/crumb-structures/}
{./history/}
{./images/external/}
{./baking/}
{./wheat-sourdough/}
}
% Layout rules
\interfootnotelinepenalty=10000
\advance\cftsecnumwidth 0.5em\relax
\advance\cftsubsecindent 0.5em\relax
\advance\cftsubsecnumwidth 0.5em\relax
% Space between paragraphs
\usepackage[skip=5pt plus1pt, indent=0pt]{parskip}
% Define styles for the flow chart graphics
\definecolor{codeblue}{RGB}{69, 161, 248}
\usepackage{tikz}
\usetikzlibrary{shapes,arrows}
\tikzstyle{decision} = [diamond, draw, fill=codeblue, text=white,
text width=4.5em, text badly centered, node distance=3cm, inner sep=0pt]
\tikzstyle{block} = [rectangle, draw, fill=codeblue, text=white,
text width=5em, text centered, rounded corners, minimum height=4em]
\tikzstyle{line} = [draw, -latex']
\tikzstyle{cloud} = [draw, ellipse,fill=red!20, node distance=3cm,
minimum height=2em]
% Caption and figure size below images
\usepackage{caption}
\captionsetup[figure]{font=footnotesize}
\begin{document}
% Title page
\begin{titlepage}
\centering
\includegraphics[width=\textwidth]{cover-page}
Version:
\today
\end{titlepage}
\frontmatter
\tableofcontents
\chapter{Foreword}
\input{intro/foreword}
\chapter{Preface}
\input{intro/preface}
\chapter{Acknowledgements}
\input{intro/acknowledgements}
\mainmatter
\chapter{The history of sourdough}
\input{history/sourdough-history}
\chapter{How sourdough works}
\input{basics/how-sourdough-works}
\chapter{Making a sourdough starter}
\input{sourdough-starter/sourdough-starter}
\chapter{Sourdough starter types}
\input{sourdough-starter/sourdough-starter-types}
\chapter{Flour types}
\input{flour-types/flour-types}
\chapter{Bread types}
\input{bread-types/bread-types}
\chapter{Wheat sourdough}
\label{chapter:wheat-sourdough}
\input{wheat-sourdough/wheat-sourdough}
\chapter{Non wheat bread basics}
This chapter is still pending and will be added soon.
\label{chapter:non-wheat-sourdough}
\section{Ingredients}
\section{Managing acidity}
\section{To shape or not to shape}
\section{Proofing}
\chapter{Baking}
\input{baking/baking}
\chapter{Storing bread}
\section{Fridge}
\section{Room temperature}
\section{Frozen}
\chapter{Troubleshooting}
\input{troubleshooting/crumb-structures/crumb-structures}
\input{troubleshooting/misc}
\printbibliography
\end{document}