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
|
%%
%% Ein DANTE-Edition Beispiel
%%
%% Beispiel 01-01-2 auf Seite 3.
%%
%% Copyright (C) 2010 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]{seminar}
\pagestyle{empty}
\setcounter{page}{6}
% =pdfcrop= anwenden!
\usepackage[utf8]{inputenc}
\usepackage[scaled]{helvet}
\def\FileDate{June 2002}
\def\FileInfoB{Backgrounds}
\def\FileVersion{1.0}
\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 veratim material in footnotes
\begin{document}
\SeminarFirstSlide \SeminarListOfSlides
\renewcommand{\slidestretch}{1}% Komprimieren der Zeilen
\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+ macros.\footnote{They are built on the
model of the \Verb[fontsize=\footnotesize]+\newslideframe+ and
\Verb[fontsize=\footnotesize]+\slideframe+ ones, which cannot 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 it \Verb+\boxput+ macro), calling the
\Verb+\slideframe[*]+ macro, eventually several times (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 rather use the others \AllTeX{} packages for algorithmic graphics),
\item backgrounds with \HLe{external images}.
\end{dinglist}
\end{dinglist}
\end{slide}
\end{document}
|