1
2
3
4
5
6
7
8
9
10
11
12
13
14\unprotect
15
16\startsetups \s!btx:\s!list:\s!page:concat
17 \ifcase\currentbtxoverflow
18 \btxparameter{\c!separator:\number\currentbtxconcat}
19 \fi
20\stopsetups
21
22
23
24\startsetups [\s!btx:\s!list:\s!page]
25 \fastsetup{\s!btx:\s!list:\s!page:concat}
26 \fastsetup{\s!btx:\currentbtxspecification:\s!list:pageorpages}
27 \ifconditional\btxinteractivepage
28 \goto {
29 \currentbtxfirstpage
30 } [
31 internal(\currentbtxfirstinternal)
32 ]
33 \ifx\currentbtxlastpage\empty \else
34
35 \btxparameter\c!range
36 \goto {
37 \currentbtxlastpage
38 } [
39 internal(\currentbtxlastinternal)
40 ]
41 \fi
42 \else
43 \currentbtxfirstpage
44 \ifx\currentbtxlastpage\empty \else
45 \btxparameter\c!range
46 \currentbtxlastpage
47 \fi
48 \fi
49\stopsetups
50
51\protect
52 |