lboro-beamer-template
Author
Corentin Artaud
Last Updated
2 years ago
License
LaTeX Project Public License 1.3c
Abstract
An unofficial LaTeX Beamer presentation template for Loughborough University
An unofficial LaTeX Beamer presentation template for Loughborough University
%% If you have any problems using this template, please contact the author %%
\documentclass[pdf]{beamer}
\usepackage[utf8]{inputenc}
\usepackage{lboro-beamer}
% NOTE: short-title and short-date are not used.
\title[Short title here]{Title goes here and it can be very long if you want, and the length of lines can be adjusted}
\author{%
{\textsc{Corentin Artaud}} \\[0.5ex]
PhD Student - Machine Intelligence Lab
}
\institute{%
\textit{Institute of Digital Technologies,}\\
\textit{Loughborough University London}
}
\date[ICPR23]{International Conference on Pattern Recognition, May 2023}
\begin{document}
{
% Remove navigation symbols from title-page as we group them in regular frames
% Can't find better way of doing it, leaving like this for now. It works.
\setbeamertemplate{navigation symbols}{}
\begin{frame}[plain]
\titlepage
\end{frame}
}
\begin{frame}{This is the first slide}{A bit more information about this}
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
consequat.
Here is
\begin{itemize}
\item some text
\item inline maths: \(H(X) = \mathbb{E}_X[I(x)] = -\sum_{x \in X} p(x) \log p(x)\)
\item and display maths:
\[
f(n) \in O(g(n)) \Leftrightarrow \limsup_{n \rightarrow \infty} \frac{|f(n)|}{|g(n)|} < \infty
\]
\end{itemize}
\end{frame}
\end{document}