blob: 78f31f85f9c7d264e0db427238e31e0d1df3ceeb (
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
|
% Save file as: ESLIDES-EXAMPLE.TEX Source: FILESERV@SHSU.BITNET
%----------------------(begin of file example.tex)-----------------------------
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %
% Text of the two example slides for the article: %
% %
% An Easy Way Making Slides With LaTeX %
% %
% by %
% %
% Georg Denk %
% Mathematisches Institut %
% Technische Universitaet Muenchen %
% Arcisstr. 21 %
% D-8000 Muenchen 2 %
% West-Germany %
% %
% E-mail: T1111AA@DM0LRZ01 at Bitnet %
% %
% %
% Please do NOT produce the empty titlepage! %
% %
% %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\documentstyle[titlepage,eslides]{article}
% titlepage used, because first page
% should have a running head
\magnification{1728}
\renewcommand{\conference}{TUGboat 1990}
\begin{document}
\pagestyle{myslide}
\markright{An Easy Way Making Slides With
\LaTeX}
\begin{titlepage}
\mbox{}
\end{titlepage}
% see p. 162 of Lamport's LaTeX book,
% the first page should have a
% running head
\begin{slide}
\begin{center}
\bf
A Short-Cut to Your Slides:
\end{center}
\begin{itemize}
\item take your finished
{\tt article} file
\item add the style option
{\tt eslides}
\item initialize
\verb#\magnification#
and
\verb#\conference#
\item put some
\verb#\begin{slide}#s
and
\verb#\end{slide}#s
around the parts you
want to present
\item comment out the rest
\item run \LaTeX
\end{itemize}
\end{slide}
\begin{remark}
This is a note to myself,
perhaps reminding me of
what I wanted to say here,
e.~g.\ that this note is
stolen from Lamport's
\LaTeX\ book.
\end{remark}
\end{document}
%------------------------(end of file)----------------------------------------
|