Templates

Ingenuitylabs Slides

Preview

Ingenuitylabs Slides

Presentation slides LaTeX class and template matching the Ingenuity Labs Research Institute style.

Category

Presentation

License

Free to use (MIT)

File

ingenuitylabs-slides-example.tex

ingenuitylabs-slides-example.texRead-only preview
% INGENUITYLABS-SLIDES-EXAMPLE.TEX
% Created 2022/01/20 by Joshua A. Marshall <joshua.marshall@queensu.ca>

% Note: You must compile your LaTeX document using XeLaTeX.
% !TEX engine = xelatex

\documentclass[fleqn]{ingenuitylabs-slides}

% ---------------------------------------------------------------------------
% INSTRUCTIONS
% 
% To change the background for a slide (and subsequent slides),
% invoke one of the following commands to switch backgrounds.
% 
% \SlideThemeWhiteA
% \SlideThemeWhiteB
% \SlideThemeColourful
% \SlideBlue
% \SlideRed
% \SlideBlack
% \SlideWhite

% ---------------------------------------------------------------------------
% TEMPLATE OPTIONS

% Uncomment the line below if you want to remove the slide numbers
% \setbeamertemplate{footline}{~}

% ---------------------------------------------------------------------------
% PRESENTATION INFO

\title{The Presentation Title}
\subtitle{A Subtitle for the Presentation}
\author{Firstname M.~Lastname}
\institute{Ingenuity Labs Research Institute \\ 
    Queen's University \\ 
    Kingston, Ontario, Canada}
\date{\today}

\begin{document}

% ---------------------------------------------------------------------------
% TITLE SLIDES

% Standard theme title slide
\SlideThemeWhiteA
\begin{frame}
    \titlepage
\end{frame}

% Alternate theme title slide (red)
\SlideThemeRed
\begin{frame}
    \titlepage
\end{frame}

% Alternate theme title slide (blue)
\SlideThemeBlue
\begin{frame}
    \titlepage
\end{frame}

% Alternate theme title slide (gold)
\SlideThemeGold
\begin{frame}
    \titlepage
\end{frame}

% ---------------------------------------------------------------------------
% OUTLINE SLIDE

\SlideThemeWhiteA
\begin{frame}
    \frametitle{Outline}
    \tableofcontents
\end{frame}

% ---------------------------------------------------------------------------
% CUSTOMIZE SLIDE FOOTER

% Comment out or change these lines if you want additional info in the footer
\setbeamertemplate{footline}{
    \usebeamerfont{footline}
    \hspace{6pt}
    \insertsection\sep\inserttitle\sep\insertauthor
    \hfill
    \insertframenumber~of~\inserttotalframenumber
    \hspace{6pt}
    \vspace{6pt}
}

% ---------------------------------------------------------------------------
% NEW SECTION SLIDE

\section{Introduction}

\SlideThemeWhiteA
\begin{frame}
    \flushleft
    {\bf\LARGE \insertsection}
\end{frame}

% ---------------------------------------------------------------------------

\SlideThemeWhiteB
\begin{frame}
    \frametitle{Basic Theme Slide with Bullets}
    \begin{itemize}
        \item Itemized bullet number 1
        \begin{itemize}
            \item Sub-bullet number 1.1
            \item Sub-bullet number 1.2
        \end{itemize}
        \item Itemized bullet number 2
    \end{itemize}
\end{frame}

% ---------------------------------------------------------------------------

\SlideThemeColourful
\begin{frame}
    \frametitle{Colourful Slide with a Numbered List}
    \begin{enumerate}
        \item Enumerated item number 1
        \item Enumerated item number 2
    \end{enumerate}
\end{frame}

% ---------------------------------------------------------------------------
% NEW SECTION SLIDE

\section{Another Section}

\SlideThemeWhiteA
\begin{frame}
    \flushleft
    {\bf\LARGE \insertsection}
\end{frame}

% ---------------------------------------------------------------------------

\SlideWhite
\begin{frame}[fragile]
    \frametitle{Code with Syntax Highlighting}
    \begin{block}{Example Python Code Listing}
    \begin{minted}{python}
