Last active
January 2, 2016 23:09
-
-
Save mundya/8374201 to your computer and use it in GitHub Desktop.
Introductory presentation for the (unofficial) University of Manchester Beamer theme.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%% 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} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%% 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