2024-01-12 15:29:35 +01:00

123 lines
2.3 KiB
TeX

\documentclass{beamer}
\usetheme{Szeged}
\usecolortheme{whale}
\input{settings.tex}
\title[title]{Full title} % title is used in slides footer
\subtitle{subtitle}
\author{Joël VON DER WEID\\
joel.von-der-weid@hesge.ch}
\institute{Hepia}
\date{\today}
\begin{document}
% Hide header/footer text in title frame
\setbeamercolor{section in head/foot}{fg=section in head/foot.bg}
\setbeamercolor{institute in head/foot}{fg=section in head/foot.bg}
\begin{frame}
\titlepage
\raggedleft
\includesvg[height=6mm]{img/hepia_logo.svg}
% Include a second logo
%\hfill\includesvg[height=6mm]{img/hepia_logo.svg}
\end{frame}
\setbeamercolor{section in head/foot}{fg=white!95!black}
\setbeamercolor{institute in head/foot}{fg=white!95!black}
% Hide institute in footer
%\institute{}
% Enable frame numbers after title frame
\setbeamertemplate{page number in head/foot}{%
\insertframenumber
}
%--------------------------------
\section{Introduction}
\begin{frame}{Summary}
\tableofcontents
\end{frame}
\begin{frame}{Context}
\begin{itemize}
\item Item 1
\begin{itemize}
\item Item 2
\item Item 3
\end{itemize}
\item Item 4
\item Item 5
\end{itemize}
\end{frame}
\logo{\includesvg[height=6mm]{img/hepia_logo.svg}\hspace{1cm}\vspace{1cm}}
\begin{frame}{Frame with logo}
\begin{itemize}
\item Item 1
\item Item 2
\end{itemize}
\end{frame}
\logo{}
%--------------------------------
\section{Subject}
\begin{frame}{Sub suject}
\begin{itemize}
\item Item 1
\item Item 2
\item Item 3
\end{itemize}
\end{frame}
\begin{frame}{2 columns}
\begin{columns}[onlytextwidth, T, c]
\begin{column}{0.5\linewidth}
\begin{itemize}
\item Item 1
\item Item 2
\item Item 3
\end{itemize}
\end{column}
\begin{column}{0.5\linewidth}
\begin{center}
\vspace{-5mm}
\includegraphics[width=0.95\linewidth]{img/img}
\end{center}
\end{column}
\end{columns}
\end{frame}
\begin{frame}{Big image}
\includegraphics[width=\linewidth]{img/img}
\end{frame}
\begin{frame}[fragile]{frame with code}
\begin{itemize}
\item Some code example
\end{itemize}
\begin{minted}{python}
def hello():
print("Hello World")
\end{minted}
\end{frame}
\begin{frame}{}
\begin{columns}[onlytextwidth, T, c]
\begin{column}{\linewidth}
\vspace{0.7cm}
\usebeamercolor[bg]{frametitle}
\center{\Huge{Demonstration}}
\end{column}
\end{columns}
\end{frame}
\end{document}