demonstration of overlays (i) · demonstration of overlays (i) 3 1 – introduction ☞ overlays...

97
Demonstration of overlays (i) 1 Seminar demonstration files Overlays (I) Denis Girou June 2002 With Acroread, CTRL-L switch between full screen and window mode Seminar demonstration files – Overlays (I) Version 1.0 – June 2002 Denis Girou

Upload: others

Post on 23-Feb-2020

15 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 1

Seminar demonstration files

Overlays (I)

Denis Girou

June 2002

With Acroread, CTRL-L switchbetween full screen and window mode

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 2: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 2

1 – Introduction . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3

2 – Cumulative overlays . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8

3 – Cumulative overlays with PSTricks nodes . . . . . . . . . . . . . . . . . . . . . . . . . . . 16

4 – Progressive overlays . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 17

5 – Progressive overlays with PSTricks nodes . . . . . . . . . . . . . . . . . . . . . . . . . . 18

6 – External files inclusion . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 19

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 3: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 3

1 – Introduction

☞ Overlays are a key feature for interactive screen presentations

☞ Seminar implement since it beginning a powerful mechanism for the management of overlays (in fact,

it is only an encapsulation of the general PSTricks mechanism for overlays, implemented in the

PostScript language – but such a mechanism is really useful only for slides!)

☞ It was written to be able to generate several plastic slides which will be superimposed on a projector.

Nevertheless, exactly the same mechanism work too for screen oriented presentations.

☞ The overlays also allow to compose animated graphics, if the PDF file viewver allow to show the slides

automatically (as Acrobat Reader does) – see sem-dem6.pdf

☞ The only change that we made concern the total number of overlays allowed on the same slide: we

increase the limit from 10, which is clearly not enough for screen presentations, and specially for

animated graphics, to 676 (262)

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 4: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 4

☞ The key point is to have special macros for the two kinds of overlays which are important: cumulative

and progressive ones:

➳ \SeminarCumulativeOverlays will define cumulative overlays, with each new one added to

the preceding (due to the PSTricks implementation of overlaysa, this way doesn’t allow to use

nodes inside the overlays: rather use the \SeminarAltCumulativeOverlays macro in

these cases),

➳ \SeminarProgressiveOverlays will define progressive overlays, where the first slide is kept

but each new one will replace the preceding (for the same reason, we must rather use the

\SeminarAltProgressiveOverlays if PSTricks nodes are used inside the overlays),

➳ It is possible (but not very user friendly...) to program other behavior, if needed, and to keep some

overlays permanently when they have appeared, but not the following ones. For this, you must

redefine the PSTricks \pst@initoverlay macro. See the example of the moving objects in a

table in the animated graphics demonstration file (you must obviously look at the source code).

aFor technical explanations, see the pages 243–244 in Timothy VAN ZANDT and Denis GIROU,

Inside PSTricks, TUGboat, Volume 15, Number 3, September 1994, pages 239–246, available on

http://www.tug.org/TUGboat/Articles/tb15-3/tb44tvz.ps

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 5: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 5

☞ We also add a simple macro \SeminarNextOverlay macro, which is only the uasage of the

standard overlay environment, with an automatic management of the counter

☞ We can show the pieces of a slice in any order, just numbering accordingly the overlays, (see the

example on slide 9), but this is also easy, for instance, to use the simple macro

\SeminarItemInOverlay which redefine the \item macro of the various lists environments, to

automatically have each one on the next overlay (see the example on slide 10)

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 6: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 6

☞ As usual with (LA)TEX, take care to spurious blanks, which are one of the most common pitfalls in some

circumstances. Always end the overlay environments with a percent sign, %, to not introduce an

unwanted blank and change the position of the material formatted in the next overlays:

1 \begin{overlay}{3}2 ...3 \end{overlay}%4

5 ...6

7 {\overlay{6}%8 ...}%9

10 ...11

12 \SeminarNextOverlay{...}%

☞ To show not only the slide number but also the overlay number, use the page counter rather than the

slide one (see the example on slide 10 in the PDF file):

1 \fancyhead[R]{\thepage}

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 7: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 7

☞ Obviously, we can also play with the transitions seen elsewhere (sem-dem2.pdf) when showing the

overlays

☞ Another important point is of course to suppress all the overlay mechanism for the paper version (this

is what the \SeminarPaperVersion macro does, just inhibiting them with the

\overlaysfalse macro)

