blob: 5473fbf3b251b0fc3b8e8aba0c71cdd32fdfe545 (
plain) (
blame)
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
|
def @TeX { T{ /0.2fo E}X }
def @Code
right x
{ { Helvetica Base -1p } @Font lines @Break x
}
######################################################
# #
# Nodes and trees. #
# #
######################################################
import @Fig
def @FBox
named width { 0.6c }
named height { 0.4c }
named margin { 0.1c }
right x
{
@Box margin { margin }
{ width @Wide height @High
{ /0.5rt |0.5rt @OneCol @OneRow 0.8f @Font x
}
}
}
import @Fig
def @FEllipse
named width { 0.6c }
named height { 0.4c }
named margin { 0.1c }
right x
{
@Ellipse margin { margin }
{ height @High
{ /0.5rt |0.5rt @OneCol @OneRow 0.8f @Font x
}
}
}
import @Fig
def @FCircle
named width { 0.4c }
named height { 0.4c }
named margin { 0.1c }
right x
{
@Circle margin { margin }
{ width @Wide height @High
{ /0.5rt |0.5rt @OneCol @OneRow 0.8f @Font x
}
}
}
import @Fig
def @JoinFigures
left A
named linestyle { solid }
named linewidth { 0.5 pt }
named linecap { round }
named dashlength { 0.15 cm }
named arrow { noarrow }
named headstyle { open }
named headwidth { 0.05 cm }
named headlength { 0.15 cm }
right B
{
@Line
from { {A"@CTR"} ++ {{A"@CTR"} @Angle {B"@CTR"} A"@CIRCUM"} }
to { {B"@CTR"} ++ {{B"@CTR"} @Angle {A"@CTR"} B"@CIRCUM"} }
linestyle { linestyle }
linewidth { linewidth }
linecap { linecap }
dashlength { dashlength }
arrow { arrow }
headstyle { headstyle }
headwidth { headwidth }
headlength { headlength }
{}
}
import @Fig
export @LeftSub @RightSub @FirstSub @NextSub @StubSub @Node
def @Tree
named hmargin { 0.2c }
named vmargin { 0.3c }
named linestyle { solid }
named linewidth { 0.5 pt }
named linecap { round }
named dashlength { 0.15 cm }
named arrow { noarrow }
named headstyle { open }
named headwidth { 0.05 cm }
named headlength { 0.15 cm }
body x
@Begin
def @LeftSub
precedence 90
associativity left
left root
named hmargin { hmargin }
named linestyle { linestyle }
named linewidth { linewidth }
named linecap { linecap }
named dashlength { dashlength }
named arrow { arrow }
named headstyle { headstyle }
named headwidth { headwidth }
named headlength { headlength }
right x
{
{ /vmargin {L::x} } |hmargin root |
L@T @JoinFigures
linestyle { linestyle }
linewidth { linewidth }
linecap { linecap }
dashlength { dashlength }
arrow { arrow }
headstyle { headstyle }
headwidth { headwidth }
headlength { headlength }
T
}
def fixroot
precedence 90
left root
{
|0.5rt root
}
def firstsub
precedence 90
associativity left
named hmargin { hmargin }
named linestyle { linestyle }
named linewidth { linewidth }
named linecap { linecap }
named dashlength { dashlength }
named arrow { arrow }
named headstyle { headstyle }
named headwidth { headwidth }
named headlength { headlength }
right x
{
S::x &
S@T @JoinFigures
linestyle { linestyle }
linewidth { linewidth }
linecap { linecap }
dashlength { dashlength }
arrow { arrow }
headstyle { headstyle }
headwidth { headwidth }
headlength { headlength }
T
}
macro @FirstSub { fixroot //vmargin |0.5rt firstsub }
def @NextSub
precedence 90
associativity left
left others
named hmargin { hmargin }
named linestyle { linestyle }
named linewidth { linewidth }
named linecap { linecap }
named dashlength { dashlength }
named arrow { arrow }
named headstyle { headstyle }
named headwidth { headwidth }
named headlength { headlength }
right x
{
others &hmargin S::x &
S@T @JoinFigures
linestyle { linestyle }
linewidth { linewidth }
linecap { linecap }
dashlength { dashlength }
arrow { arrow }
headstyle { headstyle }
headwidth { headwidth }
headlength { headlength }
T
}
def @RightSub
precedence 90
associativity left
left root
named hmargin { hmargin }
named linestyle { linestyle }
named linewidth { linewidth }
named linecap { linecap }
named dashlength { dashlength }
named arrow { arrow }
named headstyle { headstyle }
named headwidth { headwidth }
named headlength { headlength }
right x
{
root |hmargin { /vmargin {R::x} } |
R@T @JoinFigures
linestyle { linestyle }
linewidth { linewidth }
linecap { linecap }
dashlength { dashlength }
arrow { arrow }
headstyle { headstyle }
headwidth { headwidth }
headlength { headlength }
T
}
def @StubSub
precedence 90
associativity left
left root
named linestyle { linestyle }
named linewidth { linewidth }
named linecap { linecap }
named dashlength { dashlength }
{
root |
@Figure
shape { T@SW
T@W -- { 0.1 cm 0.7 cm }
T@E -- {-0.1 cm 0.7 cm }
T@SE
}
linestyle { linestyle }
linewidth { linewidth }
linecap { linecap }
dashlength { dashlength }
{ @Null }
}
def @Node
# named mark {}
right root
{
T:: root
# & T@W ++ { -0.2 cm 0.1 cm } @BaseOf mark
}
@OneCol @OneRow x
@End @Tree
def @ShowMarks
named linewidth { 0.015 cm }
named linestyle { dashed }
named dashlength { 0.15 cm }
named paint { lightgrey }
named marks { both } # none, horizontal, vertical, or both
right x
{
@Fig
{ @Box margin { 0c } linewidth { linewidth } paint { paint }
{ @Figure
shape {
marks @Case {
{ horizontal both } @Yield
{ -0.3 cm ymark {xsize ymark} ++ {0.3 cm 0} }
else @Yield {}
}
marks @Case {
both @Yield []
else @Yield {}
}
marks @Case {
{ vertical both } @Yield
{ xmark -0.3 cm {xmark ysize} ++ {0 0.3 cm} }
else @Yield {}
}
}
linewidth { linewidth }
linestyle { linestyle }
dashlength { dashlength }
x
}
}
}
import @Fig
def @DagBox
named top {}
named mid {}
named base {}
{
@OneRow {
TOP:: @FBox top
// MID:: @FBox mid
// BASE:: @FBox base
}
}
import @Fig
def @BlackDot
named diameter { 0.07c }
{
@Circle
margin { 0c }
paint { black }
{ diameter @Wide diameter @High {}
}
}
import @Fig
def @TVShape # television shape enclosing points ne, nw, se, sw
named nw {}
named ne {}
named sw {}
named se {}
named delta { 0.5 cm }
{
@Figure
shape {
{ {nw @Min sw @Min ne @Min se} -- { delta 0 } } @Label BL
{ {nw @Max sw @Max ne @Max se} ++ { delta 0 } } @Label TR
BL ++ { 0 BL @YDistance TR } @Label TL
BL ++ { BL @XDistance TR 0 } @Label BR
BL
BR [ BR ++ {0 delta} ]
BR ++ {delta delta}
TR ++ {delta -delta} [ TR -- {0 delta} ]
TR
TL [ TL -- {0 delta} ]
TL -- {delta delta}
BL ++ {-delta delta} [ BL ++ {0 delta} ]
BL
}
{}
}
import @Fig
def @FunnyArrow
named from {}
named to {}
named arrow { forward }
{
@Figure
shape {from from ++ {0 from @YDistance to} to}
arrow { arrow }
{}
}
def "->" { {Symbol Base} @Font "\256" } #174 decimal
def "=>" { {Symbol Base} @Font "\336" } #222 decimal
macro @JP { /0.5v }
###################################################
# #
# Lout keywords. #
# #
###################################################
def @@Begin { @Code "@Begin" }
def @@Break { @Code "@Break" }
def @@Case { @Code "@Case" }
def @@Database { @Code "@Database" }
def @@End { @Code "@End" }
def @@Font { @Code "@Font" }
def @@Galley { @Code "@Galley" }
def @@Graphic { @Code "@Graphic" }
def @@HExpand { @Code "@HExpand" }
def @@HScale { @Code "@HScale" }
def @@High { @Code "@High" }
def @@Include { @Code "@Include" }
def @@Key { @Code "@Key" }
def @@LClos { @Code "@LClos" }
def @@LEnv { @Code "@LEnv" }
def @@LInput { @Code "@LInput" }
def @@Moment { @Code "@Moment" }
def @@Next { @Code "@Next" }
def @@Null { @Code "@Null" }
def @@OneCol { @Code "@OneCol" }
def @@OneRow { @Code "@OneRow" }
def @@Open { @Code "@Open" }
def @@Prepend { @Code "@Prepend" }
def @@Rotate { @Code "@Rotate" }
def @@Space { @Code "@Space" }
def @@SysDatabase { @Code "@SysDatabase" }
def @@SysInclude { @Code "@SysInclude" }
def @@SysPrepend { @Code "@SysPrepend" }
def @@Tag { @Code "@Tag" }
def @@Tagged { @Code "@Tagged" }
def @@Use { @Code "@Use" }
def @@VExpand { @Code "@VExpand" }
def @@VScale { @Code "@VScale" }
def @@Yield { @Code "@Yield" }
def @@Wide { @Code "@Wide" }
###################################################
# #
# Miscellaneous, mostly graphical definitions. #
# #
###################################################
def @Leaders
{ .. @Leaders
}
def @HLine {
@BackEnd @Case {
PostScript @Yield {
{ 0 0 moveto xsize 0 lineto stroke }
@Graphic {}
}
PDF @Yield {
{ 0 0 m __xsize 0 l S }
@Graphic {}
}
}
}
def @VDashLine
right length
{
@BackEnd @Case {
PostScript @Yield {
length @High
{ 0 0 moveto 0 ysize lineto [ 3 pt ] 0 setdash stroke }
@Graphic {}
}
PDF @Yield {
length @High
{ [ __mul(3, __pt) ] 0 d 0 0 m 0 __ysize l stroke }
@Graphic {}
}
}
}
def @LBox
right offset
{
@BackEnd @Case {
PostScript @Yield {
@OneCol @OneRow
{
{ //0.2c
0.6c @High 1.2c @Wide
{ 0 0 moveto xsize 0 lineto
xsize ysize lineto 0 ysize lineto closepath
gsave 0.9 setgray fill grestore stroke }
@Graphic {}
}
||offset @VDashLine 1c
}
}
PDF @Yield {
@OneCol @OneRow
{
{ //0.2c
0.6c @High 1.2c @Wide
{ 0 0 m __xsize 0 l
__xsize __ysize l 0 __ysize l h
q 0.9 g f Q S }
@Graphic {}
}
||offset @VDashLine 1c
}
}
}
}
def @Arrow
right length
{ @OneCol @OneRow
{
30d @Rotate {0.12c @Wide @HLine}
//
length @Wide @HLine
//
"-30d" @Rotate {0.12c @Wide @HLine}
}
}
def @DoubleArrow
right length
{ @OneCol @OneRow
{
& 180d @Rotate @Arrow length
|0io @Arrow length
}
}
def @Put
left coord
right x
{ @OneCol @OneRow
{ coord / | @OneCol @OneRow x
}
}
macro @At { //0io }
###################################################
# #
# Interpolated example documents. #
# #
###################################################
def @LittleEndRunPlace { @Galley }
def @LittleEndRun
force into { @LittleEndRunPlace&&preceding }
{}
def @LittleTextPlace { @Galley }
def @LittleText into { @LittleTextPlace&&preceding }
right x
{ x
}
def @LittleFootPlace { @Galley }
def @LittleFootNote into { @LittleFootPlace&&following }
right x
{ x
}
def @LittlePageColumn
right x
{
9px @Break 8p @Font
2.8c @Wide x
}
def @LittlePage
right x
{
@BackEnd @Case {
PostScript @Yield {
@HContract @VContract
{ 0 0 moveto xsize 0 lineto xsize ysize lineto
0 ysize lineto closepath stroke } @Graphic
{ //0.3c ||0.3c
9px @Break 8p @Font
2.8c @Wide 3.8c @High x
||0.3c //0.3c
}
}
PDF @Yield {
@HContract @VContract
{ 0 0 m __xsize 0 l __xsize __ysize l 0 __ysize l s } @Graphic
{ //0.3c ||0.3c
9px @Break 8p @Font
2.8c @Wide 3.8c @High x
||0.3c //0.3c
}
}
}
}
def @LittleFootSect
{ 1c @Wide @HLine
//0.3v @LittleFootPlace ||0.5c
}
def @LittlePageList
right @PageNum
{
@LittlePage { # |0.5rt @PageNum //0.8v
//0.3v @LittleTextPlace
//1rt @LittleFootSect
}
//
@LittlePageList @Next @PageNum
}
def @LittleDocument
{ @LittlePage
{ @LittleTextPlace
//1rt @LittleFootSect
}
// @LittlePageList 2
// @LittleEndRunPlace
}
def @Strange
named @Format right @Val { [@Val] }
right x
{ @Format x
}
|