-
Notifications
You must be signed in to change notification settings - Fork 1
/
recipe.tex
117 lines (101 loc) · 2.74 KB
/
recipe.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
\documentclass{report}
\usepackage{titlesec}
\usepackage{microtype}
\usepackage{geometry, setspace, tocloft, enumerate, titletoc}
\usepackage[plainpages=false, pdfpagelabels, hyperindex=true, linktoc=page]{hyperref}
\geometry{letterpaper, margin=0.5in}
\singlespacing
\setcounter{tocdepth}{3}
\renewcommand{\cftsecleader}{\cftdotfill{\cftdotsep}}
\renewcommand{\contentsname}{Table of Contents}
\renewcommand{\labelitemi}{\textasteriskcentered}
\titleformat{\chapter}{\normalfont\huge\bf}{\thechapter.}{20pt}{\huge\bf}
\begin{document}
\begin{titlepage}
\begin{center}
\vspace*{3in}
\Huge
\textbf{Oranday Recipe Collection}
\vfill
\Large
Last Updated: \today
\end{center}
\end{titlepage}
\newpage
\pagenumbering{roman}
\tableofcontents
\newpage
\pagenumbering{arabic}
\setcounter{page}{1}
\chapter*{Cookies}
\addcontentsline{toc}{chapter}{Cookies}
\startcontents[chapters]
\printcontents[chapters]{}{1}{}
\newpage
\phantomsection
\addcontentsline{toc}{section}{Chocolate Chip Walnut Cookies}
\include{cookies/chocolate_chip.tex}
\newpage
\phantomsection
\addcontentsline{toc}{section}{Oatmeal Cookies}
\include{cookies/oatmeal.tex}
\newpage
\phantomsection
\addcontentsline{toc}{section}{Coconut Macaroons}
\include{cookies/coconut_macaroons.tex}
\newpage
\chapter*{Cakes}
\addcontentsline{toc}{chapter}{Cakes}
\startcontents[chapters]
\printcontents[chapters]{}{1}{}
\newpage
\phantomsection
\addcontentsline{toc}{section}{Carrot Cake}
\include{cakes/carrot.tex}
\newpage
\phantomsection
\addcontentsline{toc}{section}{Coffee Cake}
\include{cakes/coffee.tex}
\newpage
\phantomsection
\addcontentsline{toc}{section}{Pancakes}
\include{cakes/pancake.tex}
\newpage
\chapter*{Breads}
\addcontentsline{toc}{chapter}{Breads}
\startcontents[chapters]
\printcontents[chapters]{}{1}{}
\newpage
\phantomsection
\addcontentsline{toc}{section}{Banana Nut Bread}
\include{breads/banana_nut.tex}
\newpage
\phantomsection
\addcontentsline{toc}{section}{Corn Bread}
\include{breads/corn.tex}
\newpage
\phantomsection
\addcontentsline{toc}{section}{Flour Tortillas}
\include{breads/tortillas.tex}
\newpage
\chapter*{Pastas}
\addcontentsline{toc}{chapter}{Pastas}
\startcontents[chapters]
\printcontents[chapters]{}{1}{}
\newpage
\phantomsection
\addcontentsline{toc}{section}{Andrea's Penne \& Cheese}
\include{pastas/andies_penne.tex}
\newpage
\phantomsection
\addcontentsline{toc}{section}{Catalina's Spanish Rice}
\include{pastas/catalina_spanish_rice.tex}
\chapter*{Salsas}
\addcontentsline{toc}{chapter}{Salsas}
\startcontents[chapters]
\printcontents[chapters]{}{1}{}
\newpage
\phantomsection
\addcontentsline{toc}{section}{Chile de Arbol Salsa}
\include{salsas/salsa-arbol.tex}
\end{document}