☞ From the usage point of view, the important thing is to define the overlays inside a slide and not as

several consecutive slides. Specially, this will allowed to generate a coherent paper version without

trouble: as overlays are deactivated in the paper versions, we will simply got the cumulative result. For

progressive overlays, this will be the same. But if we want to have, in the paper versions, only one

state, we have to introduce a test. See examples in the demonstration file for animated graphics

(which are based on overlays) on sem-dem6.pdf

☞ In some cases, it is not realistic to generate the overlays inside the same slide. A such special case

occur when we want to build an animated graphic with a lot of external files. This would be prohibitive,

in compilation time and/or size of the resulting file. For an illustration of such problem, see too the file

sem-dem6.pdf

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 8: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 8

End of slide

2 – Cumulative overlays

How to solve this problem?

☞ First, keep quiet

☞ Second, analyze carefully (I repeat –again and again and again and again and again and again and

again and again– carefully) the situation:

➳ what do you want yourself?

➳ what are the interests of other people involved?

☞ Generally, just choose to do nothing...

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 9: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 8

End of slide

2 – Cumulative overlays

How to solve this problem?

☞ First, keep quiet

☞ Second, analyze carefully (I repeat –again and again and again and again and again and again and

again and again– carefully) the situation:

➳ what do you want yourself?

➳ what are the interests of other people involved?

☞ Generally, just choose to do nothing...

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 10: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 8

End of slide

2 – Cumulative overlays

How to solve this problem?

☞ First, keep quiet

☞ Second, analyze carefully (I repeat –again and again and again and again and again and again and

again and again– carefully) the situation:

➳ what do you want yourself?

➳ what are the interests of other people involved?

☞ Generally, just choose to do nothing...

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 11: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 8

End of slide

2 – Cumulative overlays

How to solve this problem?

☞ First, keep quiet

☞ Second, analyze carefully

(I repeat –again and again and again and again and again and again and

again and again– carefully)

the situation:

➳ what do you want yourself?

➳ what are the interests of other people involved?

☞ Generally, just choose to do nothing...

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 12: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 8

End of slide

2 – Cumulative overlays

How to solve this problem?

☞ First, keep quiet

☞ Second, analyze carefully (I repeat

–again and again and again and again and again and again and

again and again–

carefully) the situation:

➳ what do you want yourself?

➳ what are the interests of other people involved?

☞ Generally, just choose to do nothing...

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 13: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 8

End of slide

2 – Cumulative overlays

How to solve this problem?

☞ First, keep quiet

☞ Second, analyze carefully (I repeat –again and again and again and again and again and again and

again and again– carefully) the situation:

➳ what do you want yourself?

➳ what are the interests of other people involved?

☞ Generally, just choose to do nothing...

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 14: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 8

End of slide

2 – Cumulative overlays

How to solve this problem?

☞ First, keep quiet

☞ Second, analyze carefully (I repeat –again and again and again and again and again and again and

again and again– carefully) the situation:

➳ what do you want yourself?

➳ what are the interests of other people involved?

☞ Generally, just choose to do nothing...

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 15: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 9

End of slide

RESULTS

The winner is:

Caroline

The second is:

Jane

The third is:

Mary

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 16: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 9

End of slide

RESULTS

The winner is:

Caroline

The second is:

Jane

The third is: Mary

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 17: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 9

End of slide

RESULTS

The winner is:

Caroline

The second is: Jane

The third is: Mary

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 18: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 9

End of slide

RESULTS

The winner is: Caroline

The second is: Jane

The third is: Mary

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 19: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 10

End of slide

Using the \SeminarItemInOverlay macro as explained earlier, we can have each entry of the lists init own overlay.

➠ Jean RACINE:

➛ Andromaque (1667),

➛ Les Plaideurs (1668),

➛ Britannicus (1669),

➛ Berenice (1670),

➛ Bajazet (1672),

➛ Mithridate (1673),

➛ Iphigenie (1674),

➛ Phedre (1677).

➠ Pierre CORNEILLE:

➛ Le Cid (1637),

➛ Horace (1640),

➛ Cinna (1641),

➛ etc.

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 20: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 10-a

End of slide

Using the \SeminarItemInOverlay macro as explained earlier, we can have each entry of the lists init own overlay.

➠ Jean RACINE:

➛ Andromaque (1667),

➛ Les Plaideurs (1668),

➛ Britannicus (1669),