import numpy as np
x = np.zeros(5)
    \end{minted}
    \end{block}
\end{frame}

% ---------------------------------------------------------------------------

\SlideWhite
\begin{frame}[fragile]
    \frametitle{Example Theorem Environment}
    \begin{thm}
        The equilibrium point $\mbf{x}=\mbf{0}$ of $\dot{\mbf{x}}=\mbf{Fx}$ is asymptotically stable if and only if the eigenvalues $\lambda_{i}$ of $\mbf{F}$ satisfy $\textup{Re}\lambda_{i}<0$.
    \end{thm}
\end{frame}

% ---------------------------------------------------------------------------

\SlideWhite
\begin{frame}[fragile]
    \frametitle{Example Alert Block}
    \begin{alertblock}{This is an Alert Block}
        Use this environment to draw attention to important stuff.
    \end{alertblock}
\end{frame}

% ---------------------------------------------------------------------------

\SlideWhite
\begin{frame}
    \frametitle{Adding a Figure and Using a Blank Slide}
    \begin{columns}
        \column{0.5\textwidth}
        \begin{itemize}
            \item This is a standard bullet item
            \item[] This is another bullet item, but without the bullet
            \item Notice how to include a caption
        \end{itemize}
        \column{0.5\textwidth}
        \begin{figure}
            \flushleft
            \includegraphics[width=0.6\columnwidth]{figs/ingenuitylabs-logo-colourful.pdf}
            \caption{This is the Ingenuity Labs Research Institute's logo.}
        \end{figure}
    \end{columns}
\end{frame}

% ---------------------------------------------------------------------------

\SlideWhite
\begin{frame}
    \frametitle{Here is a Table Example}
    \begin{table}
        \caption{This is an example of a table caption.}
        \flushleft
        \begin{tabular}{lccc}
            \toprule
                \bf Small column & \multicolumn{3}{c}{\bf Big column} \\
            \midrule
                Grouped items & \multicolumn{3}{c}{Item 1} \\
            \cmidrule{2-4}
                & \multicolumn{3}{c}{Item 2} \\
            \midrule
                Usual row & Spam & Bacon & Eggs \\
            \bottomrule
        \end{tabular}
    \end{table}
\end{frame}

% ---------------------------------------------------------------------------

% TODO: Insert an example with a table

% ---------------------------------------------------------------------------

\SlideBlack
\begin{frame}
    \frametitle{This Slide is Black and Has Maths}
    \begin{columns}
        \column{0.5\textwidth}
        Try to integrate
        \begin{equation}
            x_0=\int_0^\infty f_x(\tau)d\tau
        \end{equation}
        where $\tau\in\Real$ is a variable.
        \column{0.5\textwidth}
        \begin{thm}
            This is a very important theorem.
        \end{thm}
    \end{columns}
\end{frame}

% ---------------------------------------------------------------------------

\SlideBlue 
\begin{frame}
    \centering
    \includegraphics[height=0.9\textheight]{figs/ingenuitylabs-logo-white.pdf}
\end{frame}

% ---------------------------------------------------------------------------

\SlideRed
\begin{frame}
    \centering
    \includegraphics[height=0.9\textheight]{figs/ingenuitylabs-logo-white.pdf}
\end{frame}

% ---------------------------------------------------------------------------

\SlideWhite
\begin{frame}
    \begin{columns}
        \column{0.4\textwidth}
        \centering
        \includegraphics[width=\textwidth]{figs/ingenuitylabs-logo-colourful.pdf}
        \column{0.6\textwidth}
        {\large\bf \insertauthor} \\
        \insertinstitute \\
        Tel: +1 613-533-2995 \\
        Email firstname.lastname@queensu.ca \\
        Web: ingenuitylabs.queensu.ca
    \end{columns}
\end{frame}

% ---------------------------------------------------------------------------

\end{document}
Preview
Ingenuitylabs Slides preview
Ingenuitylabs Slides LaTeX Template | Bibby | Bibby AI