153 lines
3.5 KiB
TeX
153 lines
3.5 KiB
TeX
\documentclass[10pt, compress]{beamer}
|
|
|
|
\usetheme{m}
|
|
|
|
\usepackage{booktabs}
|
|
\usepackage[scale=2]{ccicons}
|
|
\usepackage{minted}
|
|
|
|
\usemintedstyle{trac}
|
|
|
|
\title{A clean, modern beamer theme}
|
|
\subtitle{}
|
|
\date{\today}
|
|
\author{Matthias Vogelgesang}
|
|
\institute{Institute or miscellaneous information}
|
|
|
|
\begin{document}
|
|
|
|
\maketitle
|
|
|
|
\begin{frame}[fragile]
|
|
\frametitle{mtheme}
|
|
|
|
The \emph{mtheme} is a Beamer theme with minimal visual noise inspired by the
|
|
\href{https://github.com/hsrmbeamertheme/hsrmbeamertheme}{\textsc{hsrm} Beamer
|
|
Theme} by Benjamin Weiss.
|
|
|
|
Enable the theme by loading
|
|
|
|
\begin{minted}[fontsize=\small]{latex}
|
|
\documentclass{beamer}
|
|
\usetheme{m}
|
|
\end{minted}
|
|
|
|
Note, that you have to have Mozilla's \emph{Fira Sans} font and XeTeX
|
|
installed to enjoy this wonderful typography.
|
|
\end{frame}
|
|
|
|
\begin{frame}[fragile]
|
|
\frametitle{Sections}
|
|
Sections group slides of the same topic
|
|
|
|
\begin{minted}[fontsize=\small]{latex}
|
|
\section{Elements}
|
|
\end{minted}
|
|
|
|
for which the \emph{mtheme} provides a nice progress indicator \ldots
|
|
\end{frame}
|
|
|
|
\section{Elements}
|
|
|
|
\begin{frame}[fragile]
|
|
\frametitle{Typography}
|
|
\begin{minted}[fontsize=\small]{latex}
|
|
The theme provides sensible defaults to \emph{emphasis}
|
|
text, \alert{accent} parts or show \textbf{bold} results.
|
|
\end{minted}
|
|
|
|
\begin{center}becomes\end{center}
|
|
|
|
The theme provides sensible defaults to \emph{emphasis} text,
|
|
\alert{accent} parts or show \textbf{bold} results.
|
|
\end{frame}
|
|
\begin{frame}{Lists}
|
|
\begin{columns}[onlytextwidth]
|
|
\column{0.5\textwidth}
|
|
Items
|
|
\begin{itemize}
|
|
\item Milk \item Eggs \item Potatos
|
|
\end{itemize}
|
|
|
|
\column{0.5\textwidth}
|
|
Enumerations
|
|
\begin{enumerate}
|
|
\item First, \item Second and \item Last.
|
|
\end{enumerate}
|
|
\end{columns}
|
|
\end{frame}
|
|
\begin{frame}{Descriptions}
|
|
\begin{description}
|
|
\item[PowerPoint] Meeh.
|
|
\item[Beamer] Yeeeha.
|
|
\end{description}
|
|
\end{frame}
|
|
\begin{frame}{Animation}
|
|
\begin{itemize}[<+- | alert@+>]
|
|
\item \alert<4>{This is\only<4>{ really} important}
|
|
\item Now this
|
|
\item And now this
|
|
\end{itemize}
|
|
\end{frame}
|
|
\begin{frame}{Figures}
|
|
\begin{figure}
|
|
\begin{tikzpicture}
|
|
\node[circle, draw=black] at (0, 0) {foo};
|
|
\node[rectangle, draw=black] at (2, 0) {bar};
|
|
\end{tikzpicture}
|
|
\caption{A circle and a rectangle.}
|
|
\end{figure}
|
|
\end{frame}
|
|
\begin{frame}{Tables}
|
|
\begin{table}
|
|
\caption{Largest cities in the world (source: Wikipedia)}
|
|
\begin{tabular}{lr}
|
|
\toprule
|
|
City & Population\\
|
|
\midrule
|
|
Mexico City & 20,116,842\\
|
|
Shanghai & 19,210,000\\
|
|
Peking & 15,796,450\\
|
|
Istanbul & 14,160,467\\
|
|
\bottomrule
|
|
\end{tabular}
|
|
\end{table}
|
|
\end{frame}
|
|
\begin{frame}{Blocks}
|
|
|
|
\begin{block}{This is a block title}
|
|
This is soothing.
|
|
\end{block}
|
|
|
|
\end{frame}
|
|
\begin{frame}{Math}
|
|
\begin{equation*}
|
|
e = \lim_{n\to \infty} \left(1 + \frac{1}{n}\right)^n
|
|
\end{equation*}
|
|
\end{frame}
|
|
\begin{frame}{Quotes}
|
|
\begin{quote}
|
|
Veni, Vidi, Vici
|
|
\end{quote}
|
|
\end{frame}
|
|
|
|
\section{Conclusion}
|
|
|
|
\begin{frame}{Summary}
|
|
|
|
Get the source of this theme and the demo presentation from
|
|
|
|
\begin{center}\url{github.com/matze/mtheme}\end{center}
|
|
|
|
The theme \emph{itself} is licensed under a
|
|
\href{http://creativecommons.org/licenses/by-sa/4.0/}{Creative Commons
|
|
Attribution-ShareAlike 4.0 International License}.
|
|
|
|
\begin{center}\ccbysa\end{center}
|
|
|
|
\end{frame}
|
|
|
|
\statement{Questions?}
|
|
|
|
\end{document}
|