-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathslides-template.tex
More file actions
58 lines (47 loc) · 1.57 KB
/
Copy pathslides-template.tex
File metadata and controls
58 lines (47 loc) · 1.57 KB
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
% =====================================================================
% SLIDES -- beamer + Metropolis theme
% Build: latexmk -cd slides/slides-template.tex (or the VSCode green arrow)
% Compiles with pdfLaTeX. (Metropolis looks best with LuaLaTeX + Fira fonts,
% but works fine here with the default fonts.)
% =====================================================================
\documentclass[11pt,aspectratio=169]{beamer}
\usetheme{metropolis}
\metroset{block=fill}
\usepackage{mathmacros}
\usepackage{econ}
% NOTE: beamer has its own theorem/definition blocks, so we do NOT load theorems.sty.
\usepackage{meconbib}
\bibresource{references}
\title{Presentation Title}
\subtitle{A Short Subtitle}
\author{Gavin Qu}
\institute{Department of Economics}
\date{\today}
\begin{document}
\maketitle
\begin{frame}{Outline}
\tableofcontents
\end{frame}
\section{Motivation}
\begin{frame}{The macros work on slides too}
\begin{itemize}
\item Reals \(\R\), expectation \(\E[X]\), argmax \(\argmax_{x} u(x)\).
\item A best response to others' play: \(\BR(s_{\negi})\).
\item Citations work: adverse selection \parencite{akerlof1970}.
\end{itemize}
\end{frame}
\section{A result}
\begin{frame}{Existence}
\begin{theorem}[Existence of equilibrium]
Under standard assumptions, a Nash equilibrium exists.
\end{theorem}
\begin{block}{Proof idea}
Apply Kakutani's fixed-point theorem to the best-response correspondence
\(s \mapsto \BR(s)\).
\end{block}
\end{frame}
\appendix
\begin{frame}[allowframebreaks]{References}
\printrefs
\end{frame}
\end{document}