Introduction (Cont'd)
Examples
Applications [TM01]
- Digital photographs can be coordinated with a commentary.
- A web site might display items for sale by showing photos of the
products coupled with a voice talking about the products as they
appear.
Documents [TM01]
<par>
<a href="#Story"> <img src="button1.jpg"/> </a>
<a href="#Weather"> <img src="button2.jpg"/></a>
<seq>
<par id="Story" begin="0s">
<video src="video1.mpg"/>
<text src="captions.html"/>
</par>
<par id="Weather">
<img src="weather.jpg"/>
<audio src="weather_rpt.mp3"/>
</par>
</seq>
</par>
This document contains two buttons, "Story" and "Weather." When either
of the buttons is selected, the corresponding selection is played.
The <seq> tag allows for only one of the buttons
to be selected at a time.
On the other hand, the <par> tag allows the captions and video
for the story to occur in parallel and the pictures and spoken report
of the weather to occur in parallel.