Skip to content

Instantly share code, notes, and snippets.

@mundya
Last active January 2, 2016 23:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mundya/8374201 to your computer and use it in GitHub Desktop.
Save mundya/8374201 to your computer and use it in GitHub Desktop.
Introductory presentation for the (unofficial) University of Manchester Beamer theme.
%% Declare the document type
%% `t` means "align content to the top of the slide"
\documentclass[t]{beamer}
%% Include the theme
\usetheme{UniversityOfManchester}
%% Set some document properties
\title{Saluto Mondo}
\subtitle{New Beamer Theme}
\author{Your Name Here}
%% Begin the document
\begin{document}
%% Make the title slide
\maketitle
%% A test slide
\begin{frame}
\frametitle{A Test Slide}
Illustrating the (unofficial) University of Manchester Beamer theme\ldots
%% Some bullet points
\begin{itemize}
\item Level 1
\begin{itemize}
\item Level 2
\end{itemize}
\end{itemize}
\end{frame}
\end{document}
%% Declare the document type
%% `t` means "align content to the top of the slide"
\documentclass[t]{beamer}
%% Include the theme
\usetheme[
darktitle,
framenumber,
totalframenumber,
cabin
]{UniversityOfManchester}
%% Set some document properties
\title{Saluto Mondo}
\subtitle{New Beamer Theme}
\author{Your Name Here}
%% Begin the document
\begin{document}
%% Make the title slide
\maketitle
%% A test slide
\begin{frame}
\frametitle{A Test Slide}
Illustrating the (unofficial) University of Manchester Beamer theme\ldots
%% Some bullet points
\begin{itemize}
\item Level 1
\begin{itemize}
\item Level 2
\end{itemize}
\end{itemize}
\end{frame}
\end{document}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment