-
Notifications
You must be signed in to change notification settings - Fork 22
/
ExamplePresentation.tex
53 lines (46 loc) · 1.68 KB
/
ExamplePresentation.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
\documentclass[11pt]{beamer} % mathserif for normal math fonts.
\usefonttheme[onlymath]{serif}
\usepackage[utf8]{inputenc}
\usepackage[swedish,english]{babel}
\usepackage{amsmath,mathtools}
\usepackage{calc}
\usepackage[T1]{fontenc}
% The Chalmers theme:
\usetheme[titleflower=true]{chalmers} % titleflower = true or false
\title{Some long title about stuff}
\subtitle{And something more} % optional
\author[Some Author et al.]{Some Author\and Another Author} % [short author (optional)]{many authors}
\institute{Chalmers University of Technology}
\titlepageextra{Some conference} % Optional extra info, appears before date on title page
\footer{\insertshortauthor\ Some conference} % optional, manually sets footer (default is short author)
%\footer{Something completely different} % but it can of course be anything.
\titlepagelogofile{figures/Avancez_black} % File name to the file you want to include.
%\titlepagelogo{\tikz{\draw(0,0) circle (1);}} % or draw anything for a logo
\begin{document}
%\setlength{\footertextwidth}{0.5\paperwidth} % You might need to adjust this if the text doesn't fit well.
\section{Title page} % Sections are shown at the bottom left. There is also links in many pdf-readers
\begin{frame}[plain]
\titlepage
\end{frame}
\section{Another section}
\begin{frame}
\frametitle{First title}
\framesubtitle{With subtitle}
Here one can write anything
\begin{itemize}
\item And also some items
\item<1-> And more
\item<2-> And yet more
\end{itemize}
\end{frame}
\subsection{With a subsection}
\begin{frame}
\frametitle{Another title}
Here one can write anything
\begin{itemize}
\item And also some items
\item And more
\item And yet more
\end{itemize}
\end{frame}
\end{document}