-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tex
61 lines (51 loc) · 1.63 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
\documentclass{beamer}
\usepackage{amsfonts}
\usepackage{siunitx}
\usepackage{booktabs}
\usepackage{xcolor}
\usepackage{mathtools}
\usepackage{amsthm}
\usepackage{natbib}
\usepackage{bbm}
\usepackage{centernot}
\title{A Rigorous Framework for Automated Design Assessment and Type I Error Control}
% I honestly don't really care about the order,
% but from an audience perspective, the one who's presenting may want to put their name first?
% Currently, it is set to the same ordering as in the paper.
\author[shortname]{James Yang\inst{1,2} \and T. Ben Thompson\inst{2} \and Michael Sklar\inst{2}}
\institute[shortinst]{\inst{1} Stanford University \and
\inst{2} Confirm Solutions}
\date{\today}
\newcommand{\prob}{\mathbb{P}}
\newcommand{\pr}[1]{\left( #1 \right)}
\newcommand{\br}[1]{\left[#1\right]}
\newcommand{\sbr}[1]{\left\{#1\right\}}
\newcommand{\normal}{\mathcal{N}}
\newcommand{\set}[1]{\{#1\}}
\newcommand{\EEE}{\mathbb{E}}
\newcommand{\R}{\mathbb{R}}
\newcommand{\design}{\mathcal{D}}
\newcommand{\indic}[1]{\mathbbm{1}_{#1}}
\newcommand{\norm}[1]{\left\|#1\right\|}
\DeclareMathOperator{\var}{Var}
\DeclareMathOperator{\expit}{expit}
\DeclareMathOperator{\logit}{logit}
\DeclareMathOperator{\Binom}{Binom}
\DeclarePairedDelimiter\floor{\lfloor}{\rfloor}
\beamertemplatenavigationsymbolsempty
\begin{document}
\frame{\titlepage}
\begin{frame}
\frametitle{Table of Contents}
\tableofcontents
\end{frame}
\input{introduction_revamp}
\input{methodology}
\input{conclusion}
\begin{frame}[allowframebreaks]
\frametitle{References}
\bibliographystyle{plainnat}
\bibliography{references}
\end{frame}
\input{extra}
\end{document}