example.tex 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. \documentclass[aspectratio=169]{beamer}
  2. \usepackage[utf8]{inputenc}
  3. \usepackage{listings}
  4. \usepackage{minted}
  5. \usetheme{vu}
  6. \title{My title here}
  7. \subtitle{Name Surname}
  8. %\date{\today}
  9. \begin{document}
  10. \frame[plain]{\maketitle}
  11. \begin{frame}{Table of contents}
  12. \tableofcontents
  13. \end{frame}
  14. \section{Section title}
  15. \begin{frame}{One or two lines here are fine! Do your best to use meaningful titles}
  16. Ypu can use paragraphs or nested enumerations
  17. \begin{itemize}
  18. \item We have plenty bullet styles available!
  19. \begin{itemize}
  20. \item[$\circ$] And you can go as deep as yout want
  21. \begin{itemize}
  22. \item[$\blacksquare$] But do not abuse this feature, otherwise you will lose clarity
  23. \end{itemize}
  24. \end{itemize}
  25. \item And of course do not push too much text in a single slides, people hate reading :)
  26. \end{itemize}
  27. \end{frame}
  28. \begin{frame}{Pros, cons or short concise lists}
  29. \begin{columns}[T] % align columns
  30. \begin{column}{.48\textwidth}
  31. Pros
  32. \begin{itemize}
  33. \item Generic good design comment
  34. \item Second generic good written comment
  35. \item Generic good charts
  36. \item Whatever
  37. \end{itemize}
  38. \end{column}
  39. \hfill
  40. \begin{column}{.48\textwidth}
  41. Cons
  42. \begin{itemize}
  43. \item Product pitch, not research
  44. \item Closed source
  45. \item Manipulated benchmarks
  46. \item I do not like the authors
  47. \end{itemize}
  48. \end{column}
  49. \end{columns}
  50. \end{frame}
  51. \begin{frame}[fragile]{This is a non-highlighted code sample}
  52. \begin{lstlisting}
  53. fn fib (n: i32) -> i32 {
  54. if n <= 0 {
  55. return 0;
  56. } else if n== 1{
  57. return 1;
  58. } else {
  59. return fib (n-1) + fib(n-2);
  60. }
  61. }
  62. \end{lstlisting}
  63. \end{frame}
  64. \begin{frame}[fragile]{This is a highlighted code sample}
  65. \begin{minted}{rust}
  66. fn fib (n: i32) -> i32 {
  67. if n <= 0 {
  68. return 0;
  69. } else if n== 1{
  70. return 1;
  71. } else {
  72. return fib (n-1) + fib(n-2);
  73. }
  74. }
  75. \end{minted}
  76. \end{frame}
  77. \begin{frame}{This is an example enumeration with math!}
  78. \begin{enumerate}
  79. \item Here you can see an enumeration
  80. \item It has items
  81. \item The items are numbered
  82. \end{enumerate}
  83. \[
  84. f(x)=\sum_{i=0}^\infty \frac{f^{(i)}(x_0)}{i!}(x-x_0)^i
  85. \]
  86. \end{frame}
  87. \begin{frame}{Put your not funny quote here}
  88. \begin{quote}[Oscar Wilde]
  89. I have nothing to declare except my genius.\end{quote}
  90. \end{frame}
  91. \begin{frame}{Example slide with Title}
  92. \begin{example}
  93. The demonstration is flawed.
  94. \end{example}
  95. \begin{solution}
  96. Quit your researcher job.
  97. \end{solution}
  98. \footnotetext[1]{A test footnote in the first column}
  99. \end{frame}
  100. \begin{frame}[plain]{Plain frame with title}
  101. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Ut purus elit, vestibulum ut,
  102. placerat ac, adipiscing vitae, felis. Curabitur dictum gravida mauris. Nam arcu libero,
  103. nonummy eget, consectetuer id, vulputate a, magna. Donec vehicula augue eu neque.
  104. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis
  105. egestas. Mauris ut leo. Cras viverra metus rhoncus sem. Nulla et lectus vestibulum
  106. urna fringilla ultrices. Phasellus eu tellus sit amet tortor gravida placerat. Integer
  107. sapien est, iaculis in, pretium quis, viverra ac, nunc. Praesent eget sem vel leo ultrices
  108. bibendum. Aenean faucibus. Morbi dolor nulla, malesuada eu, pulvinar at, mollis ac,
  109. nulla. Curabitur auctor semper nulla. Donec varius orci eget risus. Duis nibh mi,
  110. congue eu, accumsan eleifend, sagittis quis, diam. Duis eget orci sit amet orci
  111. dignissim rutrum.
  112. \end{frame}
  113. \section{Questions?}
  114. \begin{frame}{Keep in touch!}
  115. Add some other text here with your contact
  116. \end{frame}
  117. \end{document}