forked from seb-2/recipes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tex
36 lines (24 loc) · 885 Bytes
/
main.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
% main file for recipe collection - compile this to creat the document
% contents/recipes don't go into this file but are included from other .tex files
\documentclass[11pt,paper=a4]{scrbook}
\parindent0pt \parskip10pt % make block paragraphs
\usepackage{graphicx} % enable use of /includefigure to display pictures
\begin{document}
\include{FrontBackmatter/Titlepage}
\tableofcontents % Print table of contents
\part{Starters}
\part{Main courses}
\chapter{Vegetarian}
\include{Main/Reibeplaetzchen}
\chapter{Bread}
\include{Main/Sourdough_bread}
\part{Desserts}
\chapter{Baking}
\textit{Everything that goes into the oven...} % Chapter description
\include{Desserts/Macarons}
\include{Desserts/ChocolateCardamomShortbread}
\part{Sides}
\chapter{Pickles}
\include{Sides/pickled_courgettes}
\include{Sides/pickled_pumpkin}
\end{document}