HowTo:S2Slides
From S2PLOT
(Difference between revisions)
Revision as of 04:38, 19 February 2008 Dbarnes (Talk | contribs) (→How to create an s2slides presentation) ← Previous diff |
Revision as of 05:45, 19 February 2008 Dbarnes (Talk | contribs) (→How to create an s2slides presentation) Next diff → |
||
Line 4: | Line 4: | ||
Before using s2slides, you should be familiar with [[HowTo:BackgroundImg | running an existing S2PLOT program over a background image]] and [[HowTo:ScriptKeyPresses | "scripting" key presses for S2PLOT applications]]. | Before using s2slides, you should be familiar with [[HowTo:BackgroundImg | running an existing S2PLOT program over a background image]] and [[HowTo:ScriptKeyPresses | "scripting" key presses for S2PLOT applications]]. | ||
+ | |||
+ | To use s2slides, all you need is one or more mono or stereo bitmap images or S2PLOT programs. These should be arranged into a simple text file that s2slides will execute. Here is an example (taken from Barnes' 2007 ADASS talk). | ||
+ | |||
+ | <pre><code> | ||
+ | #introduction | ||
+ | ./slides/Slide1.png.tga | ||
+ | ./slides/Slide2.png.tga | ||
+ | ./slides/Slide3.png.tga | ||
+ | !./s2pg ./runme | ||
+ | |||
+ | # astro examples | ||
+ | ./slides/Slide5.png.tga | ||
+ | !./6dF ./runme | ||
+ | ./slides/Slide7.png.tga | ||
+ | !./cluster ./runme | ||
+ | ./slides/Slide9.png.tga | ||
+ | !./slicer ./runme | ||
+ | ./slides/Slide11.png.tga | ||
+ | !./milkyway ./runme | ||
+ | |||
+ | # pdf promo | ||
+ | ./slides/Slide12.png.tga | ||
+ | !./paper ./runme | ||
+ | |||
+ | # final slide | ||
+ | ./slides/Slide13.png.tga | ||
+ | </code></pre> |
Revision as of 05:45, 19 February 2008
How to create an s2slides presentation
As of S2PLOT version 2.0, a utility called s2slides is included with the distribution. S2slides is a program which can be used to combine 2-d and 3-d images, and interactive programs into a relatively slick, self-contained presentation.
Before using s2slides, you should be familiar with running an existing S2PLOT program over a background image and "scripting" key presses for S2PLOT applications.
To use s2slides, all you need is one or more mono or stereo bitmap images or S2PLOT programs. These should be arranged into a simple text file that s2slides will execute. Here is an example (taken from Barnes' 2007 ADASS talk).
<code> #introduction ./slides/Slide1.png.tga ./slides/Slide2.png.tga ./slides/Slide3.png.tga !./s2pg ./runme # astro examples ./slides/Slide5.png.tga !./6dF ./runme ./slides/Slide7.png.tga !./cluster ./runme ./slides/Slide9.png.tga !./slicer ./runme ./slides/Slide11.png.tga !./milkyway ./runme # pdf promo ./slides/Slide12.png.tga !./paper ./runme # final slide ./slides/Slide13.png.tga </code>