➛ Berenice (1670),

➛ Bajazet (1672),

➛ Mithridate (1673),

➛ Iphigenie (1674),

➛ Phedre (1677).

➠ Pierre CORNEILLE:

➛ Le Cid (1637),

➛ Horace (1640),

➛ Cinna (1641),

➛ etc.

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 21: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 10-b

End of slide

Using the \SeminarItemInOverlay macro as explained earlier, we can have each entry of the lists init own overlay.

➠ Jean RACINE:

➛ Andromaque (1667),

➛ Les Plaideurs (1668),

➛ Britannicus (1669),

➛ Berenice (1670),

➛ Bajazet (1672),

➛ Mithridate (1673),

➛ Iphigenie (1674),

➛ Phedre (1677).

➠ Pierre CORNEILLE:

➛ Le Cid (1637),

➛ Horace (1640),

➛ Cinna (1641),

➛ etc.

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 22: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 10-c

End of slide

Using the \SeminarItemInOverlay macro as explained earlier, we can have each entry of the lists init own overlay.

➠ Jean RACINE:

➛ Andromaque (1667),

➛ Les Plaideurs (1668),

➛ Britannicus (1669),

➛ Berenice (1670),

➛ Bajazet (1672),

➛ Mithridate (1673),

➛ Iphigenie (1674),

➛ Phedre (1677).

➠ Pierre CORNEILLE:

➛ Le Cid (1637),

➛ Horace (1640),

➛ Cinna (1641),

➛ etc.

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 23: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 10-d

End of slide

Using the \SeminarItemInOverlay macro as explained earlier, we can have each entry of the lists init own overlay.

➠ Jean RACINE:

➛ Andromaque (1667),

➛ Les Plaideurs (1668),

➛ Britannicus (1669),

➛ Berenice (1670),

➛ Bajazet (1672),

➛ Mithridate (1673),

➛ Iphigenie (1674),

➛ Phedre (1677).

➠ Pierre CORNEILLE:

➛ Le Cid (1637),

➛ Horace (1640),

➛ Cinna (1641),

➛ etc.

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 24: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 10-e

End of slide

Using the \SeminarItemInOverlay macro as explained earlier, we can have each entry of the lists init own overlay.

➠ Jean RACINE:

➛ Andromaque (1667),

➛ Les Plaideurs (1668),

➛ Britannicus (1669),

➛ Berenice (1670),

➛ Bajazet (1672),

➛ Mithridate (1673),

➛ Iphigenie (1674),

➛ Phedre (1677).

➠ Pierre CORNEILLE:

➛ Le Cid (1637),

➛ Horace (1640),

➛ Cinna (1641),

➛ etc.

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 25: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 10-f

End of slide

Using the \SeminarItemInOverlay macro as explained earlier, we can have each entry of the lists init own overlay.

➠ Jean RACINE:

➛ Andromaque (1667),

➛ Les Plaideurs (1668),

➛ Britannicus (1669),

➛ Berenice (1670),

➛ Bajazet (1672),

➛ Mithridate (1673),

➛ Iphigenie (1674),

➛ Phedre (1677).

➠ Pierre CORNEILLE:

➛ Le Cid (1637),

➛ Horace (1640),

➛ Cinna (1641),

➛ etc.

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 26: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 10-g

End of slide

Using the \SeminarItemInOverlay macro as explained earlier, we can have each entry of the lists init own overlay.

➠ Jean RACINE:

➛ Andromaque (1667),

➛ Les Plaideurs (1668),

➛ Britannicus (1669),

➛ Berenice (1670),

➛ Bajazet (1672),

➛ Mithridate (1673),

➛ Iphigenie (1674),

➛ Phedre (1677).

➠ Pierre CORNEILLE:

➛ Le Cid (1637),

➛ Horace (1640),

➛ Cinna (1641),

➛ etc.

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 27: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 10-h

End of slide

Using the \SeminarItemInOverlay macro as explained earlier, we can have each entry of the lists init own overlay.

➠ Jean RACINE:

➛ Andromaque (1667),

➛ Les Plaideurs (1668),

➛ Britannicus (1669),

➛ Berenice (1670),

➛ Bajazet (1672),

➛ Mithridate (1673),

➛ Iphigenie (1674),

➛ Phedre (1677).

➠ Pierre CORNEILLE:

➛ Le Cid (1637),

➛ Horace (1640),

➛ Cinna (1641),

➛ etc.

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 28: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 10-i

End of slide

Using the \SeminarItemInOverlay macro as explained earlier, we can have each entry of the lists init own overlay.

➠ Jean RACINE:

➛ Andromaque (1667),

➛ Les Plaideurs (1668),

➛ Britannicus (1669),

➛ Berenice (1670),

➛ Bajazet (1672),

➛ Mithridate (1673),

➛ Iphigenie (1674),

➛ Phedre (1677).

➠ Pierre CORNEILLE:

➛ Le Cid (1637),

➛ Horace (1640),

➛ Cinna (1641),

➛ etc.

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 29: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 10-j

End of slide

Using the \SeminarItemInOverlay macro as explained earlier, we can have each entry of the lists init own overlay.

➠ Jean RACINE:

➛ Andromaque (1667),

➛ Les Plaideurs (1668),

➛ Britannicus (1669),

➛ Berenice (1670),

➛ Bajazet (1672),

➛ Mithridate (1673),

➛ Iphigenie (1674),

➛ Phedre (1677).

➠ Pierre CORNEILLE:

➛ Le Cid (1637),

➛ Horace (1640),

➛ Cinna (1641),

➛ etc.

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 30: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 10-k

End of slide

Using the \SeminarItemInOverlay macro as explained earlier, we can have each entry of the lists init own overlay.

➠ Jean RACINE:

➛ Andromaque (1667),

➛ Les Plaideurs (1668),

➛ Britannicus (1669),

➛ Berenice (1670),

➛ Bajazet (1672),

➛ Mithridate (1673),

➛ Iphigenie (1674),

➛ Phedre (1677).

➠ Pierre CORNEILLE:

➛ Le Cid (1637),

➛ Horace (1640),

➛ Cinna (1641),

➛ etc.

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 31: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 10-l

End of slide

Using the \SeminarItemInOverlay macro as explained earlier, we can have each entry of the lists init own overlay.

➠ Jean RACINE:

➛ Andromaque (1667),

➛ Les Plaideurs (1668),

➛ Britannicus (1669),

➛ Berenice (1670),

➛ Bajazet (1672),

➛ Mithridate (1673),

➛ Iphigenie (1674),

➛ Phedre (1677).

➠ Pierre CORNEILLE:

➛ Le Cid (1637),

➛ Horace (1640),

➛ Cinna (1641),

➛ etc.

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 32: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 10-m

End of slide

Using the \SeminarItemInOverlay macro as explained earlier, we can have each entry of the lists init own overlay.

➠ Jean RACINE:

➛ Andromaque (1667),

➛ Les Plaideurs (1668),

➛ Britannicus (1669),

➛ Berenice (1670),

➛ Bajazet (1672),

➛ Mithridate (1673),

➛ Iphigenie (1674),

➛ Phedre (1677).

➠ Pierre CORNEILLE:

➛ Le Cid (1637),

➛ Horace (1640),

➛ Cinna (1641),

➛ etc.

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 33: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 10-n

End of slide

Using the \SeminarItemInOverlay macro as explained earlier, we can have each entry of the lists init own overlay.

➠ Jean RACINE:

➛ Andromaque (1667),

➛ Les Plaideurs (1668),

➛ Britannicus (1669),

➛ Berenice (1670),

➛ Bajazet (1672),

➛ Mithridate (1673),

➛ Iphigenie (1674),

➛ Phedre (1677).

➠ Pierre CORNEILLE:

➛ Le Cid (1637),

➛ Horace (1640),

➛ Cinna (1641),

➛ etc.

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 34: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 11

End of slide

A formula for Π from Leonhard Euler

Π

=√

6 ×

1 +1

4+

1

9+

1

16+ · · ·

=

6∞∑

n=1

1

n2

1

2

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 35: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 11

End of slide

A formula for Π from Leonhard Euler

Π =

√6 ×

1 +1

4+

1

9+

1

16+ · · ·

=

6∞∑

n=1

1

n2

1

2

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 36: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 11

End of slide

A formula for Π from Leonhard Euler

Π =√

6

×

1 +1

4+

1

9+

1

16+ · · ·

=

6∞∑

n=1

1

n2

1

2

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 37: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 11

End of slide

A formula for Π from Leonhard Euler

Π =√

6 ×

1 +1

4+

1

9+

1

16+ · · ·

=

6∞∑

n=1

1

n2

1

2

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 38: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 11

