1
2
3
4
5
6
7
8
9
10
11
12
13
14\writestatus{loading}{ConTeXt Page Macros Page Streams}
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31\registerctxluafile{pagestr}{autosuffix}
32
33\unprotect
34
35\mutable\lettonothing\currentoutputstream
36
37\newif \ifinoutputstream
38\newtoks \everyenableoutputstream
39
40\appendtoks
41 \page_otr_command_flush_side_floats
42\to \everyenableoutputstream
43
44\permanent\protected\def\initializeoutputstreams
45 {\clf_initializestream
46 \enforced\glet\initializeoutputstreams\relax}
47
48\permanent\protected\def\enableoutputstream[#1]
49 {\initializeoutputstreams
50 \expand\everyenableoutputstream
51 \inoutputstreamtrue
52 \xdef\currentoutputstream{#1}
53 \clf_enablestream{#1}
54 \prevdepth\zeropoint}
55
56\permanent\protected\def\disableoutputstream
57 {\inoutputstreamfalse
58 \glet\currentoutputstream\s!default
59 \clf_disablestream}
60
61\permanent\protected\def\startoutputstream[#1]
62 {\begingroup
63 \initializeoutputstreams
64 \expand\everyenableoutputstream
65 \inoutputstreamtrue
66 \xdef\currentoutputstream{#1}
67 \clf_startstream{#1}}
68
69\permanent\protected\def\stopoutputstream
70 {\clf_stopstream
71 \endgroup}
72
73\permanent\protected\def\startoutputsubstream[#1]
74 {\globalpushmacro\currentoutputstream
75 \enableoutputstream[#1]}
76
77\permanent\protected\def\stopoutputsubstream
78 {\globalpopmacro\currentoutputstream
79 \enableoutputstream[\currentoutputstream]}
80
81\permanent \protected\def\flushoutputstream [#1]{\clf_flushstream{#1}}
82\permanent \protected\def\outputstreambox [#1]{\vbox{\clf_flushstream{#1}}}
83\permanent \protected\def\outputstreamcopy [#1]{\vbox{\clf_flushstreamcopy{#1}}}
84\permanent \protected\def\outputstreamunvbox [#1]{\clf_flushstream{#1}}
85\permanent \protected\def\outputstreamunvcopy[#1]{\clf_flushstreamcopy{#1}}
86\permanent \protected\def\synchronizestreams [#1]{\clf_synchronizestream{#1}}
87\permanent\tolerant\protected\def\pushoutputstream [#1]{\clf_pushstream{#1}}
88
89\protect \endinput
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130 |