Example slides using S5

Author: Cezary Sobaniec
Version: 1.3
Date: 12/04/2008
Contact: Cezary.Sobaniec at put.edu.pl

Simple Standards-Based Slide Show System

Enumerated and Itemized Lists

The following is an example list:

  1. The list starts here

  2. This is the second item

    • italic

    • bold

    • monospace

  3. S5 web site is located at http://meyerweb.com/eric/tools/s5/

Definition Lists

There are the following types of lists:

Ordered lists
start with a number or a letter followed by a colon. The list can be also automatically ordered if it starts with a # character.
Unordered lists
start with *, - or + character. All types of lists can be nested by default.
Definition lists
are marked up using appropriate indentation. They may be used for presenting new concepts and terms. As usual, the lists can be nested.

Listings

This is an example class definition:

class String
{
public:
    char *txt;
    String()
    {
        txt = new char[1];
        strcpy(txt, "");
    }
    String(char* t)
    {
        txt = new char[strlen(t)+1];
        strcpy(txt, t);
    }
    ~String()
    {
        delete [] txt;
    }
};

Quotes

Here is an example quote:

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.

And some text that follows:

Topics

There are several methods of creating objects.

Object creation

In order to create an object use the new operator:

x = new Object();

The code:

  • creates a new object,

  • issues the constructor of the class,

  • returns a reference to the object.

Containers

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.

  • The first item

  • The second item

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

Images

Obviously you can include images in your presentation:

kdenow.png
kdenow.png

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.

kdenow.png

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.

Tables

This is an example (simple) table:

Symbol Meaning
Monday Campground
Tuesday Lake
Wednesday Mountain

Warning

Simple tables cannot contain multiline paragraphs in the first column.