Builds¶
Complex slides can often benefit from being build up (revealed) step-by-step during a presentation. Slidie supports this by allowing Inkscape layers to be incrementally shown (or hidden) according to Beamer-inspired annotations added to layer names.
Build specifications are given in angle brackets (<
and >
) anywhere
within the layer name and consist of a comma separated list of step numbers
during which that layer is visible.
For example if you have a slide with four layers named like so:
A
B <1>
C <2>
D <1, 2>.
This describes a slide which builds in three steps (numbered 0, 1 and 2):
In step 0 (the initial state of the slide), only layer A is visible.
In step 1 (after the first click), layers A, B and D are visible.
In step 2 (after the second click), layers A, C and D are visible.
The Inkscape layer visibility setting for layers annotated with build specifications is is ignored in rendered outputs. Layer visibility is instead set according to the build steps specified. Non-annotated layers, however, will remain visible (or hidden) as usual.
Ranges¶
You can also specify ranges of steps, for example, given the following layers:
A <1>
B <2>
C <3>
D <0-2>
This slide will build in four steps like so:
In step 0 (the initial state of the slide), only layer D is visible.
In step 1 (after the first click), layers A, D are visible.
In step 2 (after the second click), layers B and D are visible.
In step 3 (after the third click), only layer C is visible.
Open-ended ranges¶
If the start or end of a range is omitted, this defines a range from the first
step or to last step respectively. For example <2->
means ‘from the second
click onward’.
Automatic step numbering¶
For the common case where consecutive layers are revealed in consecutive steps
the +
shorthand means the step after the first step in the previous layer
with a specification. For example:
A
B <+>
C <+>
Here, layer A is always visible whilst layers B C appear (then disappear) after the first and second clicks respectively.
A ‘+’ can be used as part of a range specification. In addition the .
shorthand works like +
but without incrementing the step number. Used
together this allows you to achieve things like the following where elements
are highlighted as they’re revealed:
Title
First bullet <+->
First bullet highlight <.>
Second bullet <+->
Second bullet highlight <.>
Third bullet <+->
Third bullet highlight <.>
This slide has four steps with (for example) a bullet being reveled after each click. The most recently shown bullet might be highlighted in some way in the ‘highlight’ layers.