-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathprint-ttlpg.dsl
1006 lines (870 loc) · 26.9 KB
/
print-ttlpg.dsl
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
(mode book-titlepage-recto-mode
(element abbrev
(make paragraph
use: book-titlepage-recto-style
quadding: %division-title-quadding%
(process-children)))
(element abstract
(make display-group
use: book-titlepage-recto-style
quadding: 'start
($semiformal-object$)))
(element (abstract title) (empty-sosofo))
(element (abstract para)
(make paragraph
use: book-titlepage-recto-style
quadding: 'start
(process-children)))
(element address
(make display-group
use: book-titlepage-recto-style
quadding: %division-title-quadding%
(with-mode titlepage-address-mode
($linespecific-display$ %indent-address-lines% %number-address-lines%))))
(element affiliation
(make display-group
use: book-titlepage-recto-style
(process-children)))
(element artpagenums
(make paragraph
use: book-titlepage-recto-style
quadding: %division-title-quadding%
(process-children)))
(element author
(let ((author-name (author-string))
(author-affil (select-elements (children (current-node))
(normalize "affiliation"))))
(make sequence
(make paragraph
use: book-titlepage-recto-style
font-size: (HSIZE 1)
line-spacing: (* (HSIZE 1) %line-spacing-factor%)
space-before: (* (HSIZE 1) %head-before-factor%)
quadding: %division-title-quadding%
keep-with-next?: #t
(literal author-name))
(process-node-list author-affil))))
(element authorblurb
(make display-group
use: book-titlepage-recto-style
quadding: 'start
(process-children)))
(element (authorblurb para)
(make paragraph
use: book-titlepage-recto-style
quadding: 'start
(process-children)))
(element authorgroup
(make display-group
(process-children)))
(element authorinitials
(make paragraph
use: book-titlepage-recto-style
quadding: %division-title-quadding%
(process-children)))
(element bibliomisc (process-children))
(element bibliomset (process-children))
(element collab
(make paragraph
use: book-titlepage-recto-style
quadding: %division-title-quadding%
(process-children)))
(element confgroup
(make paragraph
use: book-titlepage-recto-style
quadding: %division-title-quadding%
(process-children)))
(element contractnum
(make paragraph
use: book-titlepage-recto-style
quadding: %division-title-quadding%
(process-children)))
(element contractsponsor
(make paragraph
use: book-titlepage-recto-style
quadding: %division-title-quadding%
(process-children)))
(element contrib
(make paragraph
use: book-titlepage-recto-style
quadding: %division-title-quadding%
(process-children)))
(element copyright
(make paragraph
use: book-titlepage-recto-style
quadding: %division-title-quadding%
space-before: (* (HSIZE 2) %head-before-factor%)
(literal (gentext-element-name (current-node)))
(literal "\no-break-space;")
(literal (dingbat "copyright"))
(literal "\no-break-space;")
(process-children)))
(element (copyright year)
(make sequence
(process-children)
(if (not (last-sibling? (current-node)))
(literal ", ")
(literal " "))))
(element (copyright holder) ($charseq$))
(element corpauthor
(make sequence
(make paragraph
use: book-titlepage-recto-style
font-size: (HSIZE 3)
line-spacing: (* (HSIZE 3) %line-spacing-factor%)
space-before: (* (HSIZE 2) %head-before-factor%)
quadding: %division-title-quadding%
keep-with-next?: #t
(process-children))
;; This paragraph is a hack to get the spacing right.
;; Authors always have an affiliation paragraph below them, even if
;; it's empty, so corpauthors need one too.
(make paragraph
use: book-titlepage-recto-style
font-size: (HSIZE 1)
line-spacing: (* (HSIZE 1) %line-spacing-factor%)
space-after: (* (HSIZE 2) %head-after-factor% 4)
quadding: %division-title-quadding%
keep-with-next?: #t
(literal "\no-break-space;"))))
(element corpname
(make paragraph
use: book-titlepage-recto-style
quadding: %division-title-quadding%
(process-children)))
(element date
(make paragraph
use: book-titlepage-recto-style
quadding: %division-title-quadding%
(process-children)))
(element edition
(make paragraph
use: book-titlepage-recto-style
quadding: %division-title-quadding%
(process-children)
(literal "\no-break-space;")
(literal (gentext-element-name-space (gi (current-node))))))
(element editor
(let ((editor-name (author-string)))
(make sequence
(if (first-sibling?)
(make paragraph
use: book-titlepage-recto-style
font-size: (HSIZE 1)
line-spacing: (* (HSIZE 1) %line-spacing-factor%)
space-before: (* (HSIZE 2) %head-before-factor% 6)
quadding: %division-title-quadding%
keep-with-next?: #t
(literal (gentext-edited-by)))
(empty-sosofo))
(make paragraph
use: book-titlepage-recto-style
font-size: (HSIZE 3)
line-spacing: (* (HSIZE 3) %line-spacing-factor%)
space-after: (* (HSIZE 2) %head-after-factor% 4)
quadding: %division-title-quadding%
keep-with-next?: #t
(literal editor-name)))))
(element firstname
(make paragraph
use: book-titlepage-recto-style
quadding: %division-title-quadding%
(process-children)))
(element graphic
(let* ((nd (current-node))
(fileref (attribute-string "fileref" nd))
(entityref (attribute-string "entityref" nd))
(format (attribute-string "format" nd))
(align (attribute-string "align" nd)))
(if (or fileref entityref)
(make external-graphic
notation-system-id: (if format format "")
entity-system-id: (if fileref
(graphic-file fileref)
(if entityref
(entity-generated-system-id entityref)
""))
display?: #t
display-alignment: 'center)
(empty-sosofo))))
(element honorific
(make paragraph
use: book-titlepage-recto-style
quadding: %division-title-quadding%
(process-children)))
(element isbn
(make paragraph
use: book-titlepage-recto-style
quadding: %division-title-quadding%
(process-children)))
(element issn
(make paragraph
use: book-titlepage-recto-style
quadding: %division-title-quadding%
(process-children)))
(element itermset (empty-sosofo))
(element invpartnumber
(make paragraph
use: book-titlepage-recto-style
quadding: %division-title-quadding%
(process-children)))
(element issuenum
(make paragraph
use: book-titlepage-recto-style
quadding: %division-title-quadding%
(process-children)))
(element jobtitle
(make paragraph
use: book-titlepage-recto-style
quadding: %division-title-quadding%
(process-children)))
(element keywordset
(make paragraph
quadding: 'start
(make sequence
font-weight: 'bold
(literal "Keywords: "))
(process-children)))
(element (keyword)
(make sequence
(process-children)
(if (not (last-sibling?))
(literal ", ")
(literal ""))))
(element legalnotice
(make display-group
use: book-titlepage-recto-style
($semiformal-object$)))
(element (legalnotice title) (empty-sosofo))
(element (legalnotice para)
(make paragraph
use: book-titlepage-recto-style
quadding: 'start
line-spacing: (* 0.8 (inherited-line-spacing))
font-size: (* 0.8 (inherited-font-size))
(process-children)))
(element lineage
(make paragraph
use: book-titlepage-recto-style
quadding: %division-title-quadding%
(process-children)))
(element modespec (empty-sosofo))
(element orgdiv
(make paragraph
use: book-titlepage-recto-style
quadding: %division-title-quadding%
(process-children)))
(element orgname
(make paragraph
use: book-titlepage-recto-style
quadding: %division-title-quadding%
(process-children)))
(element othercredit
(let ((author-name (author-string))
(author-affil (select-elements (children (current-node))
(normalize "affiliation"))))
(make sequence
(make paragraph
use: book-titlepage-recto-style
font-size: (HSIZE 3)
line-spacing: (* (HSIZE 3) %line-spacing-factor%)
space-before: (* (HSIZE 2) %head-before-factor%)
quadding: %division-title-quadding%
keep-with-next?: #t
(literal author-name))
(process-node-list author-affil))))
(element othername
(make paragraph
use: book-titlepage-recto-style
quadding: %division-title-quadding%
(process-children)))
(element pagenums
(make paragraph
use: book-titlepage-recto-style
quadding: %division-title-quadding%
(process-children)))
(element printhistory
(make paragraph
use: book-titlepage-recto-style
quadding: %division-title-quadding%
(process-children)))
(element productname
(make paragraph
use: book-titlepage-recto-style
quadding: %division-title-quadding%
(process-children)))
(element productnumber
(make paragraph
use: book-titlepage-recto-style
quadding: %division-title-quadding%
(process-children)))
(element pubdate
(make paragraph
use: book-titlepage-recto-style
quadding: %division-title-quadding%
(process-children)))
(element publisher
(make display-group
use: book-titlepage-recto-style
quadding: %division-title-quadding%
(process-children)))
(element publishername
(make paragraph
use: book-titlepage-recto-style
quadding: %division-title-quadding%
(process-children)))
(element pubsnumber
(make paragraph
use: book-titlepage-recto-style
quadding: %division-title-quadding%
(process-children)))
(element releaseinfo
(make paragraph
use: book-titlepage-recto-style
quadding: %division-title-quadding%
(process-children)))
(element revhistory
(make sequence
(make paragraph
use: book-titlepage-recto-style
space-before: (* (HSIZE 3) %head-before-factor%)
space-after: (/ (* (HSIZE 1) %head-before-factor%) 2)
(literal (gentext-element-name (current-node))))
(make table
before-row-border: #f
(process-children))))
(element (revhistory revision)
(let ((revnumber (select-elements (descendants (current-node))
(normalize "revnumber")))
(revdate (select-elements (descendants (current-node))
(normalize "date")))
(revauthor (select-elements (descendants (current-node))
(normalize "authorinitials")))
(revremark (select-elements (descendants (current-node))
(normalize "revremark")))
(revdescription (select-elements (descendants (current-node))
(normalize "revdescription"))))
(make sequence
(make table-row
(make table-cell
column-number: 1
n-columns-spanned: 1
n-rows-spanned: 1
start-indent: 0pt
(if (not (node-list-empty? revnumber))
(make paragraph
use: book-titlepage-recto-style
font-size: %bf-size%
font-weight: 'medium
(literal (gentext-element-name-space (current-node)))
(process-node-list revnumber))
(empty-sosofo)))
(make table-cell
column-number: 2
n-columns-spanned: 1
n-rows-spanned: 1
start-indent: 0pt
cell-before-column-margin: (if (equal? (print-backend) 'tex)
6pt
0pt)
(if (not (node-list-empty? revdate))
(make paragraph
use: book-titlepage-recto-style
font-size: %bf-size%
font-weight: 'medium
(process-node-list revdate))
(empty-sosofo)))
(make table-cell
column-number: 3
n-columns-spanned: 1
n-rows-spanned: 1
start-indent: 0pt
cell-before-column-margin: (if (equal? (print-backend) 'tex)
6pt
0pt)
(if (not (node-list-empty? revauthor))
(make paragraph
use: book-titlepage-recto-style
font-size: %bf-size%
font-weight: 'medium
(literal (gentext-revised-by))
(process-node-list revauthor))
(empty-sosofo))))
(make table-row
cell-after-row-border: #f
(make table-cell
column-number: 1
n-columns-spanned: 3
n-rows-spanned: 1
start-indent: 0pt
(cond ((not (node-list-empty? revremark))
(make paragraph
use: book-titlepage-recto-style
font-size: %bf-size%
font-weight: 'medium
space-after: (if (last-sibling?)
0pt
(/ %block-sep% 2))
(process-node-list revremark)))
((not (node-list-empty? revdescription))
(make sequence
use: book-titlepage-recto-style
font-size: %bf-size%
font-weight: 'medium
(process-node-list revremark)))
(else (empty-sosofo))))))))
(element (revision revnumber) (process-children-trim))
(element (revision date) (process-children-trim))
(element (revision authorinitials) (process-children-trim))
(element (revision revremark) (process-children-trim))
(element (revision revdescription) (process-children))
(element seriesvolnums
(make paragraph
use: book-titlepage-recto-style
quadding: %division-title-quadding%
(process-children)))
(element shortaffil
(make paragraph
use: book-titlepage-recto-style
quadding: %division-title-quadding%
(process-children)))
(element subjectset (empty-sosofo))
(element subtitle
(make paragraph
use: book-titlepage-recto-style
font-size: (HSIZE 4)
line-spacing: (* (HSIZE 4) %line-spacing-factor%)
space-before: (* (HSIZE 4) %head-before-factor%)
quadding: %division-subtitle-quadding%
keep-with-next?: #t
(process-children-trim)))
(element surname
(make paragraph
use: book-titlepage-recto-style
quadding: %division-title-quadding%
(process-children)))
; This is the front page of the document.
(element title
(make sequence
(make paragraph
use: book-titlepage-recto-style
font-size: (HSIZE 5)
line-spacing: (* (HSIZE 5) %line-spacing-factor%)
space-before: (* (HSIZE 5) %head-before-factor%)
quadding: %division-title-quadding%
keep-with-next?: #t
heading-level: (if %generate-heading-level% 1 0)
(make sequence
<![%DRAFT;[(literal "&DRAFTTEXT")]]>
(with-mode title-mode
(process-children-trim))))
(make external-graphic
display?: #t
scale: 0.25
display-alignment: 'center
;entity-system-id: "graphics/p_source_c.jpg"
entity-system-id: "graphics/Power.png"
display-alignment: 'start
)
))
(element formalpara ($para-container$))
(element (formalpara title) ($runinhead$))
(element (formalpara para) (make sequence (process-children)))
(element titleabbrev (empty-sosofo))
(element volumenum
(make paragraph
use: book-titlepage-recto-style
quadding: %division-title-quadding%
(process-children)))
)
(mode book-titlepage-verso-mode
(element abbrev
(make paragraph
use: book-titlepage-verso-style
(process-children)))
(element abstract ($semiformal-object$))
(element (abstract title) (empty-sosofo))
(element address
(make display-group
use: book-titlepage-verso-style
(with-mode titlepage-address-mode
($linespecific-display$ %indent-address-lines% %number-address-lines%))))
(element affiliation
(make paragraph
use: book-titlepage-verso-style
(process-children)))
(element artpagenums
(make paragraph
use: book-titlepage-verso-style
(process-children)))
(element author
;; Print the author name. Handle the case where there's no AUTHORGROUP
(let ((in-group (have-ancestor? (normalize "authorgroup") (current-node))))
(if (not in-group)
(make paragraph
;; Hack to get the spacing right below the author name line...
;space-after: (* %bf-size% %line-spacing-factor%)
space-after: (* (/ %bf-size% 4) %line-spacing-factor%)
(make sequence
(literal (gentext-by))
(literal "\no-break-space;")
(literal (author-list-string))))
(make sequence
(literal (author-list-string))))))
(element authorblurb
(make paragraph
use: book-titlepage-verso-style
(process-children)))
(element authorgroup
(let* ((editors (select-elements (children (current-node)) (normalize "editor"))))
(make paragraph
space-after: (* %bf-size% %line-spacing-factor%)
(make sequence
(if (node-list-empty? editors)
(literal (gentext-by))
(literal (gentext-edited-by)))
(literal "\no-break-space;")
(process-children-trim)))))
(element authorinitials
(make paragraph
use: book-titlepage-verso-style
(process-children)))
(element bibliomisc (process-children))
(element bibliomset (process-children))
(element collab
(make paragraph
use: book-titlepage-verso-style
(process-children)))
(element confgroup
(make paragraph
use: book-titlepage-verso-style
(process-children)))
(element contractnum
(make paragraph
use: book-titlepage-verso-style
(process-children)))
(element contractsponsor
(make paragraph
use: book-titlepage-verso-style
(process-children)))
(element contrib
(make paragraph
use: book-titlepage-verso-style
(process-children)))
(element copyright
(make paragraph
use: book-titlepage-verso-style
(literal (gentext-element-name (current-node)))
(literal "\no-break-space;")
(literal (dingbat "copyright"))
(literal "\no-break-space;")
(process-children)))
(element (copyright year)
(make sequence
(process-children)
(if (not (last-sibling? (current-node)))
(literal ", ")
(literal " "))))
(element (copyright holder) ($charseq$))
(element corpauthor
;; note: book-titlepage-corpauthor takes care of wrapping multiple
;; corpauthors
(make sequence
(if (first-sibling?)
(if (equal? (gi (parent (current-node))) (normalize "authorgroup"))
(empty-sosofo)
(literal (gentext-by) " "))
(literal ", "))
(process-children)))
(element corpname
(make paragraph
use: book-titlepage-verso-style
(process-children)))
(element date
(make paragraph
use: book-titlepage-verso-style
(process-children)))
(element edition
(make paragraph
(process-children)
(literal "\no-break-space;")
(literal (gentext-element-name-space (gi (current-node))))))
(element editor
;; Print the editor name.
(let ((in-group (have-ancestor? (normalize "authorgroup") (current-node))))
(if (or #f (not in-group)) ; nevermind, always put out the Edited by
(make paragraph
;; Hack to get the spacing right below the author name line...
space-after: (* %bf-size% %line-spacing-factor%)
(make sequence
(literal (gentext-edited-by))
(literal "\no-break-space;")
(literal (author-string))))
(make sequence
(literal (author-list-string))))))
(element firstname
(make paragraph
use: book-titlepage-verso-style
(process-children)))
(element graphic
(let* ((nd (current-node))
(fileref (attribute-string "fileref" nd))
(entityref (attribute-string "entityref" nd))
(format (attribute-string "format" nd))
(align (attribute-string "align" nd)))
(if (or fileref entityref)
(make external-graphic
notation-system-id: (if format format "")
entity-system-id: (if fileref
(graphic-file fileref)
(if entityref
(entity-generated-system-id entityref)
""))
display?: #t
display-alignment: 'start)
(empty-sosofo))))
(element honorific
(make paragraph
use: book-titlepage-verso-style
(process-children)))
(element isbn
(make paragraph
use: book-titlepage-verso-style
(process-children)))
(element issn
(make paragraph
use: book-titlepage-verso-style
(process-children)))
(element itermset (empty-sosofo))
(element invpartnumber
(make paragraph
use: book-titlepage-verso-style
(process-children)))
(element issuenum
(make paragraph
use: book-titlepage-verso-style
(process-children)))
(element jobtitle
(make paragraph
use: book-titlepage-verso-style
(process-children)))
(element keywordset
(make paragraph
quadding: 'start
(make sequence
font-weight: 'bold
(literal "Keywords: "))
(process-children)))
(element (keyword)
(make sequence
(process-children)
(if (not (last-sibling?))
(literal ", ")
(literal ""))))
(element legalnotice
(make display-group
use: book-titlepage-verso-style
($semiformal-object$)))
(element (legalnotice title) (empty-sosofo))
(element (legalnotice para)
(make paragraph
use: book-titlepage-verso-style
font-size: (* (inherited-font-size) 0.8)
(process-children-trim)))
(element lineage
(make paragraph
use: book-titlepage-verso-style
(process-children)))
(element modespec (empty-sosofo))
(element orgdiv
(make paragraph
use: book-titlepage-verso-style
(process-children)))
(element orgname
(make paragraph
use: book-titlepage-verso-style
(process-children)))
(element othercredit
;; Print the author name. Handle the case where there's no AUTHORGROUP
(let ((in-group (have-ancestor? (normalize "authorgroup") (current-node))))
(if (not in-group)
(make paragraph
;; Hack to get the spacing right below the author name line...
space-after: (* %bf-size% %line-spacing-factor% )
(make sequence
(literal (gentext-by))
(literal "\no-break-space;")
(literal (author-list-string))))
(make sequence
(literal (author-list-string))))))
(element othername
(make paragraph
use: book-titlepage-verso-style
(process-children)))
(element pagenums
(make paragraph
use: book-titlepage-verso-style
(process-children)))
(element printhistory
(make display-group
use: book-titlepage-verso-style
(process-children)))
(element productname
(make paragraph
use: book-titlepage-verso-style
(process-children)))
(element productnumber
(make paragraph
use: book-titlepage-verso-style
(process-children)))
(element pubdate
(make paragraph
(literal (gentext-element-name-space (gi (current-node))))
(process-children)))
(element publisher
(make paragraph
use: book-titlepage-verso-style
(process-children)))
(element publishername
(make paragraph
use: book-titlepage-verso-style
(process-children)))
(element pubsnumber
(make paragraph
use: book-titlepage-verso-style
(process-children)))
(element releaseinfo
(make paragraph
use: book-titlepage-verso-style
(process-children)))
(element revhistory
(make sequence
(make paragraph
use: book-titlepage-verso-style
space-before: (* (HSIZE 3) %head-before-factor%)
space-after: (/ (* (HSIZE 1) %head-before-factor%) 2)
(literal (gentext-element-name (current-node))))
(make table
before-row-border: #f
(process-children))))
(element (revhistory revision)
(let ((revnumber (select-elements (descendants (current-node))
(normalize "revnumber")))
(revdate (select-elements (descendants (current-node))
(normalize "date")))
(revauthor (select-elements (descendants (current-node))
(normalize "authorinitials")))
(revremark (select-elements (descendants (current-node))
(normalize "revremark")))
(revdescription (select-elements (descendants (current-node))
(normalize "revdescription"))))
(make sequence
(make table-row
(make table-cell
column-number: 1
n-columns-spanned: 1
n-rows-spanned: 1
start-indent: 0pt
(if (not (node-list-empty? revnumber))
(make paragraph
use: book-titlepage-verso-style
font-size: %bf-size%
font-weight: 'medium
(literal (gentext-element-name-space (current-node)))
(process-node-list revnumber))
(empty-sosofo)))
(make table-cell
column-number: 2
n-columns-spanned: 1
n-rows-spanned: 1
start-indent: 0pt
cell-before-column-margin: (if (equal? (print-backend) 'tex)
6pt
0pt)
(if (not (node-list-empty? revdate))
(make paragraph
use: book-titlepage-verso-style
font-size: %bf-size%
font-weight: 'medium
(process-node-list revdate))
(empty-sosofo)))
(make table-cell
column-number: 3
n-columns-spanned: 1
n-rows-spanned: 1
start-indent: 0pt
cell-before-column-margin: (if (equal? (print-backend) 'tex)
6pt
0pt)
(if (not (node-list-empty? revauthor))
(make paragraph
use: book-titlepage-verso-style
font-size: %bf-size%
font-weight: 'medium
(literal (gentext-revised-by))
(process-node-list revauthor))
(empty-sosofo))))
(make table-row
cell-after-row-border: #f
(make table-cell
column-number: 1
n-columns-spanned: 3
n-rows-spanned: 1
start-indent: 0pt
(cond ((not (node-list-empty? revremark))
(make paragraph
use: book-titlepage-verso-style
font-size: %bf-size%
font-weight: 'medium
space-after: (if (last-sibling?)
0pt
(/ %block-sep% 2))
(process-node-list revremark)))
((not (node-list-empty? revdescription))
(make sequence
use: book-titlepage-verso-style
font-size: %bf-size%
font-weight: 'medium
(process-node-list revdescription)))
(else (empty-sosofo))))))))
(element (revision revnumber) (process-children-trim))
(element (revision date) (process-children-trim))
(element (revision authorinitials) (process-children-trim))
(element (revision revremark) (process-children-trim))
(element (revision revdescription) (process-children))
(element seriesvolnums
(make paragraph
use: book-titlepage-verso-style
(process-children)))
(element shortaffil
(make paragraph
use: book-titlepage-verso-style
(process-children)))
(element subjectset (empty-sosofo))
(element subtitle
(make sequence
font-family-name: %title-font-family%
font-weight: 'bold
(literal (if (first-sibling?) ": " "; "))
(process-children)))
(element surname
(make paragraph
use: book-titlepage-verso-style
(process-children)))
(element title
(make sequence
font-family-name: %title-font-family%
font-weight: 'bold
(with-mode title-mode
(make sequence
<![%DRAFT;[(literal "&DRAFTTEXT")]]>
(process-children)))))
(element formalpara ($para-container$))
(element (formalpara title) ($runinhead$))
(element (formalpara para) (make sequence (process-children)))
(element titleabbrev (empty-sosofo))