\documentclass[10pt,mathserif]{beamer}

\mode<presentation>
{
  %\usetheme{boxes}
  \usetheme{CambridgeUS}
  %\usetheme{Singapore}
  %\usetheme{Warsaw}
  \setbeamertemplate{navigation symbols}{}
}


\usepackage[english]{babel}
\usepackage[latin1]{inputenc}

\usepackage{palatino}
\usepackage[T1]{fontenc}

\title{Title}

\author{Author One \and Author Two}

\institute[MUN]
{
  Department of Computer Science \\
  Memorial University of Newfoundland \\
  Canada
}

\date[Abbr.Conf.Name]
{
  Full name of Conference \\
  Date \& Location
}

% If you wish to uncover everything in a step-wise fashion, uncomment
% the following command: 
%\beamerdefaultoverlayspecification{<+->}

\begin{document}

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

\begin{frame}[plain]
  \titlepage
\end{frame}

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

\begin{frame}{Logo}
Here is MUN's Logo:
%\texttt{http://www.mun.ca/marcomm/image/graphic/logo.php}

\includegraphics[width=\textwidth]{MUN_Logo_RGB.png}
\end{frame}

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

\begin{frame}{Columns}
Here are three MUN logos which are all resized to fit inside
their respective columms.  This uses the \texttt{columns} environment of Beamer:

\vfill
  \begin{columns}[t]
    \begin{column}{0.4\textwidth}
      Text for column number 1.  This has a large logo.

      \bigskip
      \includegraphics[width=\textwidth]{MUN_Logo_RGB.png}
    \end{column}

    \begin{column}{0.3\textwidth}
      Text for column number 2.  This has a medium size logo.

      \bigskip
      \includegraphics[width=\textwidth]{MUN_Logo_RGB.png}
    \end{column}

    \begin{column}{0.2\textwidth}
      {\footnotesize Text for column number 3.  This has the smallest logo.}

      \bigskip
      \includegraphics[width=\textwidth]{MUN_Logo_RGB.png}
    \end{column}
  \end{columns}

\vfill
Make sure that the column widths do not total more that one full \texttt{$\backslash$textwidth}.

\end{frame}

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

\begin{frame}{Itemized List}
  \begin{itemize}
    \item This is item one.
    \item This is item two.
    \item This is item three.
    \begin{itemize}
      \item This is item three sub 1
      \item This is item three sub 2
      \item This is item three sub 3
    \end{itemize}
    \item This is item four.
    \item This is item five.
    \item This is item six.
    \item MUN's logo from: \texttt{http://www.mun.ca/marcomm/image/graphic/logo.php}
    \item Some math: $A = \pi r^2$.
  \end{itemize}
\end{frame}

\end{document}



