Skip to content

Instantly share code, notes, and snippets.

@FedericoTartarini
Created April 11, 2021 06:05
Show Gist options
  • Save FedericoTartarini/372d5cc380d8ed1a46556dc6f63eaf9b to your computer and use it in GitHub Desktop.
Save FedericoTartarini/372d5cc380d8ed1a46556dc6f63eaf9b to your computer and use it in GitHub Desktop.
\documentclass[aspectratio=169]{beamer}
\usepackage[utf8]{inputenc}
% import packages
\usepackage{multimedia}
\usepackage{hyperref}
\usepackage{xcolor}
\usepackage{graphicx}
% notes
\usepackage{pgfpages}
\setbeameroption{show notes}
\setbeameroption{show notes on second screen=right}
% beamer theme
\usetheme[progressbar=frametitle]{metropolis}
\setbeamertemplate{frame numbering}[fraction]
\definecolor{primary}{RGB}{245, 10, 10}
\setbeamercolor{palette primary}{bg=white, fg=black}
\setbeamercolor{background canvas}{parent=palette primary}
\setbeamercolor{normal text}{fg=black}
\setbeamercolor{progress bar}{use=palette primary,fg=primary}
% title page
\title{Example presentation}
\subtitle{This is our subtitle}
\author[Tartarini, Doe]
{F.~Tartarini\inst{1} \and J.~Doe\inst{2}}
\institute{
\inst{1}
Faculty of Engineering, My University
\and
\inst{2}
Faculty of Science, University 2
}
\date{2020}
% start presentation
\begin{document}
\begin{frame}{}
\titlepage
\note{Describe my university}
\end{frame}
\begin{frame}{Table of Contents}
\tableofcontents
\end{frame}
\section{Introduction and Background}\label{sec:introduction-and-background}
\subsection{Background}\label{subsec:background}
\begin{frame}{Use lists}
\begin{itemize}
\item First element
\begin{itemize}
\item First sub-element
\item Second sub-element
\end{itemize}
\item Second element
\end{itemize}
\begin{enumerate}[(I)]
\item First element
\begin{enumerate}[i]
\item First sub-element
\item Second sub-element
\end{enumerate}
\item Second element
\end{enumerate}
\end{frame}
\subsection{Introduction}\label{subsec:introduction}
\begin{frame}{Introduction}
\begin{figure}
\includegraphics[width=\textwidth, height=0.5\textheight, keepaspectratio]{figures/image}\\
\label{fig:figureIntroduction}
\end{figure}
\note[item]{Note that this slide is boring.}
\note[item]{Observe that there are no actual bullets here.}
\note[item]{Describe figure}
\end{frame}
\begin{frame}{Table}
\begin{table}[]
\centering
\begin{tabular}{c|c}
Variable & Value \\
\hline
Temperature & 20 \\
Humidity & 60
\end{tabular}
\caption{Caption}
\label{tab:my_label}
\end{table}
\end{frame}
\note{You can create this table using Pandas}
\end{document}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment