diff options
author | Ludovic Court`es | 2006-08-24 13:37:51 +0000 |
---|---|---|
committer | Ludovic Court`es | 2006-08-24 13:37:51 +0000 |
commit | 137349e69a11e22a85a060d1bdbc0ef97a4c29ab (patch) | |
tree | 111f6f1668d0b49084ea069b519f798c09393bed /doc/user/src | |
parent | 6b1715f3f4a1d3718d5ec4eebc2f04023e9564be (diff) | |
download | skribilo-137349e69a11e22a85a060d1bdbc0ef97a4c29ab.tar.gz skribilo-137349e69a11e22a85a060d1bdbc0ef97a4c29ab.tar.lz skribilo-137349e69a11e22a85a060d1bdbc0ef97a4c29ab.zip |
doc: Documented `slide-topic' and `slide-subtopic'.
* doc/user/slide.skb (Slide): Renamed to `Slides and Slide Topics'.
Added the relevant markup documentation.
* doc/user/src/slides.skb: Added an introduction and a slide topic.
git-archimport-id: lcourtes@laas.fr--2005-libre/skribilo--devo--1.2--patch-46
Diffstat (limited to 'doc/user/src')
-rw-r--r-- | doc/user/src/slides.skb | 30 |
1 files changed, 18 insertions, 12 deletions
diff --git a/doc/user/src/slides.skb b/doc/user/src/slides.skb index 1606e91..e5e6896 100644 --- a/doc/user/src/slides.skb +++ b/doc/user/src/slides.skb @@ -6,22 +6,28 @@ :address (ref :url "http://www.inria.fr/mimosa/Manuel.Serrano")) (if (engine-format? "html") - (slide :title "Table of contents" :number #f :toc #f + (slide :title "Table of Contents" :number #f :toc #f (toc :chapter #f :section #f :subsection #f :subsubsection #f))) ;;; :slide #t))) + + (slide :title "Introduction" :vspace 0.3 + + (p [This is a simple slide, not grouped in any topic.])) - (slide :title "X11 client" :toc #t :vspace 0.3 + (slide-topic :title "Interactive Features" :outline? #t - (itemize - (item "xlock") - (item "xeyes") - (item "xterm"))) + (slide :title "X11 client" :toc #t :vspace 0.3 - (slide :title "Xclock" :toc #t :vspace 0.3 + (itemize + (item "xlock") + (item "xeyes") + (item "xterm"))) - (center (sf (underline "The Unix xclock client"))) - (slide-vspace 0.3) + (slide :title "Xclock" :toc #t :vspace 0.3 - (slide-pause) - (slide-embed :command "xlock" - :alt (frame "Can't run embedded application")))) + (center (sf (underline "The Unix xclock client"))) + (slide-vspace 0.3) + + (slide-pause) + (slide-embed :command "xlock" + :alt (frame "Can't run embedded application"))))) |