\documentclass[aspectratio=169]{beamer} \usepackage[utf8]{inputenc} \usepackage{listings} \usepackage{minted} \usetheme{vu} \title{My title here} \subtitle{Name Surname} %\date{\today} \begin{document} \frame[plain]{\maketitle} \begin{frame}{Table of contents} \tableofcontents \end{frame} \section{Section title} \begin{frame}{One or two lines here are fine! Do your best to use meaningful titles} Ypu can use paragraphs or nested enumerations \begin{itemize} \item We have plenty bullet styles available! \begin{itemize} \item[$\circ$] And you can go as deep as yout want \begin{itemize} \item[$\blacksquare$] But do not abuse this feature, otherwise you will lose clarity \end{itemize} \end{itemize} \item And of course do not push too much text in a single slides, people hate reading :) \end{itemize} \end{frame} \begin{frame}{Pros, cons or short concise lists} \begin{columns}[T] % align columns \begin{column}{.48\textwidth} Pros \begin{itemize} \item Generic good design comment \item Second generic good written comment \item Generic good charts \item Whatever \end{itemize} \end{column} \hfill \begin{column}{.48\textwidth} Cons \begin{itemize} \item Product pitch, not research \item Closed source \item Manipulated benchmarks \item I do not like the authors \end{itemize} \end{column} \end{columns} \end{frame} \begin{frame}[fragile]{This is a non-highlighted code sample} \begin{lstlisting} fn fib (n: i32) -> i32 { if n <= 0 { return 0; } else if n== 1{ return 1; } else { return fib (n-1) + fib(n-2); } } \end{lstlisting} \end{frame} \begin{frame}[fragile]{This is a highlighted code sample} \begin{minted}{rust} fn fib (n: i32) -> i32 { if n <= 0 { return 0; } else if n== 1{ return 1; } else { return fib (n-1) + fib(n-2); } } \end{minted} \end{frame} \begin{frame}{This is an example enumeration with math!} \begin{enumerate} \item Here you can see an enumeration \item It has items \item The items are numbered \end{enumerate} \[ f(x)=\sum_{i=0}^\infty \frac{f^{(i)}(x_0)}{i!}(x-x_0)^i \] \end{frame} \begin{frame}{Put your not funny quote here} \begin{quote}[Oscar Wilde] I have nothing to declare except my genius.\end{quote} \end{frame} \begin{frame}{Example slide with Title} \begin{example} The demonstration is flawed. \end{example} \begin{solution} Quit your researcher job. \end{solution} \footnotetext[1]{A test footnote in the first column} \end{frame} \begin{frame}[plain]{Plain frame with title} Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Ut purus elit, vestibulum ut, placerat ac, adipiscing vitae, felis. Curabitur dictum gravida mauris. Nam arcu libero, nonummy eget, consectetuer id, vulputate a, magna. Donec vehicula augue eu neque. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Mauris ut leo. Cras viverra metus rhoncus sem. Nulla et lectus vestibulum urna fringilla ultrices. Phasellus eu tellus sit amet tortor gravida placerat. Integer sapien est, iaculis in, pretium quis, viverra ac, nunc. Praesent eget sem vel leo ultrices bibendum. Aenean faucibus. Morbi dolor nulla, malesuada eu, pulvinar at, mollis ac, nulla. Curabitur auctor semper nulla. Donec varius orci eget risus. Duis nibh mi, congue eu, accumsan eleifend, sagittis quis, diam. Duis eget orci sit amet orci dignissim rutrum. \end{frame} \section{Questions?} \begin{frame}{Keep in touch!} Add some other text here with your contact \end{frame} \end{document}