%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Beamer Sample File
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% If you want a MS Power Point like presentation use the
% beamer document class
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\documentclass{beamer}

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% If you want to print your presentation for handouts, use the
% handout option (by removing the "%" in front of
% \documentclass[handout]{beamer}. Make sure to put a "%" in
% front of \documentclass{beamer} above). This option will
% collapse all the overlays on one slide onto one page.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%\documentclass[handout]{beamer}

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Changes the way the slide titles look
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\usefonttheme{serif}
\usefonttheme{structuresmallcapsserif}

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Centers the Frame Title
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\setbeamertemplate{frametitle} {
\begin{centering}
\vspace{0.2in}
\insertframetitle
\par
\end{centering}
}

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Define the new environment itemise
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\newenvironment{itemise}
{\begin{itemize} \setlength{\itemsep}{0.5cm}}
{\end{itemize}}

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Begin Document
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

\begin{document}

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Slide: Title Page - This creates the title page defined earlier
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

% This produces the title page of your presentation
\title{A Sample Presentation using the Beamer Slide Environment}
\author{Mich\`{e}le Tertilt}

% use the command \date{your own date} if you don't want LaTeX to use
% today's date


\section{Title Page}

\begin{frame}
\maketitle
\end{frame}

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Slide 1: Using the itemize and itemise statements
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

% In order to see each slide's name in the TOC, you should define
% every slide as a new section - not essential, but useful for
% navigating your document.
\section{The Itemize Command}

\begin{frame}
\frametitle{The Itemize Command}

\begin{itemise}
    \item<1-> This shows how the itemise command works
    \item<2-> And shows the difference between then
    \begin{itemize}
        \item<2-> itemize
        \item<2-> itemise
    \end{itemize}
    \item<3-> statements
\end{itemise}

\end{frame}

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Slide 2: Including tables and graphs
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

% The best way to include graphs and tables into LaTeX and beamer
% is to save them as pdf files, save them in the same directory as
% your paper or presentation and then use the \includegraphics
% command. To use this command in a paper, you also need to include
% the use package graphicx by specifying \usepackage{graphicx}.
% If you choose this approach, you need to use pdf->LaTeX to compile
% your documents.

% NOTE: If you get an error message when you try to open the compiled
% pdf file that says your file is damaged and could not be repaired,
% it is most likely because beamer could not find one of your files.

\section{Including Tables and Graphs}

\begin{frame}
\frametitle{Including Tables and Graphs}

\centerline{
\includegraphics<1>[width=4.5in]{OriginalNashResult.pdf}%
\includegraphics<2->[width=4.5in]{OriginalFixedResult.pdf}%
}

\end{frame}

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Slide 3: The Uncover Command
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

\section{The Uncover Command}

\begin{frame}
\frametitle{The Uncover Command}

\begin{center}

\uncover<1-> {If you don't like the itemize command,}

\uncover<2-> {you may like the uncover command better.}

\end{center}

\uncover<3-> {And if you don't like your text}

\uncover<4-> {Just leave out the $\backslash$begin\{center\} command.}

\uncover<3-> {to be centered.}

\end{frame}

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Slide: Using Math
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

\section{Using Math}

\begin{frame}
\frametitle{Using Math}

If you like to use math, here we go

\uncover<2->{Aggregate matching function
\begin{equation*}
    m(u,v)=\omega u^{\alpha}  v^{1-\alpha}
\end{equation*}}

\uncover<3->{Workers' job finding rate
\begin{equation*}
    f(x)=\omega x^{1-\alpha}
\end{equation*}}

\uncover<3->{Firms' hiring rate is $f(x)/x$}

\end{frame}

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% End of the Document
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

\end{document}
