talk.tex 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. \documentclass{beamer}
  2. \usetheme{poul}
  3. \usepackage[utf8]{inputenc}
  4. \usepackage[svgpath=images/]{svg}
  5. %Information to be included in the title page:
  6. \title{Backup and (possibly) Restore}
  7. \author{Andrea Gussoni}
  8. \institute{P.O.u.L.}
  9. \date{23 Marzo 2017}
  10. \titlegraphic{\includesvg[height=1.5cm]{logowhite}}
  11. \begin{document}
  12. \frame{\titlepage}
  13. \begin{frame}
  14. \frametitle{Why do we need backups?}
  15. Bad things can happen and do happen:
  16. \begin{itemize}
  17. \item You may drop your computer.
  18. \item The disk may be shaken during a train trip.
  19. \item The computer where you keep the only copy of your thesis
  20. may be stolen.
  21. \item Or after some time it may be simply age.
  22. \end{itemize}
  23. \end{frame}
  24. \begin{frame}
  25. \frametitle{What are backups?}
  26. \begin{block}{Definition}
  27. The copying and archiving of computer data so that it may be
  28. used to restore the original after a data loss event.
  29. \end{block}
  30. \end{frame}
  31. \begin{frame}
  32. \frametitle{What to backup?}
  33. It is important to distinguish what it is necessary to backup from what
  34. it is not.
  35. \end{frame}
  36. \end{document}