-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathslides.tex
142 lines (111 loc) · 4.37 KB
/
slides.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
%-------------------------------------------------------------------------------
% PREAMBLE
%-------------------------------------------------------------------------------
\documentclass[usenames,dvipsnames,svgnames,9pt]{beamer}
%
% This theme uses TIKZ: compile twice with PDFLaTeX or LuaLaTeX.
%
% Options:
% - [clean]: clean slides, i.e. logos and footbar are removed
% - [kth]: footbar style inspierd to the official KTH template
% - [nicewave]: a different style of wave is used (not approved by FLOW)
%
\usetheme{flow}
\usepackage{hyperref,graphicx,lmodern}
\usepackage[utf8]{inputenc}
\graphicspath{{imgs/}}
%-------------------------------------------------------------------------------
% TITLE PAGE
%-------------------------------------------------------------------------------
\title[footline~title] % Short title used in footline
{
A long title as a test % Long title
}
\author[P.~Author] % Presenting author in short form used in footline
{
\underline{First Author}$^1$, Second Author$^2$ and Third Author$^1$
}
% - Give the names in the same order as the appear in the paper.
% - Underline the presenting author.
\institute[unused]
{
$^1$Linn\'e FLOW Centre, KTH Mechanics\\
$^2$DAST, Politecnico di Milano
}
% Keep it simple, no one is interested in your street address.
% University logo(s)
\logot{\includegraphics[width=.105\paperwidth]{KTH-logo}} % Top logo
\logob{\includegraphics[width=.105\paperwidth]{Flow-logo}} % Bottom logo
\logoc[{\includegraphics[width=.090\paperwidth]{PoliMi-logo}}] % Corner logo in headers (optional)
{\includegraphics[width=.105\paperwidth]{PoliMi-logo}} % Corner logo
%
% Cover image: \cvrimg{x position}{y position}{cover image}
\cvrimg{.77}{.75}{\includegraphics[width=.4\paperwidth]{cover-image}}
\date[unused]
{Conference name -- date}
% - Either use conference name or its abbreviation.
% - Not really informative to the audience, more for people (including
% yourself) who are reading the slides online
% Uncomment this if you want the table of contents to pop up at the
% beginning of each section (you can do the same with subsections):
%\AtBeginSection[]
%{
% \begin{frame}<beamer>{Outline}
% \tableofcontents[currentsection]
% \end{frame} \addtocounter{framenumber}{-1}
%}
% If you wish to uncover everything in a step-wise fashion, uncomment
% the following command:
% \beamerdefaultoverlayspecification{<+->}
% If you wish to compile only part of the presentation, uncomment the
% following and specify here the labels of the frames you wish to
% include specify. Labels should be specified in the beginning of each
% frame as ``\begin{frame}[label=frame-name]{Frame title}''.
% \includeonlyframes{title-frame}
\begin{document}
\titleframe % Print the title as the first slide
%-------------------------------------------------------------------------------
% PRESENTATION SLIDES
%-------------------------------------------------------------------------------
\section{Section title}
\begin{frame}[t]{Slide title}
{and subtitle}
Something to show the textwidth of this Linn\'e FLOW Centre beamer template.
\begin{itemize}
\item This is an item.
\item This is also an item.
\item ...
\end{itemize}
\end{frame}
\begin{frame}[t]{Frame coordinate system}
{absolute positioning of images and sketches}
%
% Coordinate system for the page:
%
% -------------------------
% |(0,1) (1,1)|
% | |
% | (0.5,0.5) |
% | |
% |(0,0) (1,0)|
% -------------------------
%
% invoke by:
% \node[nodeOptions] (nodeName) at (page cs:xNode,yNode) {nodeContents};
\begin{tikzpicture}[remember picture,overlay]
\node (sw) at (page cs:0,0) {+}; % bottom left
\node (se) at (page cs:1,0) {+}; % bottom right
\node (ne) at (page cs:1,1) {+}; % top right
\node (nw) at (page cs:0,1) {+}; % top left
\draw (sw) -- (se) -- (ne) -- (nw) -- cycle; % outer rectangle
\draw (sw) -- (ne); % diagonals
\draw (se) -- (nw); % diagonals
\node (ce) at (page cs:0.5,0.5) {+}; % center
\node (image) at (page cs:0.75,0.75) {%
\includegraphics[width=.105\paperwidth]{Flow-logo}%
};
\end{tikzpicture}
\end{frame}
%-------------------------------------------------------------------------------
\thanksframe \label{final-frame}
\end{document}