present-steps-001.tex /size: 1794 b    last modification: 2020-07-01 14:35
1\usemodule[present-steps]
2
3\setuppapersize
4  [S6]
5
6\setupinteraction
7  [state=start]
8
9
10\setupwhitespace
11  [big]
12
13\setupheadertexts
14  []
15
16\setupbodyfont
17  [modernlatin]
18
19\setuplist
20  [chapter]
21  [interaction=all]
22
23\defineoverlay
24  [go-on]
25  [\overlaybutton{nextpage}]
26
27\setupbackgrounds
28  [page]
29  [background=go-on]
30
31\starttext
32
33\title{Contents}
34
35\placelist
36  [chapter]
37
38\startsteps
39    \startstep
40        \ifnum\currentstep > 1
41            \repeathead[chapter]
42        \else
43            \chapter{Step Set 1}
44        \fi
45    \stopstep
46
47    \startstep
48        STEP ONE
49    \stopstep
50
51    \startstep
52        STEP TWO
53    \stopstep
54
55    \startstep
56        STEP THREE
57    \stopstep
58
59    \startstep
60        STEP FOUR
61    \stopstep
62
63\stopsteps
64
65\startsteps
66
67    \startstep[option=title]
68        \chapter{Step Set 2}
69    \stopstep
70
71    \startstep[option=repeat]
72        \repeathead[chapter]
73    \stopstep
74
75    \startstep[n=2]
76        this is a formula
77        \startformula
78            \startsubstep e =   \stopsubstep
79            \startsubstep m c^2 \stopsubstep
80        \stopformula
81    \stopstep
82
83    \startstep
84        \startitemize
85            \startitem STEP 1a \stopitem
86            \startitem STEP 1b \stopitem
87        \stopitemize
88    \stopstep
89
90    \startstep[n=2]
91        this is a formula
92        \startformula
93            \startsubstep e =   \stopsubstep
94            \startsubstep m c^2 \stopsubstep
95        \stopformula
96    \stopstep
97
98    \startstep
99        \startitemize[continue]
100            \startitem STEP 2a \stopitem
101            \startitem STEP 2b \stopitem
102        \stopitemize
103    \stopstep
104
105    \startstep
106        \startitemize[continue]
107            \startitem STEP 3a \stopitem
108            \startitem STEP 3b \stopitem
109        \stopitemize
110    \stopstep
111
112\stopsteps
113
114\stoptext
115