Releases: mundya/unofficial-university-of-manchester-beamer
Releases · mundya/unofficial-university-of-manchester-beamer
v1.0.1
Initial Release with Darkframes
The work on including darkframes has been merged in as have several other bits of neatening. The end result is that arbitrary slides can use the formatting of the title slide which would be useful for, e.g., acknowledgements or question slides.
is produced by:
%% Declare the document type
\documentclass[t]{beamer} % The `t' means `align top'
\usetheme[darktitle,cabin,framenumber,totalframenumber]{UniversityOfManchester}
%% Set some document properties
\title{A Sample Presentation}
\subtitle{Using the new Beamer theme}
\author{Insert Test Subject's Name Here}
%% Begin the document
\begin{document}
%% Make the title slide
\maketitle
%% Generate a test slide
\begin{frame}
\frametitle{A Test Slide}
\end{frame}
%% A Questions slide
\mode<presentation>
\begin{darkframes}
\begin{frame}
\vspace*{.35\textheight}
\begin{center}
{\bf\LARGE Thank You}
\vspace*{.5\baselineskip}
{\Large Any Questions?}
\end{center}
\vspace*{.25\textheight}
\end{frame}
\begin{frame}
\frametitle{A Test Slide}
\end{frame}
\end{darkframes}
\mode
<all>
\begin{frame}
\frametitle{A Test Slide}
\end{frame}
\end{document}



