summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/context/third/simpleslides/solutions/generic-talk-15min-45min.tex
blob: 520c52afb87045a9d3dc048529e0e899d1bcd700 (plain)
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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
% This file is a solution template for:

% - Giving a talk on some subject.
% - The talk is between 15min and 45min long.

% This is adapted from the example by Till Tantau <tantau@users.sourceforge.net>
% included as part of the beamer package in LaTeX
%
% In principle, this file can be redistributed and/or modified under
% the terms of the GNU Public License, version 2.
%
% However, this file is supposed to be a template to be modified
% for your own needs. For this reason, if you use this file as a
% template and not specifically distribute it as part of a another
% package/program, the author grants the extra permission to freely
% copy and  modify this file as you see fit and even to delete this
% copyright notice. 

\usemodule
  [simpleslides]
  [%%%%%%%%%%%%%%%%%%%%%
   % Choose a style
  %%%%%%%%%%%%%%%%%%%%%%
    style=BigNumber,            % color=blue|red
  % style=BottomSquares,
  % style=Boxed,
  % style=Ellipse,
  % style=Embossed,
  % style=Framed,               % alternative=square|stripe
  % style=FramedTitle,
  % style=HorizontalStripes,    % color=blue|green|red
  % style=NarrowStripes,        % color=blue|green|red
  % style=RainbowStripe,
  % style=Rounded,
  % style=Shaded,               % color=blue|green|bluered
  % style=SideSquares,
  % style=Split,
  % style=Sunrise,
  % style=Swoosh,
  % style=ThickStripes,
  %%%%%%%%%%%%%%%%%%%%%%%
   % Choose a font
  %%%%%%%%%%%%%%%%%%%%%%%
    font=Bookman,
  % font=Chancery,
  % font=Gothic,
  % font=Helevetica,
  % font=LatinModern,
  % font=LatinModernSans,
  % font=Palatino,
  % font=Schoolbook,
  % font=Times,
  %%%%%%%%%%%%%%%%%%%%%%%%%
    % Choose a font size
  %%%%%%%%%%%%%%%%%%%%%%%%%
    size=17pt, % Default is 17pt
  %%%%%%%%%%%%%%%%%%%%%%%%%
    % Choose a color.
    % Only a few styles support color
  %%%%%%%%%%%%%%%%%%%%%%%%%
    color=blue, % supported by:
    % BigNumber, HorizontalStripes, NarrowStripes, Shaded
  % color=red, % supported by:
    % BigNumber, HorizontalStripes, NarrowStripes
  % color=green, % supported by:
    % HorizontalStripes, NarrowStripes, Shaded
  %%%%%%%%%%%%%%%%%%%%%%%%%
    % Choose a alternative.
    % Only one style support alternative
  %%%%%%%%%%%%%%%%%%%%%%%%%
    alternative=square, % supported by:
    % Framed
  % alternative=stripe, % supported by:
    % Framed
  ]



\setupTitle
  [title={Presentation Title},
   author={F.~Author, S.~Another},
   date={Date / Occasion}]

% In order to use sample images distributed with ConTeXt
\setupexternalfigures[location={local,global,default}] 

\starttext

\placeTitle

% Since this a solution template for a generic talk, very little can
% be said about how it should be structured. However, the talk length
% of between 15min and 45min and the theme suggest that you stick to
% the following rules:  

% - Exactly two or three sections (other than the summary).
% - At *most* three subsections per section.
% - Talk about 30s to 2min per slide. So there should be between about
%   15 and 30 slides, all told.


\SlideTitle{Make Titles Informative}
% - A title should summarize the slide in an understandable fashion
%   for anyone how does not follow everything on the slide itself.

\startitemize
  \item Use bullets points when appropriate.
  \item Use pictures when possible
  \item Do not put too much information on one slide
\stopitemize

% You can include full slide pictures. There are some helper commands to
% decorate the picture. 

% To include a full slide picute.
\IncludePicture
  [horizontal]
  [cow] % Name of the image
  {A Dutch Cow} % Title of the slide

% We can decorate the picture using circles, arrows, and focus. In order to
% determine where to draw the decorations, it is helpful to draw a grid.

\IncludePicture
  [horizontal]
  [cow] % Name of the image
  [highlight=yes,
   grid=yes]
  {A Dutch Cow with a grid} % Title of the slide

% Sometimes you need a finer grip to fine tune the exact position
\IncludePicture
  [horizontal]
  [cow] % Name of the image
  [highlight=yes,
   grid=yes,
   steps=5, % Each grid block is broken into these many parts.
   subgrid=yes]
  {A Dutch Cow with a fine grid} % Title of the slide

% Now lets try to draw a circle around the cow's head
\IncludePicture
  [horizontal]
  [cow] % Name of the image
  [highlight=yes,
   grid=yes,
   subgrid=yes,
   alternative=circle,
   color=orange,
   x=1.4,
   y=8.2,
   xscale=1.5,
   yscale=couple, % To ensure that we get a circle and not an ellipse
   shadow=bottomleft]
  {The head of a dutch cow} % Title of the slide


% Now that we have found the correct location to place the circle, we can remove
% the helper grid.
\IncludePicture
  [horizontal]
  [cow] % Name of the image
  [highlight=yes,
   grid=no,
   subgrid=no,
   alternative=circle,
   color=orange,
   x=1.4,
   y=8.2,
   xscale=1.5,
   yscale=couple, % To ensure that we get a circle
   shadow=bottomleft]
   {The head of a dutch cow} % Title of the slide

% We can also draw arrows.
\IncludePicture
  [horizontal]
  [cow] % Name of the image
  [highlight=yes,
   grid=no,
   subgrid=no,
   alternative=arrow,
   color=orange,
   x=0.4,
   y=6.8,
   direction=-90, 
   length=3cm,
   shadow=topright] % The shadow direction gets rotated with the arrow
   {The mouth of a dutch cow} % Title of the slide

% We can also highlight specific parts of the picture
\IncludePicture
  [horizontal]
  [cow] % Name of the image
  [highlight=yes,
   grid=no,
   subgrid=no,
   alternative=focus,
   color=orange,
   x=1.4,
   y=8.2,
   xscale=1.5,
   yscale=couple, % To ensure that we get a circle
   opacity=0.5]
   {The head of a dutch cow} % Title of the slide

% You can also include a picture with some text along side it.

\IncludePicture
  [vertical]
  [mill] % Name of the image
  {The windmills are an example of a green energy source.} % Slide title

\SlideTitle{Summary}

\startitemize
  \item The {\em first main message} of your talk in one or two lines.
  \item The {\em second main message} of your talk in one or two lines.
  \item Perhaps a {\em third message}, but not more than that.
\stopitemize

\stoptext