-
Notifications
You must be signed in to change notification settings - Fork 141
/
main.tex
258 lines (198 loc) · 6.43 KB
/
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
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
\documentclass[11pt,a4paper,twoside,openright]{book}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Page layout
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\usepackage{geometry}
\geometry{a4paper,
top=3cm,
bottom=3cm,
left=3cm,
right=3cm,
bindingoffset=0cm,
heightrounded,
headheight=110pt
}
\setlength{\parindent}{0pt}
\setlength{\parskip}{3mm}
\setlength{\baselineskip}{6mm}
\let\origdoublepage\cleardoublepage
\newcommand{\clearemptydoublepage}{%
\clearpage
{\pagestyle{empty}\origdoublepage}%
}
\let\cleardoublepage\clearemptydoublepage
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% ethuebung package
%
% The internal \uebcounter from ethuebung seems to get reset/confused when used
% with chapters, leading to conflicts. We thus define a new counter (mycounter)
% that is incremented whenever we create a new exercise.
%
% I further hacked the package so that an exercise corresponds to a section
% rather than a paragraph in order to facilitate inclusion in the table of
% contents. The hacks are not pretty but do seem to work.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\newif\ifSOL
\SOLtrue % if you would like to have solutions
%\SOLfalse % if you do not want to show the solutions
\usepackage{chngcntr} % needed to deal with the per-chapter numbering
\ifSOL
\usepackage[sol, nogeom]{sty/ethuebungchaptersection} % loads hyperref
\else
\usepackage[nogeom]{sty/ethuebungchaptersection} % loads hyperref
\fi
\UebungStyle{LargeSolutions}
% set counters
\newcounter{mycounter}[chapter]
\counterwithin{mycounter}{chapter}
\counterwithin{equation}{chapter}
\counterwithin{uebeqloesung}{chapter}
% Exercise label of the form: Exercise <chapter-nb>.<ex-number>
\newcommand{\ex}[1]{\refstepcounter{mycounter}\exercise{#1}}
\newcommand{\exref}[1]{Exercise \ref{#1}}
\renewcommand{\theuebcounter}{\thechapter.\arabic{mycounter}}%
% Solution label of the form: S.chapter-nb.eq-nb
\renewcommand{\uebLoesungEqLabel}{S.\thechapter.\arabic{uebeqloesung}}
% Set font style
\UebungExTitleFont{\rmfamily }
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Other packages
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\usepackage{nicefrac}
\usepackage{graphicx}
\usepackage{float}
\usepackage{amsmath,amssymb,amstext,amsthm,bbm,bm,mathtools}
\usepackage[utf8]{inputenc}
\usepackage{subfig}
\usepackage{booktabs}
\usepackage{xcolor}
\usepackage{url}
\usepackage{ccicons}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Bibliography
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\usepackage[round, authoryear]{natbib}
\bibliographystyle{plainnat}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Minitoc
% for per-chapter table of contents
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\usepackage{minitoc}
\setcounter{minitocdepth}{1} % only sections
\renewcommand{\mtctitle}{Exercises} % changes the title of the minitoc
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Packages for code display
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\usepackage{cprotect} % enables the use of listing envs in the answer macro
\usepackage{listings}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Header and footer
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\usepackage{fancyhdr}
\pagestyle{fancy}
\usepackage{calc}
\newlength{\pageoffset}
\setlength{\pageoffset}{1cm}
\renewcommand{\chaptermark}[1]{\markboth{#1}{}}
\renewcommand{\sectionmark}[1]{} %section doesn't set a mark
%\renewcommand{\sectionmark}[1]{\markright{\thesection\ #1}}
\fancyhf{}
\fancyhead[LE]{\makebox[\pageoffset][l]{\bfseries\thepage}\bfseries\leftmark}
\fancyhead[RO]{\bfseries\rightmark\makebox[\pageoffset][r]{\bfseries\thepage}}
%\fancyfoot[CE]{\footnotesize \scshape Pen \& Paper Exercises in Machine Learning}
%\fancyfoot[CO]{\footnotesize \scshape Pen \& Paper Exercises in Machine Learning}
%\renewcommand{\footrulewidth}{0.2pt}
\renewcommand{\headrulewidth}{1pt}
\fancypagestyle{plain}{%
\fancyhead{} % remove headers
\fancyfoot{} % remove footers
\renewcommand{\headrulewidth}{0pt} % remove the line
\renewcommand{\footrulewidth}{0pt}
}
\newcommand{\blankpage}{%
\clearpage{\pagestyle{empty}\cleardoublepage}
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Font for title
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\usepackage{calligra}
\usepackage[T1]{fontenc}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Hyperref setup
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\hypersetup{
plainpages=false,
colorlinks,
linkcolor={red!50!black},
citecolor={blue!50!black},
urlcolor={blue!80!black}
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Macros
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\input{macros/tikzstuff}
\input{macros/macros.tex}
\input{macros/listings.tex}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Figure path
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\graphicspath{
{./figs/}
{./figs/linear-algebra/}
{./figs/directed-graphical-models/}
{./figs/inference-for-hidden-markov-models/}
{./figs/model-based-learning/}
{./figs/sampling-and-monte-carlo-integration/}
{./figs/variational-inference/}
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Content
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%\includeonly{title, title-backside, preface, topics/linear-algebra, topics/optimisation}
\begin{document}
\frontmatter
\include{title}
\newpage
\include{title-backside}
\addtocontents{toc}{\protect{\pdfbookmark[0]{\contentsname}{toc}}}
\dominitoc
\setcounter{tocdepth}{1} % label only up to section
\setcounter{secnumdepth}{1} % label only up to section
\tableofcontents
\cleardoublepage
\include{preface}
\mainmatter
\chapter{Linear Algebra}
\minitoc
\include{topics/linear-algebra}
\chapter{Optimisation}
\minitoc
\include{topics/optimisation}
\chapter{Directed Graphical Models}
\minitoc
\include{topics/directed-graphical-models}
\chapter{Undirected Graphical Models}
\minitoc
\include{topics/undirected-graphical-models}
\chapter{Expressive Power of Graphical Models}
\minitoc
\include{topics/expressive-power-of-graphical-models}
\chapter{Factor Graphs and Message Passing}
\minitoc
\include{topics/factor-graphs-and-message-passing}
\chapter{Inference for Hidden Markov Models}
\minitoc
\include{topics/inference-for-hidden-markov-models}
\chapter{Model-Based Learning}
\minitoc
\include{topics/model-based-learning}
\chapter{Sampling and Monte Carlo Integration}
\minitoc
\include{topics/sampling-and-monte-carlo-integration}
\chapter{Variational Inference and Learning}
\minitoc
\include{topics/variational-inference}
\bibliography{refs}
\addcontentsline{toc}{chapter}{Bibliography}
%\appendix
\end{document}