% A Readymade beamer presentation template
% Version 1.1
% Relase date: May 2, 2010
% Released at http://www.stattler.com
% by Rifat Jahan

\documentclass{beamer}
%\usecolortheme[named=green]{structure}
\mode<presentation> {
\usetheme{Madrid} % My favorite!
%\usetheme{Boadilla} % Pretty neat, soft color.
%\usetheme{default}
%\usetheme{Warsaw}
%\usetheme{Bergen} % This template has nagivation on the left
%\usetheme{Frankfurt} % Similar to the default with an extra region at the top.
%\usecolortheme{seahorse} % Simple and clean template
%\usetheme{Darmstadt} % not so good
% Uncomment the following line if you want page numbers and using Warsaw theme
% \setbeamertemplate{footline}[page number]
%\setbeamercovered{transparent}
\setbeamercovered{invisible}
% To remove the navigation symbols from the bottom of slides%
\setbeamertemplate{navigation symbols}{} 
}

\usepackage{graphicx}
%\usepackage{bm} 
% For typesetting bold math (not \mathbold)
%\logo{\includegraphics[height=0.6cm]{yourlogo.eps}}
%
\title[Short title of the talk]{Beautiful Presentation using Beamer}
%
\author{Name of the Speaker}
\institute[U of X]
{
University of [...] \\
\medskip
{\emph{email@domain.ca}}
}
\date{\today}
% \today will show current date. 
% Alternatively, you can specify a date.

\begin{document}
%
\begin{frame}
\titlepage
\end{frame}
%
%
\begin{frame}
\frametitle{Motivation}
\begin{block}
{Why Beamer?}
Does anybody need an introduction to Beamer? I don't think so.
\end{block}
\end{frame}
%
%
\begin{frame}
\frametitle{Example of a Theorem}
\begin{theorem}
The quick brown fox jumps over the lazy dog.
\end{theorem}
\end{frame}

\begin{frame}[fragile] % Notice the [fragile] option beside \begin{frame} %
\frametitle{Verbatim}
\begin{example}[Putting Verbatim]
\begin{verbatim}
\begin{frame}
\frametitle{Outline}
\begin{block}
{Why Beamer?}
Does anybody need an introduction to Beamer?
I don't think so.
\end{block}
\end{frame}\end{verbatim} % Extra carriage return causes problem wit verbatim %
\end{example}
\end{frame}

\begin{frame}[fragile]  % notice the fragile ooption, since the body
			% contains a verbatim command
Example of the \verb|\cite| command to give a reference is below:

With an example of citation, \cite{key1}, we may proceed to the Bibliograhy section.
\end{frame}

\begin{frame}
\frametitle{References}
\footnotesize{
\begin{thebibliography}{99}
 \bibitem[Label1, 2010]{key1} Author's name (1987)
 \newblock Title of the paper.
 \newblock \emph{Journal Name} 55(4), 765 -- 799.
\end{thebibliography}
}
\end{frame}

\begin{frame}
\centerline{The End}
\end{frame}


% End of slides
\end{document} 
