pfizerpflanze

Esempio presentazione beamer

Aug 4th, 2025
1,039
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Latex 3.53 KB | None | 0 0
  1. \documentclass[aspectratio=43,xcolor=dvipsnames]{beamer}
  2. \usepackage[italian]{babel}
  3. \definecolor{unired}{HTML}{9B0014} % forse serve xcolor
  4. \beamertemplatenavigationsymbolsempty
  5. \usetheme{Berlin} % Antibes, Darmstadt, JuanLesPins, CambridgeUS, ecc.
  6. \usecolortheme[named=unired]{structure}
  7.  
  8. % ... continua preambolo con i pacchetti che ti servono
  9.  
  10. % un po'
  11. % nelle parentesi quadre è un'abbreviazione che viene mostrata nelle eventuali intestazioni/piè di pagina
  12.  
  13. \title[Anomaly Detection in Time Series with the Prophet Model]{\Large\bfseries Anomaly Detection in Time Series\\ with the Prophet Model}
  14. \subtitle{\normalfont\small Discussione relazione finale
  15. }
  16. % \subtitle{Discussione di tesi triennale in Statistica per le Tecnologie e le Scienze}
  17. \author[Giovanni Zedda]{Laureando: Giovanni Zedda (matricola 20828879)}
  18. \titlegraphic{\includegraphics[width=2cm]{logo-unipd2.png}}
  19. \institute[Università degli Studi di Padova]
  20. {  
  21.     \normalsize Università degli Studi di Padova \\
  22.     Dipartimento di Scienze Statistiche \\
  23.     \small Corso di Laurea Triennale in
  24.     Statistica per le Tecnologie e le Scienze % Your institution for the title page
  25. }
  26. \date[A.A. 2024/25]{\small Anno Accademico 2024/2025} % Date, can be changed to a custom date
  27.  
  28.  
  29. \begin{document}
  30. % Slide personalizzata del titolo
  31. \begin{frame}[label=cover, plain]
  32.     \centering
  33.   % Logo in alto
  34.   % Titolo in un box colorato
  35.   \begin{beamercolorbox}[rounded=true, shadow=true, center, wd=\textwidth]{title}
  36.    \usebeamerfont{title}%
  37.     {\color{white}\inserttitle}\\[0.2cm]
  38.    \usebeamerfont{subtitle}%
  39.     {\normalsize Discussione relazione finale}
  40.  \end{beamercolorbox}
  41.    \vspace{0.75em}
  42.    \includegraphics[width=0.2\textwidth]{logo-unipd2.png}
  43.  \vspace{0.75em}
  44.  
  45.   % Autore
  46.   {\large\textbf{Giovanni Zedda}} \\[1em]
  47.  {\small Corso di Laurea Triennale in Statistica per le Tecnologie e le Scienze} \\[0.2em]
  48.  {Dipartimento di Scienze Statistiche} \\[1em]
  49.  
  50.   % Relatori incolonnati
  51.   \begin{columns}[t]
  52.    \column{0.45\textwidth}
  53.    \raggedright
  54.    \textbf{Relatore}\\
  55.    Prof. Matteo Ceccarello
  56.  
  57.    \column{0.45\textwidth}
  58.     \raggedleft
  59.     %\textbf{Correlatore:}\\
  60.     %Prof. Nome Correlatore
  61.   \end{columns}
  62.  
  63.  \vfill
  64.  {\small A.A. 2024/25}
  65. \end{frame}
  66.  
  67. \begin{frame}{Sommario}
  68.     % Throughout your presentation, if you choose to use \section{} and \subsection{} commands, these will automatically be printed on this slide as an overview of your presentation
  69.     \tableofcontents
  70. \end{frame}
  71.  
  72. %------------------------------------------------
  73. \section[abbreviazione]{Statistica bayesiana}
  74. %------------------------------------------------
  75.  
  76. \begin{frame}{Due approcci alla statistica}
  77. \begin{columns}[t]
  78.    \column{0.45\textwidth}
  79.    \textbf{Approccio frequentista}
  80.    \begin{itemize}
  81.        \item La probabilità è un limite di una frequenza relativa.
  82.        \item \uline{Il parametro è ignoto, ma ha un unico valore.}
  83.        \item Stimatori, intervalli di confidenza e test statistici.
  84.        \item Massima verosimiglianza e altri metodi.
  85.    \end{itemize}
  86.    \column{0.45\textwidth}
  87.    \textbf{Approccio bayesiano}
  88.    \begin{itemize}
  89.        \item La probabilità è un grado di fiducia.
  90.        \item \uline{Il parametro è una variabile casuale.}
  91.        \item Intervalli \emph{di credibilità}.
  92.        \item No test statistici tradizionali.
  93.        \item Distribuzione \emph{a posteriori} del parametro con il teorema di Bayes.
  94.    \end{itemize}
  95.    
  96. \end{columns}
  97. \end{frame}
  98.  
  99. % ...
  100.  
  101. \end{document}
  102.  
Advertisement
Add Comment
Please, Sign In to add comment