Oxford Statistics Presentation
Author
Chris Carmona
Last Updated
4 years ago
License
Creative Commons CC BY 4.0
Abstract
Simple beamer template with the colours and logo Oxford Statistics Department
%% If you have any problems using this template, please contact the author: %%
%% Chris Carmona: carmona@stats.ox.ac.uk ; chriscarmona.me %%
\documentclass{beamer}
\include{preamble}
%% Information (author, title, etc.) %%
\title[Short Title]{% short title for footer
Long and Descriptive Title
\vspace{0.5cm}
}
\author{ Your Name \and Your Collaborator}
\institute{
\textit{Department of Statistics}\\
\textit{University of Oxford}
\vspace{0.5cm}
}
\date[Venue and Date]{% short date for footer
Venue, Date
}
%% Content of slides %%
%%%%%%%%%%%%%%%%%%%%
\begin{document}
%%%%%%%%%%%%%%%%%%%%
% Title slide %
{
\setbeamertemplate{footline}{}
\setbeamertemplate{headline}{}
\setbeamercolor{background canvas}{bg=oxfordblue}
\maketitle
}
%----------------------------%
% Contents slide
\begin{frame}
\frametitle{Outline}
\tableofcontents
\end{frame}
%----------------------------%
%now include the slides
\setbeamercovered{transparent}
%----------------------------%
\section{Section 1}
\subsection{Subsection a}
\begin{frame}
\frametitle{First slide Title}
\small
Add your contents and citations \citep{Tantau2016beamerguide}
\end{frame}
\section{Section 2}
\begin{frame}
\frametitle{Another Slide}
\small
Maybe some figures like Fig.~\ref{fig:my_label}
\begin{figure}
\centering
\includegraphics[width=3cm]{example-image-a}
\caption{Example image}
\label{fig:my_label}
\end{figure}
\end{frame}
%----------------------------%
%----------------------------%
% Conclusions
\begin{frame}
\frametitle{}
\centering
\Large\color{oxfordblue}
Thank you!
\vspace{0.5cm}
lastname@stats.ox.ac.uk
\end{frame}
%----------------------------%
% References slide
\begin{frame}
\frametitle{References}
\small
\bibliographystyle{apalike} %use the apalike bibliography style
\bibliography{references} % bibliography file
\end{frame}
%%%%%%%%%%%%%%%%%%%%
\end{document}
%%%%%%%%%%%%%%%%%%%%