End of slide

A formula for Π from Leonhard Euler

Π =√

6 ×

1

+1

4+

1

9+

1

16+ · · ·

=

6∞∑

n=1

1

n2

1

2

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 39: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 11

End of slide

A formula for Π from Leonhard Euler

Π =√

6 ×

1 +1

4

+1

9+

1

16+ · · ·

=

6∞∑

n=1

1

n2

1

2

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 40: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 11

End of slide

A formula for Π from Leonhard Euler

Π =√

6 ×

1 +1

4+

1

9

+1

16+ · · ·

=

6∞∑

n=1

1

n2

1

2

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 41: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 11

End of slide

A formula for Π from Leonhard Euler

Π =√

6 ×

1 +1

4+

1

9+

1

16

+ · · ·

=

6∞∑

n=1

1

n2

1

2

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 42: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 11

End of slide

A formula for Π from Leonhard Euler

Π =√

6 ×

1 +1

4+

1

9+

1

16+ · · ·

=

6∞∑

n=1

1

n2

1

2

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 43: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 11

End of slide

A formula for Π from Leonhard Euler

Π =√

6 ×

1 +1

4+

1

9+

1

16+ · · ·

=

6∞∑

n=1

1

n2

1

2

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 44: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 11

End of slide

A formula for Π from Leonhard Euler

Π =√

6 ×

1 +1

4+

1

9+

1

16+ · · ·

=

6∞∑

n=1

1

n2

1

2

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 45: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 12

End of slide

Table 1: Results of the year

1st Quarter

723

2nd Quarter

819 + 13.3 %

3rd Quarter

687 – 16.1 %

4th Quarter

894 + 30.1 %

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 46: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 12

End of slide

Table 1: Results of the year

1st Quarter 723

2nd Quarter

819 + 13.3 %

3rd Quarter

687 – 16.1 %

4th Quarter

894 + 30.1 %

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 47: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 12

End of slide

Table 1: Results of the year

1st Quarter 723

2nd Quarter 819 + 13.3 %

3rd Quarter

687 – 16.1 %

4th Quarter

894 + 30.1 %

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 48: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 12

End of slide

Table 1: Results of the year

1st Quarter 723

2nd Quarter 819 + 13.3 %

3rd Quarter 687 – 16.1 %

4th Quarter

894 + 30.1 %

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 49: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 12

End of slide

Table 1: Results of the year

1st Quarter 723

2nd Quarter 819 + 13.3 %

3rd Quarter 687 – 16.1 %

4th Quarter 894 + 30.1 %

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 50: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 13

End of slide

Table 2: Results of the year

1st Quarter

723

2nd Quarter

819 + 13 %

3rd Quarter

687 – 16.1 %

4th Quarter

894 + 30.1 %

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 51: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 13

End of slide

Table 2: Results of the year

1st Quarter 723

2nd Quarter

819 + 13 %

3rd Quarter

687 – 16.1 %

4th Quarter

894 + 30.1 %

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 52: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 13

End of slide

Table 2: Results of the year

1st Quarter 723

2nd Quarter 819 + 13 %

3rd Quarter

687 – 16.1 %

4th Quarter

894 + 30.1 %

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 53: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 13

End of slide

Table 2: Results of the year

1st Quarter 723

2nd Quarter 819 + 13 %

3rd Quarter 687 – 16.1 %

4th Quarter

894 + 30.1 %

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 54: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 13

End of slide

Table 2: Results of the year

1st Quarter 723

2nd Quarter 819 + 13 %

3rd Quarter 687 – 16.1 %

4th Quarter 894 + 30.1 %

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 55: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 14

End of slide

1997

1998

1999

2000

2001

1997

1998

1999

2000

2001

Figure 1: Results of the last five years

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 56: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 14

End of slide

1997

1998

1999

2000

2001

1997

1998

1999

2000

2001

Figure 1: Results of the last five years

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 57: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 14

End of slide

1997

1998

1999

2000

2001

1997

1998

1999

2000

2001

Figure 1: Results of the last five years

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 58: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 14

End of slide

1997

1998

1999

2000

2001

1997

1998

1999

2000

2001

Figure 1: Results of the last five years

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 59: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 14

End of slide

1997

1998

1999

2000

2001

1997

1998

1999

2000

2001

Figure 1: Results of the last five years

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 60: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 14

End of slide

1997

1998

1999

2000

2001

1997

