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
|
% $Header$
\documentclass{beamer}
% This file is a solution template for:
% - Introducing another speaker.
% - Talk length is about 2min.
% - Style is ornate.
% Copyright 2004 by Till Tantau <tantau@users.sourceforge.net>.
%
% 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.
\setbeamertemplate{background canvas}[vertical shading][bottom=white,top=structure.fg!25]
% or whatever
\usetheme{Warsaw}
\setbeamertemplate{headline}{}
\setbeamertemplate{footline}{}
\setbeamersize{text margin left=0.5cm}
\usepackage[english]{babel}
% or whatever
\usepackage[latin1]{inputenc}
% or whatever
\usepackage{times}
\usepackage[T1]{fontenc}
% Or whatever. Note that the encoding and the font should match. If T1
% does not look nice, try deleting the line with the fontenc.
\begin{document}
\begin{frame}{Speaker's Name}{About Our Next Speaker}
\begin{itemize}
\item
Current affiliation of Speaker's Name
% Examples:
\begin{itemize}
\item
Professor of mathematics, University of Wherever.
\item
Junior partner at company X.
\item
Speaker for organization/project X.
\end{itemize}
\item
Experience and achievements
% Optional. Use this if it is appropriate to slightly flatter the
% speaker, for example if the speaker has been invited.
% Using subitems, list things that make the speaker look
% interesting and competent.
% Examples:
\begin{itemize}
\item
Academic degree, but only if appropriate
\item
Current and/or previous positions, possibly with dates
\item
Publications (possibly just number of publications)
\item
Awards, prizes
\end{itemize}
\item
Concerning today's talk
% Optional. Use this to point out specific experiences/knowledge
% of the speaker that are important for the talk and that do not
% follow from the above.
% Examples:
\begin{itemize}
\item
Expert who has worked in the field/project for X month/years.
\item
Will present his/her/group's/company's research on the subject.
\item
Will summarize project report or current project status.
\end{itemize}
\end{itemize}
\end{frame}
\end{document}
|