2020-06-05 23:27:21 +02:00
|
|
|
---
|
2020-06-07 14:32:03 +02:00
|
|
|
title: Title
|
2020-06-05 23:27:21 +02:00
|
|
|
date: \today
|
|
|
|
author:
|
|
|
|
- Giulia Marcer
|
|
|
|
- Michele Guerini Rocco
|
|
|
|
institute:
|
|
|
|
- Università di Milano-Bicocca
|
|
|
|
|
|
|
|
theme: metropolis
|
2020-06-06 19:40:48 +02:00
|
|
|
themeoptions:
|
|
|
|
- titleformat=allcaps
|
2020-06-05 23:27:21 +02:00
|
|
|
aspectratio: 169
|
|
|
|
|
2020-06-06 19:40:48 +02:00
|
|
|
fontsize: 12pt
|
|
|
|
mainfont: Fira Sans
|
|
|
|
mainfontoptions:
|
|
|
|
- BoldFont=Fira Sans
|
|
|
|
|
2020-06-05 23:27:21 +02:00
|
|
|
mathfont: FiraMath-Regular
|
|
|
|
|
|
|
|
header-includes: |
|
|
|
|
```{=latex}
|
2020-06-06 19:40:48 +02:00
|
|
|
%% Colors
|
|
|
|
\definecolor{mDarkTeal} {HTML}{020202}
|
|
|
|
\definecolor{mLightBrown}{HTML}{C49D4A}
|
|
|
|
\definecolor{mDarkRed} {HTML}{92182B}
|
|
|
|
|
|
|
|
\definecolor{green} {HTML}{60AC39}
|
|
|
|
\definecolor{red} {HTML}{D73737}
|
|
|
|
\definecolor{blue} {HTML}{6684E1}
|
|
|
|
\definecolor{yellow}{HTML}{CFB017}
|
|
|
|
|
|
|
|
\setbeamercolor{frametitle}{bg=mDarkRed}
|
|
|
|
|
|
|
|
% center images
|
|
|
|
\LetLtxMacro{\oldIncludegraphics}{\includegraphics}
|
|
|
|
\renewcommand{\includegraphics}[2][]{
|
|
|
|
\centering
|
|
|
|
\oldIncludegraphics[#1]{#2}
|
|
|
|
}
|
2020-06-05 23:27:21 +02:00
|
|
|
|
|
|
|
% "thus" in formulas
|
|
|
|
\DeclareMathOperator{\thus}{%
|
|
|
|
\hspace{30pt} \Longrightarrow \hspace{30pt}
|
|
|
|
}
|
|
|
|
|
2020-06-09 18:28:53 +02:00
|
|
|
% "thus" in text
|
|
|
|
\DeclareMathOperator{\hence}{%
|
|
|
|
\quad \longrightarrow \quad
|
|
|
|
}
|
|
|
|
|
2020-06-07 14:32:03 +02:00
|
|
|
% "and" in formulas
|
|
|
|
\DeclareMathOperator{\et}{%
|
|
|
|
\hspace{30pt} \wedge \hspace{30pt}
|
|
|
|
}
|
|
|
|
|
2020-06-05 23:27:21 +02:00
|
|
|
% "with" in formulas
|
|
|
|
\DeclareMathOperator{\with}{%
|
|
|
|
\hspace{30pt} \text{with} \hspace{30pt}
|
|
|
|
}
|
2020-06-07 14:32:03 +02:00
|
|
|
|
|
|
|
% "expected" in formulas
|
|
|
|
\DeclareMathOperator{\ex}{%
|
|
|
|
^{\text{exp}}
|
|
|
|
}
|
|
|
|
|
|
|
|
% "observed" in formulas
|
|
|
|
\DeclareMathOperator{\ob}{%
|
|
|
|
^{\text{obs}}
|
|
|
|
}
|
2020-06-05 23:27:21 +02:00
|
|
|
```
|
|
|
|
...
|