1998

1999

2000

2001

Figure 1: Results of the last five years

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 61: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 15

End of slide

Viewership Distribution of the Big Three

Age (years)

<18

18-30

>30

NBC CBS ABC

Figure 2: Main American TV channels

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 62: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 15

End of slide

Viewership Distribution of the Big Three

Age (years)

<18

18-30

>30

NBC CBS ABC

Figure 2: Main American TV channels

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 63: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 15

End of slide

Viewership Distribution of the Big Three

Age (years)

<18

18-30

>30

NBC CBS ABC

Figure 2: Main American TV channels

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 64: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 15

End of slide

Viewership Distribution of the Big Three

Age (years)

<18

18-30

>30

NBC CBS ABC

Figure 2: Main American TV channels

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 65: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 15

End of slide

Viewership Distribution of the Big Three

Age (years)

<18

18-30

>30

NBC CBS ABC

Figure 2: Main American TV channels

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 66: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 16

End of slide

3 – Cumulative overlays with PSTricks nodes

Begin

Initializations

Test Call to SP1 Call to SP2

Action 1

Action 2

End

Yes

No

Figure 3: Flow diagram with the psmatrix environment

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 67: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 16

End of slide

3 – Cumulative overlays with PSTricks nodes

Begin

Initializations

Test Call to SP1 Call to SP2

Action 1

Action 2

End

Yes

No

Figure 3: Flow diagram with the psmatrix environment

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 68: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 16

End of slide

3 – Cumulative overlays with PSTricks nodes

Begin

Initializations

Test Call to SP1 Call to SP2

Action 1

Action 2

End

Yes

No

Figure 3: Flow diagram with the psmatrix environment

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 69: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 16

End of slide

3 – Cumulative overlays with PSTricks nodes

Begin

Initializations

Test Call to SP1 Call to SP2

Action 1

Action 2

End

Yes

No

Figure 3: Flow diagram with the psmatrix environment

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 70: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 16

End of slide

3 – Cumulative overlays with PSTricks nodes

Begin

Initializations

Test Call to SP1 Call to SP2

Action 1

Action 2

End

Yes

No

Figure 3: Flow diagram with the psmatrix environment

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 71: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 16

End of slide

3 – Cumulative overlays with PSTricks nodes

Begin

Initializations

Test Call to SP1 Call to SP2

Action 1

Action 2

End

Yes

No

Figure 3: Flow diagram with the psmatrix environment

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 72: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 16

End of slide

3 – Cumulative overlays with PSTricks nodes

Begin

Initializations

Test Call to SP1 Call to SP2

Action 1

Action 2

End

Yes

No

Figure 3: Flow diagram with the psmatrix environment

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 73: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 16

End of slide

3 – Cumulative overlays with PSTricks nodes

Begin

Initializations

Test Call to SP1 Call to SP2

Action 1

Action 2

End

Yes

No

Figure 3: Flow diagram with the psmatrix environment

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 74: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 16

End of slide

3 – Cumulative overlays with PSTricks nodes

Begin

Initializations

Test Call to SP1 Call to SP2

Action 1

Action 2

End

Yes

No

Figure 3: Flow diagram with the psmatrix environment

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 75: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 17

End of slide

4 – Progressive overlays

➠ Miss

➠ Dear Miss

➠ Dear Catherine

➠ My dear Catherine

➠ Darling

➠ My sweet love

➠ My small rabbit

➠ My angry rabbit

➠ My naughty friend

➠ Farewell!

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 76: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 17

End of slide

4 – Progressive overlays

➠ Miss

➠ Dear Miss

➠ Dear Catherine

➠ My dear Catherine

➠ Darling

➠ My sweet love

➠ My small rabbit

➠ My angry rabbit

➠ My naughty friend

➠ Farewell!

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 77: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 17

End of slide

4 – Progressive overlays

➠ Miss

➠ Dear Miss

➠ Dear Catherine

➠ My dear Catherine

➠ Darling

➠ My sweet love

➠ My small rabbit

➠ My angry rabbit

➠ My naughty friend

➠ Farewell!

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 78: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 17

End of slide

4 – Progressive overlays

➠ Miss

➠ Dear Miss

➠ Dear Catherine

➠ My dear Catherine

➠ Darling

➠ My sweet love

➠ My small rabbit

➠ My angry rabbit

➠ My naughty friend

➠ Farewell!

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 79: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 17

End of slide

