% Document Preamble

%  Must be compiled with pdf Latex

\documentclass[12pt]{beamer}
%\documentclass[12pt,handout]{beamer}

% If you want to print handouts
%\documentclass[handout]{beamer}

% Changing the fonts: this will make the slides more readable and the math look like regular tex math
\usefonttheme{serif}

% Titles will appear in Small Cap Serif
\usefonttheme{structuresmallcapsserif}

% -----------------------------------------
% Center the Frame Title
% -----------------------------------------

\setbeamertemplate{frametitle} {
\begin{centering}
\vspace{0.1in} \insertframetitle
\par
\end{centering}}

% -----------------------------------------
% Number the slides
% -----------------------------------------

\setbeamertemplate{footline}[frame number]

% -----------------------------------------
% Get rid of the irritating navigation bar
% -----------------------------------------

\setbeamertemplate{navigation symbols}{}

% -----------------------------------------
% Begin Document
% -----------------------------------------

\begin{document}

%  I separate each slide with a line:

% -----------------------------------------

%  I start with the screen black, like using the b key in Powerpoint

\beamersetaveragebackground{black}
\begin{frame}
\frametitle{}

\end{frame}


% -----------------------------------------
%  Restore normal white background

\beamersetaveragebackground{white}


% -----------------------------------------

%  Example of a slide with animated math:

\begin{frame}
\frametitle{Evolution of venture's share}

\uncover<1->{
\[
s_{i,i}=\frac{f_i}{f_i+v_i}
\]
}

\uncover<2->{
 \[
s_{i,j}=\frac{s_{i,j-1}v_j}{f_j+v_j}
  \]
}

\end{frame}


% -----------------------------------------
%  Example of a slide with a table
%  Make the table in Excel, print as a pdf, use the crop tool in Acrobat to crop

\begin{frame}
\frametitle{Data}

\centerline{
\includegraphics[width=5in]{Table_1}
}

\end{frame}


% -----------------------------------------
%  Example of a slide with bullet list and some text (I rarely use slides like this)

\begin{frame}
\frametitle{Predictors}

\begin{itemize}
\item Number of this round
\item Amount raised in this round
\item Cumulative increase in the Wilshire index over the 2 years
preceding this round
\end{itemize}
\vspace{.5in}

Our specification has a complete set of
interactions by round number, except that we fit
the same coefficients for rounds 5 and higher.

\end{frame}

% -----------------------------------------
%  Example of a slide with a figure (handled just the same as a table)

\begin{frame}
\frametitle{GPs' earnings}

\centerline{
\includegraphics<1>[width=4.in]{Fig_3}
}

\end{frame}

% -----------------------------------------
%  Finish with dark screen again

\beamersetaveragebackground{black}
\begin{frame}
\frametitle{}

\end{frame}

\end{document}
