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
|
%%
%% An UIT Edition example
%%
%% 1st edition
%%
%% Example 01-01-2 on page 5.
%%
%% Copyright (C) 2012 Herbert Voss
%%
%% It may be distributed and/or modified under the conditions
%% of the LaTeX Project Public License, either version 1.3
%% of this license or (at your option) any later version.
%%
%% See http://www.latex-project.org/lppl.txt for details.
%%
%%
%% ====
% Show page(s) 1,3
%%
%%
\documentclass[landscape,rules]{exaseminar}
\pagestyle{empty}
\setlength\textwidth{172.40709pt}
% use **dvips -T 297mm,210mm <file>**!
\usepackage[utf8]{inputenc}
\usepackage[scaled]{helvet}
\def\FileDate{June 2002}
\def\FileInfoB{Backgrounds}
\def\FileVersion{1.0}
%\StartShownPreambleCommands
\documentclass{seminar}
\usepackage{sem-dem}% General utility macros
\HyperSetUp\hypersetup{pdfpagemode=UseOutlines}% Open the document with bookmarks shown
\newcommand\MySeminarOutlinePresentation{%
\SeminarOutlinePresentation{Where we are}{LightBlue}{RoyalBlue}{yellow}%
\SeminarHeader{\LARGE\HLe{Demonstration of \MakeLowercase{\FileInfoB}}}}
\VerbatimFootnotes % To allow verbatim material in footnotes
%\StopShownPreambleCommands
\begin{document}
\SeminarFirstSlide \SeminarListOfSlides
\renewcommand{\slidestretch}{1}% compress lines
\begin{slide}
\slideheading{Introduction}
\begin{dinglist}{\DingListSymbolA}
\item The \emph{full screen} backgrounds, which are the ones well-suited
for screen presentations, are managed by the
\Verb+\SeminarNewSlideFrameBackground+ and
\Verb+\SeminarSlideFrameBackground+ commands.\footnote{They are built on the
model of the \Verb[fontsize=\footnotesize]+\newslideframe+ and
\Verb[fontsize=\footnotesize]+\slideframe+ ones, which can't be used for
this goal (there is a design incompatibility in the management of the
slide headers).}
\item We can overlap several partial \emph{backgrounds} with the
`\textsf{fancybox}' package (using its \Verb+\boxput+ command), calling the
\Verb+\slideframe[*]+ command repeatedly (see the
\HLe{Seminar} documentation and FAQ). See examples on
slide~12 and in the file \href{file:sem-dem2.pdf}{sem-dem2.pdf}.
\item We show here several kinds of backgrounds:
\begin{dinglist}{\DingListSymbolB}\setlength{\labelwidth}{4mm}
\item \HLe{solid} backgrounds,
\item \HLe{gradient} backgrounds, using the \textsf{pst-grad} PSTricks package,
\item \HLe{gradient} backgrounds, using the \textsf{pst-slpe} PSTricks package,
\item \HLe{composite} backgrounds, based on PSTricks graphics (you can
obviously also use the others \AllTeX{} packages for algorithmic graphics),
\item backgrounds with \HLe{external images}.
\end{dinglist}
\end{dinglist}
\end{slide}
\end{document}
|