Skip to content

Releases: mundya/unofficial-university-of-manchester-beamer

v1.0.1

18 May 15:13

Choose a tag to compare

Modified README to point at new installation guide.

Initial Release with Darkframes

30 Sep 14:08

Choose a tag to compare

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.

test-0 ... test-2 test-3 test-4

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}