blob: ac584d1d933e712cab1bd43312fa57a1f21def15 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
(skribe-load "slide.skr" :advi #t)
(document :title (color :fg "red" (sf (font :size +2. "Skribe Slides")))
:author (author :name (it "Manuel Serrano")
:affiliation [Inria Sophia Antipolis]
:address (ref :url "http://www.inria.fr/mimosa/Manuel.Serrano"))
(if (engine-format? "html")
(slide :title "Table of contents" :number #f :toc #f
(toc :chapter #f :section #f :subsection #f :subsubsection #f
:slide #t)))
(slide :title "X11 client" :toc #t :vspace 0.3
(itemize
(item "xlock")
(item "xeyes")
(item "xterm")))
(slide :title "Xclock" :toc #t :vspace 0.3
(center (sf (underline "The Unix xclock client")))
(slide-vspace 0.3)
(slide-pause)
(slide-embed :command "xlock"
:alt (frame "Can't run embedded application"))))
|