4 – Progressive overlays

➠ Miss

➠ Dear Miss

➠ Dear Catherine

➠ My dear Catherine

➠ Darling

➠ My sweet love

➠ My small rabbit

➠ My angry rabbit

➠ My naughty friend

➠ Farewell!

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 80: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 17

End of slide

4 – Progressive overlays

➠ Miss

➠ Dear Miss

➠ Dear Catherine

➠ My dear Catherine

➠ Darling

➠ My sweet love

➠ My small rabbit

➠ My angry rabbit

➠ My naughty friend

➠ Farewell!

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 81: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 17

End of slide

4 – Progressive overlays

➠ Miss

➠ Dear Miss

➠ Dear Catherine

➠ My dear Catherine

➠ Darling

➠ My sweet love

➠ My small rabbit

➠ My angry rabbit

➠ My naughty friend

➠ Farewell!

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 82: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 17

End of slide

4 – Progressive overlays

➠ Miss

➠ Dear Miss

➠ Dear Catherine

➠ My dear Catherine

➠ Darling

➠ My sweet love

➠ My small rabbit

➠ My angry rabbit

➠ My naughty friend

➠ Farewell!

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 83: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 17

End of slide

4 – Progressive overlays

➠ Miss

➠ Dear Miss

➠ Dear Catherine

➠ My dear Catherine

➠ Darling

➠ My sweet love

➠ My small rabbit

➠ My angry rabbit

➠ My naughty friend

➠ Farewell!

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 84: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 17

End of slide

4 – Progressive overlays

➠ Miss

➠ Dear Miss

➠ Dear Catherine

➠ My dear Catherine

➠ Darling

➠ My sweet love

➠ My small rabbit

➠ My angry rabbit

➠ My naughty friend

➠ Farewell!

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 85: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 17

End of slide

4 – Progressive overlays

➠ Miss

➠ Dear Miss

➠ Dear Catherine

➠ My dear Catherine

➠ Darling

➠ My sweet love

➠ My small rabbit

➠ My angry rabbit

➠ My naughty friend

➠ Farewell!

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 86: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 18

End of slide

5 – Progressive overlays with PSTricks nodes

0

1

2

34

5

6

1000

1001

1002

1003

1004

1005

1006

Figure 4: Communication ring

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 87: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 18

End of slide

5 – Progressive overlays with PSTricks nodes

0

1

2

34

5

6

1000

1001

1002

1003

1004

1005

1006

Figure 4: Communication ring

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 88: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 18

End of slide

5 – Progressive overlays with PSTricks nodes

0

1

2

34

5

6

1000

1001

1002

1003

1004

1005

1006

Figure 4: Communication ring

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 89: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 18

End of slide

5 – Progressive overlays with PSTricks nodes

0

1

2

34

5

6

1000

1001

1002

1003

1004

1005

1006

Figure 4: Communication ring

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 90: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 18

End of slide

5 – Progressive overlays with PSTricks nodes

0

1

2

34

5

6

1000

1001

1002

1003

1004

1005

1006

Figure 4: Communication ring

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 91: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 18

End of slide

5 – Progressive overlays with PSTricks nodes

0

1

2

34

5

6

1000

1001

1002

1003

1004

1005

1006

Figure 4: Communication ring

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 92: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 18

End of slide

5 – Progressive overlays with PSTricks nodes

0

1

2

34

5

6

1000

1001

1002

1003

1004

1005

1006

Figure 4: Communication ring

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 93: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 18

End of slide

5 – Progressive overlays with PSTricks nodes

0

1

2

34

5

6

1000

1001

1002

1003

1004

1005

1006

Figure 4: Communication ring

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 94: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 19

End of slide

6 – External files inclusion

Figure 5:

Louise Brooks (1906–1985)

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 95: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 19

End of slide

6 – External files inclusion

Figure 5:

Louise Brooks (1906–1985)

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 96: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 19

End of slide

6 – External files inclusion

Figure 5:

Louise Brooks (1906–1985)

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou

Page 97: Demonstration of overlays (i) · Demonstration of overlays (i) 3 1 – Introduction ☞ Overlays are a key feature for interactive screen presentations ☞ Seminar implement since

Demonstration of overlays (i) 19

End of slide

6 – External files inclusion

Figure 5: Louise Brooks (1906–1985)

Seminar demonstration files – Overlays (I) Version 1.0 – June 2002Denis Girou