-
Notifications
You must be signed in to change notification settings - Fork 2
/
test.ps
executable file
·1615 lines (1569 loc) · 22.8 KB
/
test.ps
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
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
%!PS-Adobe-3.0
%%BoundingBox: 38 24 574 768
%%Title: Enscript Output
%%For: Eric Schrijver
%%Creator: GNU enscript 1.6.4
%%CreationDate: Fri Dec 23 00:52:11 2011
%%Orientation: Portrait
%%Pages: (atend)
%%DocumentMedia: Letter 612 792 0 () ()
%%DocumentNeededResources: (atend)
%%EndComments
%%BeginProlog
%%BeginResource: procset Enscript-Prolog 1.6 4
%
% Procedures.
%
/_S { % save current state
/_s save def
} def
/_R { % restore from saved state
_s restore
} def
/S { % showpage protecting gstate
gsave
showpage
grestore
} bind def
/MF { % fontname newfontname -> - make a new encoded font
/newfontname exch def
/fontname exch def
/fontdict fontname findfont def
/newfont fontdict maxlength dict def
fontdict {
exch
dup /FID eq {
% skip FID pair
pop pop
} {
% copy to the new font dictionary
exch newfont 3 1 roll put
} ifelse
} forall
newfont /FontName newfontname put
% insert only valid encoding vectors
encoding_vector length 256 eq {
newfont /Encoding encoding_vector put
} if
newfontname newfont definefont pop
} def
/MF_PS { % fontname newfontname -> - make a new font preserving its enc
/newfontname exch def
/fontname exch def
/fontdict fontname findfont def
/newfont fontdict maxlength dict def
fontdict {
exch
dup /FID eq {
% skip FID pair
pop pop
} {
% copy to the new font dictionary
exch newfont 3 1 roll put
} ifelse
} forall
newfont /FontName newfontname put
newfontname newfont definefont pop
} def
/SF { % fontname width height -> - set a new font
/height exch def
/width exch def
findfont
[width 0 0 height 0 0] makefont setfont
} def
/SUF { % fontname width height -> - set a new user font
/height exch def
/width exch def
/F-gs-user-font MF
/F-gs-user-font width height SF
} def
/SUF_PS { % fontname width height -> - set a new user font preserving its enc
/height exch def
/width exch def
/F-gs-user-font MF_PS
/F-gs-user-font width height SF
} def
/M {moveto} bind def
/s {show} bind def
/Box { % x y w h -> - define box path
/d_h exch def /d_w exch def /d_y exch def /d_x exch def
d_x d_y moveto
d_w 0 rlineto
0 d_h rlineto
d_w neg 0 rlineto
closepath
} def
/bgs { % x y height blskip gray str -> - show string with bg color
/str exch def
/gray exch def
/blskip exch def
/height exch def
/y exch def
/x exch def
gsave
x y blskip sub str stringwidth pop height Box
gray setgray
fill
grestore
x y M str s
} def
/bgcs { % x y height blskip red green blue str -> - show string with bg color
/str exch def
/blue exch def
/green exch def
/red exch def
/blskip exch def
/height exch def
/y exch def
/x exch def
gsave
x y blskip sub str stringwidth pop height Box
red green blue setrgbcolor
fill
grestore
x y M str s
} def
% Highlight bars.
/highlight_bars { % nlines lineheight output_y_margin gray -> -
gsave
setgray
/ymarg exch def
/lineheight exch def
/nlines exch def
% This 2 is just a magic number to sync highlight lines to text.
0 d_header_y ymarg sub 2 sub translate
/cw d_output_w cols div def
/nrows d_output_h ymarg 2 mul sub lineheight div cvi def
% for each column
0 1 cols 1 sub {
cw mul /xp exch def
% for each rows
0 1 nrows 1 sub {
/rn exch def
rn lineheight mul neg /yp exch def
rn nlines idiv 2 mod 0 eq {
% Draw highlight bar. 4 is just a magic indentation.
xp 4 add yp cw 8 sub lineheight neg Box fill
} if
} for
} for
grestore
} def
% Line highlight bar.
/line_highlight { % x y width height gray -> -
gsave
/gray exch def
Box gray setgray fill
grestore
} def
% Column separator lines.
/column_lines {
gsave
.1 setlinewidth
0 d_footer_h translate
/cw d_output_w cols div def
1 1 cols 1 sub {
cw mul 0 moveto
0 d_output_h rlineto stroke
} for
grestore
} def
% Column borders.
/column_borders {
gsave
.1 setlinewidth
0 d_footer_h moveto
0 d_output_h rlineto
d_output_w 0 rlineto
0 d_output_h neg rlineto
closepath stroke
grestore
} def
% Do the actual underlay drawing
/draw_underlay {
ul_style 0 eq {
ul_str true charpath stroke
} {
ul_str show
} ifelse
} def
% Underlay
/underlay { % - -> -
gsave
0 d_page_h translate
d_page_h neg d_page_w atan rotate
ul_gray setgray
ul_font setfont
/dw d_page_h dup mul d_page_w dup mul add sqrt def
ul_str stringwidth pop dw exch sub 2 div ul_h_ptsize -2 div moveto
draw_underlay
grestore
} def
/user_underlay { % - -> -
gsave
ul_x ul_y translate
ul_angle rotate
ul_gray setgray
ul_font setfont
0 0 ul_h_ptsize 2 div sub moveto
draw_underlay
grestore
} def
% Page prefeed
/page_prefeed { % bool -> -
statusdict /prefeed known {
statusdict exch /prefeed exch put
} {
pop
} ifelse
} def
% Wrapped line markers
/wrapped_line_mark { % x y charwith charheight type -> -
/type exch def
/h exch def
/w exch def
/y exch def
/x exch def
type 2 eq {
% Black boxes (like TeX does)
gsave
0 setlinewidth
x w 4 div add y M
0 h rlineto w 2 div 0 rlineto 0 h neg rlineto
closepath fill
grestore
} {
type 3 eq {
% Small arrows
gsave
.2 setlinewidth
x w 2 div add y h 2 div add M
w 4 div 0 rlineto
x w 4 div add y lineto stroke
x w 4 div add w 8 div add y h 4 div add M
x w 4 div add y lineto
w 4 div h 8 div rlineto stroke
grestore
} {
% do nothing
} ifelse
} ifelse
} def
% EPSF import.
/BeginEPSF {
/b4_Inc_state save def % Save state for cleanup
/dict_count countdictstack def % Count objects on dict stack
/op_count count 1 sub def % Count objects on operand stack
userdict begin
/showpage { } def
0 setgray 0 setlinecap
1 setlinewidth 0 setlinejoin
10 setmiterlimit [ ] 0 setdash newpath
/languagelevel where {
pop languagelevel
1 ne {
false setstrokeadjust false setoverprint
} if
} if
} bind def
/EndEPSF {
count op_count sub { pos } repeat % Clean up stacks
countdictstack dict_count sub { end } repeat
b4_Inc_state restore
} bind def
% Check PostScript language level.
/languagelevel where {
pop /gs_languagelevel languagelevel def
} {
/gs_languagelevel 1 def
} ifelse
%%EndResource
%%BeginResource: procset Enscript-Encoding-88591 1.6 4
/encoding_vector [
/.notdef /.notdef /.notdef /.notdef
/.notdef /.notdef /.notdef /.notdef
/.notdef /.notdef /.notdef /.notdef
/.notdef /.notdef /.notdef /.notdef
/.notdef /.notdef /.notdef /.notdef
/.notdef /.notdef /.notdef /.notdef
/.notdef /.notdef /.notdef /.notdef
/.notdef /.notdef /.notdef /.notdef
/space /exclam /quotedbl /numbersign
/dollar /percent /ampersand /quoteright
/parenleft /parenright /asterisk /plus
/comma /hyphen /period /slash
/zero /one /two /three
/four /five /six /seven
/eight /nine /colon /semicolon
/less /equal /greater /question
/at /A /B /C
/D /E /F /G
/H /I /J /K
/L /M /N /O
/P /Q /R /S
/T /U /V /W
/X /Y /Z /bracketleft
/backslash /bracketright /asciicircum /underscore
/quoteleft /a /b /c
/d /e /f /g
/h /i /j /k
/l /m /n /o
/p /q /r /s
/t /u /v /w
/x /y /z /braceleft
/bar /braceright /tilde /.notdef
/.notdef /.notdef /.notdef /.notdef
/.notdef /.notdef /.notdef /.notdef
/.notdef /.notdef /.notdef /.notdef
/.notdef /.notdef /.notdef /.notdef
/.notdef /.notdef /.notdef /.notdef
/.notdef /.notdef /.notdef /.notdef
/.notdef /.notdef /.notdef /.notdef
/.notdef /.notdef /.notdef /.notdef
/space /exclamdown /cent /sterling
/currency /yen /brokenbar /section
/dieresis /copyright /ordfeminine /guillemotleft
/logicalnot /hyphen /registered /macron
/degree /plusminus /twosuperior /threesuperior
/acute /mu /paragraph /bullet
/cedilla /onesuperior /ordmasculine /guillemotright
/onequarter /onehalf /threequarters /questiondown
/Agrave /Aacute /Acircumflex /Atilde
/Adieresis /Aring /AE /Ccedilla
/Egrave /Eacute /Ecircumflex /Edieresis
/Igrave /Iacute /Icircumflex /Idieresis
/Eth /Ntilde /Ograve /Oacute
/Ocircumflex /Otilde /Odieresis /multiply
/Oslash /Ugrave /Uacute /Ucircumflex
/Udieresis /Yacute /Thorn /germandbls
/agrave /aacute /acircumflex /atilde
/adieresis /aring /ae /ccedilla
/egrave /eacute /ecircumflex /edieresis
/igrave /iacute /icircumflex /idieresis
/eth /ntilde /ograve /oacute
/ocircumflex /otilde /odieresis /divide
/oslash /ugrave /uacute /ucircumflex
/udieresis /yacute /thorn /ydieresis
] def
%%EndResource
%%EndProlog
%%BeginSetup
%%IncludeResource: font Helvetica
%%IncludeResource: font Courier-Bold
/HFpt_w 10 def
/HFpt_h 10 def
/Courier-Bold /HF-gs-font MF
/HF /HF-gs-font findfont [HFpt_w 0 0 HFpt_h 0 0] makefont def
/Helvetica /F-gs-font MF
/F-gs-font 10 10 SF
/#copies 1 def
% Pagedevice definitions:
gs_languagelevel 1 gt {
<<
/PageSize [612 792]
>> setpagedevice
} if
/d_page_w 536 def
/d_page_h 744 def
/d_header_x 0 def
/d_header_y 744 def
/d_header_w 536 def
/d_header_h 0 def
/d_footer_x 0 def
/d_footer_y 0 def
/d_footer_w 536 def
/d_footer_h 0 def
/d_output_w 536 def
/d_output_h 744 def
/cols 8 def
%%EndSetup
%%Page: (1) 1
%%BeginPageSetup
_S
38 24 translate
/pagenum 1 def
/fname () def
/fdir () def
/ftail () def
/user_header_p false def
/user_footer_p false def
%%EndPageSetup
5 720 M
(1) s
5 709 M
(1970ies) s
5 698 M
(1972) s
5 687 M
(19th) s
5 676 M
(2) s
5 665 M
(20th) s
5 654 M
(3) s
5 643 M
(7) s
5 632 M
(a) s
5 621 M
(able) s
5 610 M
(achieve) s
5 599 M
(across) s
5 588 M
(acting) s
5 577 M
(actor) s
5 566 M
(add) s
5 555 M
(added) s
5 544 M
(after) s
5 533 M
(again) s
5 522 M
(age) s
5 511 M
(ago) s
5 500 M
(album) s
5 489 M
(albums) s
5 478 M
(all) s
5 467 M
(allows) s
5 456 M
(alone) s
5 445 M
(already) s
5 434 M
(also) s
5 423 M
(although) s
5 412 M
(always) s
5 401 M
(am) s
5 390 M
(among) s
5 379 M
(an) s
5 368 M
(and) s
5 357 M
(andy) s
5 346 M
(another) s
5 335 M
(anything) s
5 324 M
(apparently) s
5 313 M
(appreciated) s
5 302 M
(apt) s
5 291 M
(are) s
5 280 M
(argues) s
5 269 M
(art) s
5 258 M
(artdesign) s
5 247 M
(arthur) s
5 236 M
(articulating) s
5 225 M
(artifact) s
5 214 M
(artists) s
5 203 M
(arts) s
5 192 M
(as) s
5 181 M
(ask) s
5 170 M
(asking) s
5 159 M
(aspect) s
5 148 M
(aspirations) s
5 137 M
(at) s
5 126 M
(attributed) s
5 115 M
(audience) s
5 104 M
(author) s
5 93 M
(authors) s
5 82 M
(autobiograp) s
5 71 M
(hies) s
5 60 M
(available) s
5 49 M
(avantgarde) s
5 38 M
(away) s
5 27 M
(back) s
5 16 M
(band) s
5 5 M
(be) s
72 731 M
(because) s
72 720 M
(been) s
72 709 M
(before) s
72 698 M
(ben) s
72 687 M
(better) s
72 676 M
(between) s
72 665 M
(book) s
72 654 M
(both) s
72 643 M
(bowie) s
72 632 M
(bowies) s
72 621 M
(broad) s
72 610 M
(by) s
72 599 M
(b\303\266se) s
72 588 M
(c) s
72 577 M
(can) s
72 566 M
(case) s
72 555 M
(catchy) s
72 544 M
(cave) s
72 533 M
(celebrating) s
72 522 M
(century) s
72 511 M
(change) s
72 500 M
(characters) s
72 489 M
(choice) s
72 478 M
(christian) s
72 467 M
(claims) s
72 456 M
(clearly) s
72 445 M
(clich\303\251s) s
72 434 M
(combine) s
72 423 M
(come) s
72 412 M
(comes) s
72 401 M
(comment) s
72 390 M
(communicati) s
72 379 M
(on) s
72 368 M
(compared) s
72 357 M
(compel) s
72 346 M
(conceded) s
72 335 M
(conceived) s
72 324 M
(confessions) s
72 313 M
(constraints) s
72 302 M
(contemporar) s
72 291 M
(ies) s
72 280 M
(contemporar) s
72 269 M
(y) s
72 258 M
(contrast) s
72 247 M
(contributed) s
72 236 M
(control) s
72 225 M
(could) s
72 214 M
(course) s
72 203 M
(crafted) s
72 192 M
(create) s
72 181 M
(crowd) s
72 170 M
(cultural) s
72 159 M
(culture) s
72 148 M
(dance) s
72 137 M
(dancers) s
72 126 M
(danto) s
72 115 M
(david) s
72 104 M
(day) s
72 93 M
(death) s
72 82 M
(decidedly) s
72 71 M
(defining) s
72 60 M
(description) s
72 49 M
(designed) s
72 38 M
(designer) s
72 27 M
(designs) s
72 16 M
(did) s
72 5 M
(difference) s
139 731 M
(different) s
139 720 M
(difficulties) s
139 709 M
(digital) s
139 698 M
(direct) s
139 687 M
(directly) s
139 676 M
(dislike) s
139 665 M
(disposal) s
139 654 M
(disqus) s
139 643 M
(disseminatio) s
139 632 M
(n) s
139 621 M
(do) s
139 610 M
(does) s
139 599 M
(dory) s
139 588 M
(dots) s
139 577 M
(down) s
139 566 M
(duncan) s
139 555 M
(during) s
139 544 M
(early) s
139 533 M
(earth) s
139 522 M
(edge) s
139 511 M
(elaborate) s
139 500 M
(element) s
139 489 M
(email) s
139 478 M
(embracing) s
139 467 M
(enabling) s
139 456 M
(endeavour) s
139 445 M
(ended) s
139 434 M
(engineer) s
139 423 M
(engineers) s
139 412 M
(especially) s
139 401 M
(even) s
139 390 M
(eventual) s
139 379 M
(ever) s
139 368 M
(examples) s
139 357 M
(exemplified) s
139 346 M
(exemplify) s
139 335 M
(experience) s
139 324 M
(exploding) s
139 313 M
(explores) s
139 302 M
(factors) s
139 291 M
(failed) s
139 280 M
(fall) s
139 269 M
(fang) s
139 258 M
(fashion) s
139 247 M
(fasten) s
139 236 M
(fears) s
139 225 M
(featured) s
139 214 M
(figure) s
139 203 M
(find) s
139 192 M
(first) s
139 181 M
(fix) s
139 170 M
(following) s
139 159 M
(for) s
139 148 M
(forego) s
139 137 M
(forerunners) s
139 126 M
(freedom) s
139 115 M
(friedrich) s
139 104 M
(from) s
139 93 M
(fruition) s
139 82 M
(fulfill) s
139 71 M
(full) s
139 60 M
(further) s
139 49 M
(future) s
139 38 M
(general) s
139 27 M
(george) s
139 16 M
(goal) s
139 5 M
(going) s
206 731 M
(good) s
206 720 M
(graham) s
206 709 M
(group) s
206 698 M
(gut) s
206 687 M
(had) s
206 676 M
(hair) s
206 665 M
(hairdresser) s
206 654 M
(has) s
206 643 M
(have) s
206 632 M
(he) s
206 621 M
(her) s
206 610 M
(herald) s
206 599 M
(highly) s
206 588 M
(him) s
206 577 M
(his) s
206 566 M
(holzer) s
206 555 M
(home) s
206 544 M
(host) s
206 533 M
(how) s
206 522 M
(however) s
206 511 M
(hunky) s
206 500 M
(hypothesis) s
206 489 M
(i) s
206 478 M
(idea) s
206 467 M
(ideal) s
206 456 M
(ideas) s
206 445 M
(if) s
206 434 M
(im) s
206 423 M
(image) s
206 412 M
(images) s
206 401 M
(important) s
206 390 M
(imprint) s
206 379 M
(in) s
206 368 M
(indeed) s
206 357 M
(individual) s
206 346 M
(inevitable) s
206 335 M
(insane) s
206 324 M
(inspired) s
206 313 M
(instance) s
206 302 M
(institutionali) s
206 291 M
(sed) s
206 280 M
(intellectual) s
206 269 M
(interdisciplin) s
206 258 M
(ary) s
206 247 M
(interests) s
206 236 M
(into) s
206 225 M
(introspection) s
206 214 M
(invention) s
206 203 M
(inward) s
206 192 M
(is) s
206 181 M
(isadora) s
206 170 M
(it) s
206 159 M
(its) s
206 148 M
(japanese) s
206 137 M
(jenny) s
206 126 M
(jenseits) s
206 115 M
(join) s
206 104 M
(jolly) s
206 93 M
(just) s
206 82 M
(kimerer) s
206 71 M
(kind) s
206 60 M
(kiss) s
206 49 M
(knots) s
206 38 M
(know) s
206 27 M
(l) s
206 16 M
(lamothe) s
206 5 M
(landscape) s
273 731 M
(language) s
273 720 M
(large) s
273 709 M
(later) s
273 698 M
(learning) s
273 687 M
(least) s
273 676 M
(leave) s
273 665 M
(leaving) s
273 654 M
(lieder) s
273 643 M
(lifetime) s
273 632 M
(like) s
273 621 M
(liked) s
273 610 M
(literally) s
273 599 M
(login) s
273 588 M
(look) s
273 577 M
(looking) s