
Template Presentazione Beamer Unipi
Author:
Simone
Last Updated:
7달 전
License:
Creative Commons CC BY 4.0
Abstract:
Template per presentazioni Unipi

\begin
Discover why over 20 million people worldwide trust Overleaf with their work.
\begin
Discover why over 20 million people worldwide trust Overleaf with their work.
\documentclass{beamer}
\usepackage{beamer}
\usepackage[english]{babel}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{graphicx}
\usepackage{svg}
% default color is dark
\def\colortheme{dark} % preset themes available are lighten, light, dark
\def\alertcolor{dark} % preset themes available are lighten, light, dark
\def\upperbar{\true} % i want upper index/navigation bar, \true or \false
\def\bottomsectionbar{\true} % i want bottom bar with Title and Frame/Slide number, \true or \false
\def\bottomtitlebar{\true} % i want bottom bar with Section and Institute, \true or \false
% % %
\if\upperbar\false
\setbeamertemplate{headline}{}
\fi
% % %
\title{Title}
\subtitle{Subtitle}
\author{Author}
\institute
{
Università di Pisa
}
\date{\today}
\begin{document}
\firstpage % optional. First page
\indexoverview % optional. Make a slide with index
\section{Section 1}
\sectionoverview % optional. Make a slide with section structure index
\begin{frame}{Normal Itemize} % normal itemize, one frame
\begin{itemize}
\item Item 1
\item Item 2
\end{itemize}
\begin{enumerate}
\item Item 1
\item Item 2
\end{enumerate}
\end{frame}
\begin{frame}{Alerted Itemize} % alerted itemize, one frame for each \item
\begin{itemize} [<+-| alert@+>]
\item Item 1
\item Item 2
\end{itemize}
\end{frame}
\section{Section 2}
\sectionoverview % optional. Make a slide with section structure index
\begin{frame}{Normal Frame}
Something
Something that will display now
\end{frame}
\begin{frame}{Alerted Frame} % alerted text, one frame for each \pause \alert
Something
\pause
\alert{Something that will display later}
\pause
\alert{Something that will display even later}
\end{frame}
\section{Section 3}
\sectionoverview % optional. Make a slide with section structure index
\subsection{Subsection 3.1}
\subsectionoverview % optional. Make a slide with subsection structure index
\begin{frame}{Pausing Frame without Alert}
Something
\pause
Something else
\end{frame}
\subsection{Subsection 3.2}
\subsectionoverview % optional. Make a slide with subsection structure index
\begin{frame}{Something else pt 2}
\begin{block}{Observation 1}
Simmons Hall is composed of metal and concrete.
\end{block}
\pause
\begin{block}{Observation 2}
Simmons Hall is composed of metal and concrete.
\end{block}
\pause
\begin{block}{Observation 3}
Simmons Hall is composed of metal and concrete.
\end{block}
\end{frame}
\begin{frame}{Something else pt 3}
\begin{columns}
\begin{column}{0.33\textwidth}
Simmons Hall is composed of metal and concrete.
\end{column}
\begin{column}{0.33\textwidth}
Simmons Hall is composed of metal and concrete.
\end{column}
\begin{column}{0.33\textwidth}
Simmons Hall is composed of metal and concrete.
\end{column}
\end{columns}
\end{frame}
\appendix % appendix
\begin{frame}
Final Frame
\end{frame}
\end{document}