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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
|
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Formatting Object Parameter Reference</title>
<link rel="stylesheet" href="../reference.css" type="text/css">
<meta name="generator" content="DocBook XSL Stylesheets V1">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
<div class="reference">
<div class="titlepage">
<div>
<h1 class="title"><a name="d0e1"></a>Formatting Object Parameter Reference
</h1>
</div>
<div>
<h3 class="author">Norman Walsh</h3>
</div>
<div>
<p class="releaseinfo">
$Id: param.html,v 1.1 2002/05/15 17:22:23 isberg Exp $
</p>
</div>
<div>
<p class="copyright"><a href="../copyright.html">Copyright</a> © 1999, 2000 by Norman Walsh. <a href="../warranty.html">No Warranty</a>.
</p>
</div>
<hr>
</div>
<div class="partintro">
<div></div>
<div class="section"><a name="d0e24"></a><div class="titlepage">
<div>
<h2 class="title" style="clear: both"><a name="d0e24"></a>Introduction
</h2>
</div>
</div>
<p>This is technical reference documentation for the DocBook XSL
Stylesheets; it documents (some of) the parameters, templates, and
other elements of the stylesheets.
</p>
<p>This reference describes each of the Formatting Object
Stylesheet parameters. These are the easily
customizable parts of the stylesheet. If you want to specify
an alternate value for one or more of these parameters, you can do so
in a driver stylesheet.
</p>
<p>For example, if you want to turn on automatic section numbering,
you might create a driver stylesheet like this:
</p><pre class="programlisting"><xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version='1.0'>
<xsl:import href="/path/to/fo/docbook.xsl"/>
<xsl:param name="section.autolabel" select="1"/>
</xsl:stylesheet></pre><p>Naturally, you have to change the
<tt>href</tt> attribute on
<tt><xsl:import></tt>
to point to <tt>docbook.xsl</tt>
on your system.
</p>
<p>This is not intended to be user documentation.
It is provided for developers writing customization layers for the
stylesheets, and for anyone who's interested in how it
works.
</p>
<p>Although I am trying to be thorough, this documentation is known
to be incomplete. Don't forget to read the source, too :-)
</p>
</div>
<div class="toc">
<p><b>Table of Contents</b></p>
<dl>
<dt><a href="#param.admon.graphics.extension">admon.graphics.extension</a> - Extension for admonition graphics
</dt>
<dt><a href="#var.qandadiv.autolabel">qandadiv.autolabel</a> - Are divisions in QAndASets enumerated?
</dt>
<dt><a href="#var.qanda.inherit.numeration">qanda.inherit.numeration</a> - Does enumeration of QandASet components inherit the numeration of parent elements?
</dt>
<dt><a href="#var.graphic.default.extension">graphic.default.extension</a> - Default extension for graphic filenames
</dt>
<dt><a href="#attrset.formal.title.properties">formal.title.properties mode</a> - Properties of formal object titles
</dt>
<dt><a href="#attrset.component.title.properties">component.title.properties mode</a> - Properties of component titles
</dt>
<dt><a href="#attrset.admonition.title.properties">admonition.title.properties mode</a> - Properties of admonition titles
</dt>
<dt><a href="#attrset.xref.properties">xref.properties mode</a> - Visual properties of hotlinks
</dt>
<dt><a href="#param.insert.xref.page.number">insert.xref.page.number</a> - Turns page numbers in xrefs on and off
</dt>
<dt><a href="#attrset.normal.para.spacing">normal.para.spacing mode</a> - Spacing properties of normal paragraphs
</dt>
<dt><a href="#attrset.list.block.spacing">list.block.spacing mode</a> - Spacing properties of list blocks
</dt>
<dt><a href="#attrset.list.item.spacing">list.item.spacing mode</a> - Spacing properties of list items
</dt>
<dt><a href="#param.rootid">rootid</a> - Specify the root element to format
</dt>
<dt><a href="#param.callout.graphics">callout.graphics</a> - Use graphics for callouts?
</dt>
<dt><a href="#param.callout.unicode">callout.unicode</a> - First character to use for Unicode callouts
</dt>
<dt><a href="#param.callout.unicode.font">callout.unicode.font</a> - Font to use for Unicode dingbats
</dt>
<dt><a href="#param.callout.unicode.start.character">callout.unicode.start.character</a> - Number of the largest callout graphic
</dt>
<dt><a href="#param.callout.unicode.number.limit">callout.unicode.number.limit</a> - Number of the largest callout graphic
</dt>
<dt><a href="#param.callout.graphics.extension">callout.graphics.extension</a> - Extension for callout graphics
</dt>
<dt><a href="#param.callout.graphics.path">callout.graphics.path</a> - Path to callout graphics
</dt>
<dt><a href="#param.callout.graphics.number.limit">callout.graphics.number.limit</a> - Number of the largest callout graphic
</dt>
<dt><a href="#param.use.extensions">use.extensions</a> - Enable extensions
</dt>
<dt><a href="#param.textinsert.extension">textinsert.extension</a> - Enable the textinsert extension element
</dt>
<dt><a href="#param.linenumbering.extension">linenumbering.extension</a> - Enable the line numbering extension
</dt>
<dt><a href="#param.linenumbering.everyNth">linenumbering.everyNth</a> - Indicate which lines should be numbered
</dt>
<dt><a href="#param.linenumbering.width">linenumbering.width</a> - Indicates the width of line numbers
</dt>
<dt><a href="#param.linenumbering.separator">linenumbering.separator</a> - Specify a separator between line numbers and lines
</dt>
<dt><a href="#param.callouts.extension">callouts.extension</a> - Enable the callout extension
</dt>
<dt><a href="#param.callout.defaultcolumn">callout.defaultcolumn</a> - Indicates what column callouts appear in by default
</dt>
<dt><a href="#param.tablecolumns.extension">tablecolumns.extension</a> - Enable the table columns extension function
</dt>
<dt><a href="#param.nominal.table.width">nominal.table.width</a> - The (absolute) nominal width of tables
</dt>
<dt><a href="#param.default.table.width">default.table.width</a> - The default width of tables
</dt>
<dt><a href="#param.paper.type">paper.type</a> - Select the paper type
</dt>
<dt><a href="#param.page.orientation">page.orientation</a> - Select the page orientation
</dt>
<dt><a href="#param.page.width.portrait">page.width.portrait</a> - Specify the physical size of the short edge of the page
</dt>
<dt><a href="#param.page.height.portrait">page.height.portrait</a> - Specify the physical size of the long edge of the page
</dt>
<dt><a href="#param.page.width">page.width</a> - The width of the physical page
</dt>
<dt><a href="#param.page.height">page.height</a> - The height of the physical page
</dt>
<dt><a href="#param.double.sided">double.sided</a> - Is the document to be printed double sided?
</dt>
<dt><a href="#param.column.count">column.count</a> - Specifies the number of columns of text on the page
</dt>
<dt><a href="#param.region.after.extent">region.after.extent</a> - Specifies the height of the footer.
</dt>
<dt><a href="#param.region.before.extent">region.before.extent</a> - Specifies the height of the header
</dt>
<dt><a href="#param.page.margin.top">page.margin.top</a> - The top margin of the page
</dt>
<dt><a href="#param.page.margin.bottom">page.margin.bottom</a> - The bottom margin of the page
</dt>
<dt><a href="#param.page.margin.inner">page.margin.inner</a> - The inner page margin
</dt>
<dt><a href="#param.page.margin.outer">page.margin.outer</a> - The outer page margin
</dt>
<dt><a href="#param.body.margin.bottom">body.margin.bottom</a> - The bottom margin of the body text
</dt>
<dt><a href="#param.body.margin.top">body.margin.top</a> - FIXME:
</dt>
<dt><a href="#param.body.font.family">body.font.family</a> - The default font family for body text
</dt>
<dt><a href="#param.title.font.family">title.font.family</a> - The default font family for titles
</dt>
<dt><a href="#param.monospace.font.family">monospace.font.family</a> - The default font family for monospace environments
</dt>
<dt><a href="#param.sans.font.family">sans.font.family</a> - The default sans-serif font family
</dt>
<dt><a href="#param.dingbat.font.family">dingbat.font.family</a> - The font family for copyright, quotes, and other symbols
</dt>
<dt><a href="#param.body.font.master">body.font.master</a> - Specifies the default point size for body text
</dt>
<dt><a href="#param.body.font.size">body.font.size</a> - Specifies the default font size for body text
</dt>
<dt><a href="#param.footnote.font.size">footnote.font.size</a> - The font size for footnotes
</dt>
<dt><a href="#param.hyphenate">hyphenate</a> - Specify hyphenation behavior
</dt>
<dt><a href="#param.alignment">alignment</a> - Specify the default text alignment
</dt>
<dt><a href="#param.stylesheet.result.type">stylesheet.result.type</a> - Identifies the output format of this stylesheet
</dt>
<dt><a href="#param.generate.component.toc">generate.component.toc</a> - Generate a table of contents for components?
</dt>
<dt><a href="#param.generate.division.toc">generate.division.toc</a> - Generate a table of contents for divisions?
</dt>
<dt><a href="#param.generate.division.figure.lot">generate.division.figure.lot</a> - Generate a list of titles for Figures?
</dt>
<dt><a href="#param.generate.division.example.lot">generate.division.example.lot</a> - Generate a list of titles for Examples?
</dt>
<dt><a href="#param.generate.division.equation.lot">generate.division.equation.lot</a> - Generate a list of titles for Equations?
</dt>
<dt><a href="#param.generate.division.table.lot">generate.division.table.lot</a> - Generate a list of titles for Tables?
</dt>
<dt><a href="#param.passivetex.extensions">passivetex.extensions</a> - Enable PassiveTeX extensions?
</dt>
<dt><a href="#param.arbortext.extensions">arbortext.extensions</a> - Enable Arbortext extensions?
</dt>
<dt><a href="#param.fop.extensions">fop.extensions</a> - Enable FOP extensions?
</dt>
<dt><a href="#param.xep.extensions">xep.extensions</a> - Enable XEP extensions?
</dt>
<dt><a href="#param.default.units">default.units</a> - Default units for an unqualified dimension
</dt>
<dt><a href="#param.label.from.part">label.from.part</a> - Renumber chapters in each part?
</dt>
<dt><a href="#param.formal.procedures">formal.procedures</a> - Selects formal or informal procedures
</dt>
<dt><a href="#param.bibliography.collection">bibliography.collection</a> - Name of the bibliography collection file
</dt>
<dt><a href="#param.format.variablelist.as.list">format.variablelist.as.list</a> - Use an fo:list to format VariableLists?
</dt>
<dt><a href="#param.runinhead.title.end.punct">runinhead.title.end.punct</a> - Characters that count as punctuation on a run-in-head
</dt>
<dt><a href="#param.runinhead.default.title.end.punct">runinhead.default.title.end.punct</a> - Default punctuation character on a run-in-head
</dt>
</dl>
</div>
</div>
<hr>
<div class="refentry">
<h1 class="title"><a name="param.admon.graphics.extension"></a>admon.graphics.extension
</h1>
<div class="refnamediv"><a name="d0e63"></a><h2>Name</h2>admon.graphics.extension — Extension for admonition graphics
</div>
<div class="refsynopsisdiv"><a name="d0e68"></a><h2>Synopsis</h2><pre class="synopsis">
<xsl:param name="admon.graphics.extension" select="'.png'" doc:type="string"/></pre></div>
<div class="refdescription"><a name="d0e71"></a>
<p>Sets the extension to use on admonition graphics.</p>
</div>
</div>
<hr>
<div class="refentry">
<h1 class="title"><a name="var.qandadiv.autolabel"></a>qandadiv.autolabel
</h1>
<div class="refnamediv"><a name="d0e77"></a><h2>Name</h2>qandadiv.autolabel — Are divisions in QAndASets enumerated?
</div>
<div class="refsynopsisdiv"><a name="d0e82"></a><h2>Synopsis</h2><pre class="synopsis"></pre></div>
<div class="refdescription"><a name="d0e84"></a>
<p>If true (non-zero), unlabeled qandadivs will be enumerated.
</p>
</div>
</div>
<hr>
<div class="refentry">
<h1 class="title"><a name="var.qanda.inherit.numeration"></a>qanda.inherit.numeration
</h1>
<div class="refnamediv"><a name="d0e90"></a><h2>Name</h2>qanda.inherit.numeration — Does enumeration of QandASet components inherit the numeration of parent elements?
</div>
<div class="refsynopsisdiv"><a name="d0e95"></a><h2>Synopsis</h2><pre class="synopsis"></pre></div>
<div class="refdescription"><a name="d0e97"></a>
<p>If true (non-zero), numbered QandADiv elements and Questions and Answers inherit
the numeration of the ancestors of the QandASet.
</p>
</div>
</div>
<hr>
<div class="refentry">
<h1 class="title"><a name="var.graphic.default.extension"></a>graphic.default.extension
</h1>
<div class="refnamediv"><a name="d0e103"></a><h2>Name</h2>graphic.default.extension — Default extension for graphic filenames
</div>
<div class="refsynopsisdiv"><a name="d0e108"></a><h2>Synopsis</h2><pre class="synopsis"></pre></div>
<div class="refdescription"><a name="d0e110"></a>
<p>If a <tt>graphic</tt> or <tt>mediaobject</tt>
includes a reference to a filename that does not include an extension,
and the <tt>format</tt> attribute is
<span class="emphasis"><i>unspecified</i></span>, the default extension will be used.
</p>
</div>
</div>
<hr>
<div class="refentry">
<h1 class="title"><a name="attrset.formal.title.properties"></a>formal.title.properties mode
</h1>
<div class="refnamediv"><a name="d0e128"></a><h2>Name</h2>formal.title.properties mode — Properties of formal object titles
</div>
<div class="refdescription"><a name="d0e133"></a>
<p>This attribute set is used to specify the properties of formal
object titles.
</p>
</div>
</div>
<hr>
<div class="refentry">
<h1 class="title"><a name="attrset.component.title.properties"></a>component.title.properties mode
</h1>
<div class="refnamediv"><a name="d0e139"></a><h2>Name</h2>component.title.properties mode — Properties of component titles
</div>
<div class="refdescription"><a name="d0e144"></a>
<p>This attribute set is used to specify the properties of component
titles.
</p>
</div>
</div>
<hr>
<div class="refentry">
<h1 class="title"><a name="attrset.admonition.title.properties"></a>admonition.title.properties mode
</h1>
<div class="refnamediv"><a name="d0e150"></a><h2>Name</h2>admonition.title.properties mode — Properties of admonition titles
</div>
<div class="refdescription"><a name="d0e155"></a>
<p>This attribute set is used to specify the properties of admonition
titles.
</p>
</div>
</div>
<hr>
<div class="refentry">
<h1 class="title"><a name="attrset.xref.properties"></a>xref.properties mode
</h1>
<div class="refnamediv"><a name="d0e161"></a><h2>Name</h2>xref.properties mode — Visual properties of hotlinks
</div>
<div class="refdescription"><a name="d0e166"></a>
<p>This attribute set is used to specify properties of xrefs
</p>
</div>
</div>
<hr>
<div class="refentry">
<h1 class="title"><a name="param.insert.xref.page.number"></a>insert.xref.page.number
</h1>
<div class="refnamediv"><a name="d0e172"></a><h2>Name</h2>insert.xref.page.number — Turns page numbers in xrefs on and off
</div>
<div class="refsynopsisdiv"><a name="d0e177"></a><h2>Synopsis</h2><pre class="synopsis">
<xsl:param name="insert.xref.page.number" select="0" doc:type="boolean"/></pre></div>
<div class="refdescription"><a name="d0e180"></a>
<p>When equal to 1, this parameter triggers generation of page
number citations after xrefs.
</p>
</div>
</div>
<hr>
<div class="refentry">
<h1 class="title"><a name="attrset.normal.para.spacing"></a>normal.para.spacing mode
</h1>
<div class="refnamediv"><a name="d0e186"></a><h2>Name</h2>normal.para.spacing mode — Spacing properties of normal paragraphs
</div>
<div class="refdescription"><a name="d0e191"></a>
<p>This attribute set is used to specify the spacing properties
of normal paragraphs.
</p>
</div>
</div>
<hr>
<div class="refentry">
<h1 class="title"><a name="attrset.list.block.spacing"></a>list.block.spacing mode
</h1>
<div class="refnamediv"><a name="d0e197"></a><h2>Name</h2>list.block.spacing mode — Spacing properties of list blocks
</div>
<div class="refdescription"><a name="d0e202"></a>
<p>This attribute set is used to specify the spacing properties
of list blocks.
</p>
</div>
</div>
<hr>
<div class="refentry">
<h1 class="title"><a name="attrset.list.item.spacing"></a>list.item.spacing mode
</h1>
<div class="refnamediv"><a name="d0e208"></a><h2>Name</h2>list.item.spacing mode — Spacing properties of list items
</div>
<div class="refdescription"><a name="d0e213"></a>
<p>This attribute set is used to specify the spacing properties
of list items.
</p>
</div>
</div>
<hr>
<div class="refentry">
<h1 class="title"><a name="param.rootid"></a>rootid
</h1>
<div class="refnamediv"><a name="d0e219"></a><h2>Name</h2>rootid — Specify the root element to format
</div>
<div class="refsynopsisdiv"><a name="d0e224"></a><h2>Synopsis</h2><pre class="synopsis">
<xsl:param name="rootid" select="''"/></pre></div>
<div class="refdescription"><a name="d0e227"></a>
<p>If <i><tt>rootid</tt></i> is specified, it must be the
value of an ID that occurs in the document being formatted. The entire
document will be loaded and parsed, but formatting will begin at the
element identified, rather than at the root. For example, this allows
you to process only chapter 4 of a book.
</p>
<p>Because the entire document is available to the processor, automatic
numbering, cross references, and other dependencies are correctly
resolved.
</p>
</div>
</div>
<hr>
<div class="refentry">
<h1 class="title"><a name="param.callout.graphics"></a>callout.graphics
</h1>
<div class="refnamediv"><a name="d0e239"></a><h2>Name</h2>callout.graphics — Use graphics for callouts?
</div>
<div class="refsynopsisdiv"><a name="d0e244"></a><h2>Synopsis</h2><pre class="synopsis">
<xsl:param name="callout.graphics" select="'0'"/></pre></div>
<div class="refdescription"><a name="d0e247"></a>
<p>If non-zero, callouts are presented with graphics (e.g., reverse-video
circled numbers instead of "(1)", "(2)", etc.).
Default graphics are provided in the distribution.
</p>
</div>
</div>
<hr>
<div class="refentry">
<h1 class="title"><a name="param.callout.unicode"></a>callout.unicode
</h1>
<div class="refnamediv"><a name="d0e253"></a><h2>Name</h2>callout.unicode — First character to use for Unicode callouts
</div>
<div class="refsynopsisdiv"><a name="d0e258"></a><h2>Synopsis</h2><pre class="synopsis">
<xsl:param name="callout.unicode" select="1"/></pre></div>
<div class="refdescription"><a name="d0e261"></a>
<p>If non-zero, callouts are presented with Unicode characters
starting with the character specified. Zero indicates that Unicode
callouts should not be used.
</p>
</div>
</div>
<hr>
<div class="refentry">
<h1 class="title"><a name="param.callout.unicode.font"></a>callout.unicode.font
</h1>
<div class="refnamediv"><a name="d0e267"></a><h2>Name</h2>callout.unicode.font — Font to use for Unicode dingbats
</div>
<div class="refsynopsisdiv"><a name="d0e272"></a><h2>Synopsis</h2><pre class="synopsis">
<xsl:param name="callout.unicode.font" select="'ZapfDingbats'"/></pre></div>
<div class="refdescription"><a name="d0e275"></a>
<p>The name of the font to specify around Unicode callout glyphs.
If set to the empty string, no font change will occur.
</p>
</div>
</div>
<hr>
<div class="refentry">
<h1 class="title"><a name="param.callout.unicode.start.character"></a>callout.unicode.start.character
</h1>
<div class="refnamediv"><a name="d0e281"></a><h2>Name</h2>callout.unicode.start.character — Number of the largest callout graphic
</div>
<div class="refsynopsisdiv"><a name="d0e286"></a><h2>Synopsis</h2><pre class="synopsis">
<xsl:param name="callout.unicode.start.character" select="10102" doc:type="integer"/></pre></div>
<div class="refdescription"><a name="d0e289"></a>
<p>If <i><tt>callout.graphics</tt></i>
is non-zero, graphics are used to represent
callout numbers. The value of
<i><tt>callout.graphics.number.limit</tt></i>
is
the largest number for which a graphic exists. If the callout number
exceeds this limit, the default presentation "(nnn)" will always
be used.
</p>
</div>
</div>
<hr>
<div class="refentry">
<h1 class="title"><a name="param.callout.unicode.number.limit"></a>callout.unicode.number.limit
</h1>
<div class="refnamediv"><a name="d0e301"></a><h2>Name</h2>callout.unicode.number.limit — Number of the largest callout graphic
</div>
<div class="refsynopsisdiv"><a name="d0e306"></a><h2>Synopsis</h2><pre class="synopsis">
<xsl:param name="callout.unicode.number.limit" select="'10'" doc:type="integer"/></pre></div>
<div class="refdescription"><a name="d0e309"></a>
<p>If <i><tt>callout.graphics</tt></i>
is non-zero, graphics are used to represent
callout numbers. The value of
<i><tt>callout.graphics.number.limit</tt></i>
is
the largest number for which a graphic exists. If the callout number
exceeds this limit, the default presentation "(nnn)" will always
be used.
</p>
</div>
</div>
<hr>
<div class="refentry">
<h1 class="title"><a name="param.callout.graphics.extension"></a>callout.graphics.extension
</h1>
<div class="refnamediv"><a name="d0e321"></a><h2>Name</h2>callout.graphics.extension — Extension for callout graphics
</div>
<div class="refsynopsisdiv"><a name="d0e326"></a><h2>Synopsis</h2><pre class="synopsis">
<xsl:param name="callout.graphics.extension" select="'.png'"/></pre></div>
<div class="refdescription"><a name="d0e329"></a>
<p>Sets the extension to use on callout graphics.</p>
</div>
</div>
<hr>
<div class="refentry">
<h1 class="title"><a name="param.callout.graphics.path"></a>callout.graphics.path
</h1>
<div class="refnamediv"><a name="d0e335"></a><h2>Name</h2>callout.graphics.path — Path to callout graphics
</div>
<div class="refsynopsisdiv"><a name="d0e340"></a><h2>Synopsis</h2><pre class="synopsis">
<xsl:param name="callout.graphics.path" select="'../images/callouts/'"/></pre></div>
<div class="refdescription"><a name="d0e343"></a>
<p>Sets the path, probably relative to the directory where the HTML
files are created, to the callout graphics.
</p>
</div>
</div>
<hr>
<div class="refentry">
<h1 class="title"><a name="param.callout.graphics.number.limit"></a>callout.graphics.number.limit
</h1>
<div class="refnamediv"><a name="d0e349"></a><h2>Name</h2>callout.graphics.number.limit — Number of the largest callout graphic
</div>
<div class="refsynopsisdiv"><a name="d0e354"></a><h2>Synopsis</h2><pre class="synopsis">
<xsl:param name="callout.graphics.number.limit" select="'10'"/></pre></div>
<div class="refdescription"><a name="d0e357"></a>
<p>If <i><tt>callout.graphics</tt></i>
is non-zero, graphics are used to represent
callout numbers. The value of
<i><tt>callout.graphics.number.limit</tt></i>
is
the largest number for which a graphic exists. If the callout number
exceeds this limit, the default presentation "(nnn)" will always
be used.
</p>
</div>
</div>
<hr>
<div class="refentry">
<h1 class="title"><a name="param.use.extensions"></a>use.extensions
</h1>
<div class="refnamediv"><a name="d0e369"></a><h2>Name</h2>use.extensions — Enable extensions
</div>
<div class="refsynopsisdiv"><a name="d0e374"></a><h2>Synopsis</h2><pre class="synopsis">
<xsl:param name="use.extensions" select="'0'"/></pre></div>
<div class="refdescription"><a name="d0e377"></a>
<p>If non-zero, extensions may be used. Each extension is
further controlled by its own parameter. But if
<i><tt>use.extensions</tt></i> is zero, no extensions will
be used.
</p>
</div>
</div>
<hr>
<div class="refentry">
<h1 class="title"><a name="param.textinsert.extension"></a>textinsert.extension
</h1>
<div class="refnamediv"><a name="d0e386"></a><h2>Name</h2>textinsert.extension — Enable the textinsert extension element
</div>
<div class="refsynopsisdiv"><a name="d0e391"></a><h2>Synopsis</h2><pre class="synopsis">
<xsl:param name="textinsert.extension" select="'1'"/></pre></div>
<div class="refdescription"><a name="d0e394"></a>
<p>The textinsert extension element inserts the contents of a
a file into the result tree (as text).
</p>
</div>
</div>
<hr>
<div class="refentry">
<h1 class="title"><a name="param.linenumbering.extension"></a>linenumbering.extension
</h1>
<div class="refnamediv"><a name="d0e400"></a><h2>Name</h2>linenumbering.extension — Enable the line numbering extension
</div>
<div class="refsynopsisdiv"><a name="d0e405"></a><h2>Synopsis</h2><pre class="synopsis">
<xsl:param name="linenumbering.extension" select="'1'"/></pre></div>
<div class="refdescription"><a name="d0e408"></a>
<p>If true, verbatim environments (elements that have the
format='linespecific' notation attribute: address, literallayout,
programlisting, screen, synopsis) that specify line numbering will
have, surprise, line numbers.
</p>
</div>
</div>
<hr>
<div class="refentry">
<h1 class="title"><a name="param.linenumbering.everyNth"></a>linenumbering.everyNth
</h1>
<div class="refnamediv"><a name="d0e414"></a><h2>Name</h2>linenumbering.everyNth — Indicate which lines should be numbered
</div>
<div class="refsynopsisdiv"><a name="d0e419"></a><h2>Synopsis</h2><pre class="synopsis">
<xsl:param name="linenumbering.everyNth" select="'5'"/></pre></div>
<div class="refdescription"><a name="d0e422"></a>
<p>If line numbering is enabled, everyNth line will be numbered.
</p>
</div>
</div>
<hr>
<div class="refentry">
<h1 class="title"><a name="param.linenumbering.width"></a>linenumbering.width
</h1>
<div class="refnamediv"><a name="d0e428"></a><h2>Name</h2>linenumbering.width — Indicates the width of line numbers
</div>
<div class="refsynopsisdiv"><a name="d0e433"></a><h2>Synopsis</h2><pre class="synopsis">
<xsl:param name="linenumbering.width" select="'3'"/></pre></div>
<div class="refdescription"><a name="d0e436"></a>
<p>If line numbering is enabled, line numbers will appear right
justified in a field "width" characters wide.
</p>
</div>
</div>
<hr>
<div class="refentry">
<h1 class="title"><a name="param.linenumbering.separator"></a>linenumbering.separator
</h1>
<div class="refnamediv"><a name="d0e442"></a><h2>Name</h2>linenumbering.separator — Specify a separator between line numbers and lines
</div>
<div class="refsynopsisdiv"><a name="d0e447"></a><h2>Synopsis</h2><pre class="synopsis">
<xsl:param name="linenumbering.separator" select="' '"/></pre></div>
<div class="refdescription"><a name="d0e450"></a>
<p>The separator is inserted between line numbers and lines in
the verbatim environment.
</p>
</div>
</div>
<hr>
<div class="refentry">
<h1 class="title"><a name="param.callouts.extension"></a>callouts.extension
</h1>
<div class="refnamediv"><a name="d0e456"></a><h2>Name</h2>callouts.extension — Enable the callout extension
</div>
<div class="refsynopsisdiv"><a name="d0e461"></a><h2>Synopsis</h2><pre class="synopsis">
<xsl:param name="callouts.extension" select="'1'"/></pre></div>
<div class="refdescription"><a name="d0e464"></a>
<p>The callouts extension processes <tt>areaset</tt>
elements in <tt>ProgramListingCO</tt> and other text-based
callout elements.
</p>
</div>
</div>
<hr>
<div class="refentry">
<h1 class="title"><a name="param.callout.defaultcolumn"></a>callout.defaultcolumn
</h1>
<div class="refnamediv"><a name="d0e476"></a><h2>Name</h2>callout.defaultcolumn — Indicates what column callouts appear in by default
</div>
<div class="refsynopsisdiv"><a name="d0e481"></a><h2>Synopsis</h2><pre class="synopsis">
<xsl:param name="callout.defaultcolumn" select="'60'"/></pre></div>
<div class="refdescription"><a name="d0e484"></a>
<p>If a callout does not identify a column (for example, if it uses
the <tt>linerange</tt> <tt>unit</tt>),
it will appear in the default column.
</p>
</div>
</div>
<hr>
<div class="refentry">
<h1 class="title"><a name="param.tablecolumns.extension"></a>tablecolumns.extension
</h1>
<div class="refnamediv"><a name="d0e496"></a><h2>Name</h2>tablecolumns.extension — Enable the table columns extension function
</div>
<div class="refsynopsisdiv"><a name="d0e501"></a><h2>Synopsis</h2><pre class="synopsis">
<xsl:param name="tablecolumns.extension" select="'1'" doc:type="boolean"/></pre></div>
<div class="refdescription"><a name="d0e504"></a>
<p>The table columns extension function adjusts the widths of table
columns in the HTML result to more accurately reflect the specifications
in the CALS table.
</p>
</div>
</div>
<hr>
<div class="refentry">
<h1 class="title"><a name="param.nominal.table.width"></a>nominal.table.width
</h1>
<div class="refnamediv"><a name="d0e510"></a><h2>Name</h2>nominal.table.width — The (absolute) nominal width of tables
</div>
<div class="refsynopsisdiv"><a name="d0e515"></a><h2>Synopsis</h2><pre class="synopsis">
<xsl:param name="nominal.table.width" select="'6in'" doc:type="length"/></pre></div>
<div class="refdescription"><a name="d0e518"></a>
<p>In order to convert CALS column widths into FO column widths, it
is sometimes necessary to have an absolute table width to use for conversion
of mixed absolute and relative widths. This value must be an absolute
length (not a percentage).
</p>
</div>
</div>
<hr>
<div class="refentry">
<h1 class="title"><a name="param.default.table.width"></a>default.table.width
</h1>
<div class="refnamediv"><a name="d0e524"></a><h2>Name</h2>default.table.width — The default width of tables
</div>
<div class="refsynopsisdiv"><a name="d0e529"></a><h2>Synopsis</h2><pre class="synopsis">
<xsl:param name="default.table.width" select="''" doc:type="length"/></pre></div>
<div class="refdescription"><a name="d0e532"></a>
<p>If specified, this value will be used for the WIDTH attribute on
tables that do not specify an alternate width (with the dbhtml processing
instruction).
</p>
</div>
</div>
<hr>
<div class="refentry">
<h1 class="title"><a name="param.paper.type"></a>paper.type
</h1>
<div class="refnamediv"><a name="d0e538"></a><h2>Name</h2>paper.type — Select the paper type
</div>
<div class="refsynopsisdiv"><a name="d0e543"></a><h2>Synopsis</h2><pre class="synopsis">
<xsl:param name="paper.type" select="'USletter'"/></pre></div>
<div class="refdescription"><a name="d0e546"></a>
<p>The paper type is a convenient way to specify the paper size.
The list of known paper sizes includes USletter and most of the A,
B, and C sizes. See <tt>page.width.portrait</tt>, for example.
</p>
</div>
</div>
<hr>
<div class="refentry">
<h1 class="title"><a name="param.page.orientation"></a>page.orientation
</h1>
<div class="refnamediv"><a name="d0e555"></a><h2>Name</h2>page.orientation — Select the page orientation
</div>
<div class="refsynopsisdiv"><a name="d0e560"></a><h2>Synopsis</h2><pre class="synopsis">
<xsl:param name="page.orientation" select="'portrait'"/></pre></div>
<div class="refdescription"><a name="d0e563"></a>
<p>In portrait orientation, the short edge is horizontal; in
landscape orientation, it is vertical.
</p>
</div>
</div>
<hr>
<div class="refentry">
<h1 class="title"><a name="param.page.width.portrait"></a>page.width.portrait
</h1>
<div class="refnamediv"><a name="d0e569"></a><h2>Name</h2>page.width.portrait — Specify the physical size of the short edge of the page
</div>
<div class="refsynopsisdiv"><a name="d0e574"></a><h2>Synopsis</h2><pre class="synopsis">
<xsl:param name="page.width.portrait">
<xsl:choose>
<xsl:when test="$paper.type = 'USletter'">8.5in</xsl:when>
<xsl:when test="$paper.type = '4A0'">1682mm</xsl:when>
<xsl:when test="$paper.type = '2A0'">1189mm</xsl:when>
<xsl:when test="$paper.type = 'A0'">841mm</xsl:when>
<xsl:when test="$paper.type = 'A1'">594mm</xsl:when>
<xsl:when test="$paper.type = 'A2'">420mm</xsl:when>
<xsl:when test="$paper.type = 'A3'">297mm</xsl:when>
<xsl:when test="$paper.type = 'A4'">210mm</xsl:when>
<xsl:when test="$paper.type = 'A5'">148mm</xsl:when>
<xsl:when test="$paper.type = 'A6'">105mm</xsl:when>
<xsl:when test="$paper.type = 'A7'">74mm</xsl:when>
<xsl:when test="$paper.type = 'A8'">52mm</xsl:when>
<xsl:when test="$paper.type = 'A9'">37mm</xsl:when>
<xsl:when test="$paper.type = 'A10'">26mm</xsl:when>
<xsl:when test="$paper.type = 'B0'">1000mm</xsl:when>
<xsl:when test="$paper.type = 'B1'">707mm</xsl:when>
<xsl:when test="$paper.type = 'B2'">500mm</xsl:when>
<xsl:when test="$paper.type = 'B3'">353mm</xsl:when>
<xsl:when test="$paper.type = 'B4'">250mm</xsl:when>
<xsl:when test="$paper.type = 'B5'">176mm</xsl:when>
<xsl:when test="$paper.type = 'B6'">125mm</xsl:when>
<xsl:when test="$paper.type = 'B7'">88mm</xsl:when>
<xsl:when test="$paper.type = 'B8'">62mm</xsl:when>
<xsl:when test="$paper.type = 'B9'">44mm</xsl:when>
<xsl:when test="$paper.type = 'B10'">31mm</xsl:when>
<xsl:when test="$paper.type = 'C0'">917mm</xsl:when>
<xsl:when test="$paper.type = 'C1'">648mm</xsl:when>
<xsl:when test="$paper.type = 'C2'">458mm</xsl:when>
<xsl:when test="$paper.type = 'C3'">324mm</xsl:when>
<xsl:when test="$paper.type = 'C4'">229mm</xsl:when>
<xsl:when test="$paper.type = 'C5'">162mm</xsl:when>
<xsl:when test="$paper.type = 'C6'">114mm</xsl:when>
<xsl:when test="$paper.type = 'C7'">81mm</xsl:when>
<xsl:when test="$paper.type = 'C8'">57mm</xsl:when>
<xsl:when test="$paper.type = 'C9'">40mm</xsl:when>
<xsl:when test="$paper.type = 'C10'">28mm</xsl:when>
<xsl:otherwise>8.5in</xsl:otherwise>
</xsl:choose>
</xsl:param></pre></div>
<div class="refdescription"><a name="d0e577"></a>
<p>The portrait page width is the length of the short
edge of the physical page.
</p>
</div>
</div>
<hr>
<div class="refentry">
<h1 class="title"><a name="param.page.height.portrait"></a>page.height.portrait
</h1>
<div class="refnamediv"><a name="d0e583"></a><h2>Name</h2>page.height.portrait — Specify the physical size of the long edge of the page
</div>
<div class="refsynopsisdiv"><a name="d0e588"></a><h2>Synopsis</h2><pre class="synopsis">
<xsl:param name="page.height.portrait">
<xsl:choose>
<xsl:when test="$paper.type = 'A4landscape'">210mm</xsl:when>
<xsl:when test="$paper.type = 'USletter'">11in</xsl:when>
<xsl:when test="$paper.type = 'USlandscape'">8.5in</xsl:when>
<xsl:when test="$paper.type = '4A0'">2378mm</xsl:when>
<xsl:when test="$paper.type = '2A0'">1682mm</xsl:when>
<xsl:when test="$paper.type = 'A0'">1189mm</xsl:when>
<xsl:when test="$paper.type = 'A1'">841mm</xsl:when>
<xsl:when test="$paper.type = 'A2'">594mm</xsl:when>
<xsl:when test="$paper.type = 'A3'">420mm</xsl:when>
<xsl:when test="$paper.type = 'A4'">297mm</xsl:when>
<xsl:when test="$paper.type = 'A5'">210mm</xsl:when>
<xsl:when test="$paper.type = 'A6'">148mm</xsl:when>
<xsl:when test="$paper.type = 'A7'">105mm</xsl:when>
<xsl:when test="$paper.type = 'A8'">74mm</xsl:when>
<xsl:when test="$paper.type = 'A9'">52mm</xsl:when>
<xsl:when test="$paper.type = 'A10'">37mm</xsl:when>
<xsl:when test="$paper.type = 'B0'">1414mm</xsl:when>
<xsl:when test="$paper.type = 'B1'">1000mm</xsl:when>
<xsl:when test="$paper.type = 'B2'">707mm</xsl:when>
<xsl:when test="$paper.type = 'B3'">500mm</xsl:when>
<xsl:when test="$paper.type = 'B4'">353mm</xsl:when>
<xsl:when test="$paper.type = 'B5'">250mm</xsl:when>
<xsl:when test="$paper.type = 'B6'">176mm</xsl:when>
<xsl:when test="$paper.type = 'B7'">125mm</xsl:when>
<xsl:when test="$paper.type = 'B8'">88mm</xsl:when>
<xsl:when test="$paper.type = 'B9'">62mm</xsl:when>
<xsl:when test="$paper.type = 'B10'">44mm</xsl:when>
<xsl:when test="$paper.type = 'C0'">1297mm</xsl:when>
<xsl:when test="$paper.type = 'C1'">917mm</xsl:when>
<xsl:when test="$paper.type = 'C2'">648mm</xsl:when>
<xsl:when test="$paper.type = 'C3'">458mm</xsl:when>
<xsl:when test="$paper.type = 'C4'">324mm</xsl:when>
<xsl:when test="$paper.type = 'C5'">229mm</xsl:when>
<xsl:when test="$paper.type = 'C6'">162mm</xsl:when>
<xsl:when test="$paper.type = 'C7'">114mm</xsl:when>
<xsl:when test="$paper.type = 'C8'">81mm</xsl:when>
<xsl:when test="$paper.type = 'C9'">57mm</xsl:when>
<xsl:when test="$paper.type = 'C10'">40mm</xsl:when>
<xsl:otherwise>11in</xsl:otherwise>
</xsl:choose>
</xsl:param></pre></div>
<div class="refdescription"><a name="d0e591"></a>
<p>The portrait page height is the length of the long
edge of the physical page.
</p>
</div>
</div>
<hr>
<div class="refentry">
<h1 class="title"><a name="param.page.width"></a>page.width
</h1>
<div class="refnamediv"><a name="d0e597"></a><h2>Name</h2>page.width — The width of the physical page
</div>
<div class="refsynopsisdiv"><a name="d0e602"></a><h2>Synopsis</h2><pre class="synopsis">
<xsl:param name="page.width">
<xsl:choose>
<xsl:when test="$page.orientation = 'portrait'">
<xsl:value-of select="$page.width.portrait"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$page.height.portrait"/>
</xsl:otherwise>
</xsl:choose>
</xsl:param></pre></div>
<div class="refdescription"><a name="d0e605"></a>
<p>The page width is generally calculated from the
<tt>paper.type</tt> and
<tt>page.orientation</tt>.
</p>
</div>
</div>
<hr>
<div class="refentry">
<h1 class="title"><a name="param.page.height"></a>page.height
</h1>
<div class="refnamediv"><a name="d0e617"></a><h2>Name</h2>page.height — The height of the physical page
</div>
<div class="refsynopsisdiv"><a name="d0e622"></a><h2>Synopsis</h2><pre class="synopsis">
<xsl:param name="page.height">
<xsl:choose>
<xsl:when test="$page.orientation = 'portrait'">
<xsl:value-of select="$page.height.portrait"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$page.width.portrait"/>
</xsl:otherwise>
</xsl:choose>
</xsl:param></pre></div>
<div class="refdescription"><a name="d0e625"></a>
<p>The page height is generally calculated from the
<tt>paper.type</tt> and
<tt>page.orientation</tt>.
</p>
</div>
</div>
<hr>
<div class="refentry">
<h1 class="title"><a name="param.double.sided"></a>double.sided
</h1>
<div class="refnamediv"><a name="d0e637"></a><h2>Name</h2>double.sided — Is the document to be printed double sided?
</div>
<div class="refsynopsisdiv"><a name="d0e642"></a><h2>Synopsis</h2><pre class="synopsis">
<xsl:param name="double.sided" select="'0'"/></pre></div>
<div class="refdescription"><a name="d0e645"></a>
<p>Double-sided documents are printed with a slightly wider margin
on the binding edge of the page.
</p>
<p>FIXME: The current set of parameters does not take writing direction
into account.
</p>
</div>
</div>
<hr>
<div class="refentry">
<h1 class="title"><a name="param.column.count"></a>column.count
</h1>
<div class="refnamediv"><a name="d0e654"></a><h2>Name</h2>column.count — Specifies the number of columns of text on the page
</div>
<div class="refsynopsisdiv"><a name="d0e659"></a><h2>Synopsis</h2><pre class="synopsis">
<xsl:param name="column.count" select="'1'"/></pre></div>
<div class="refdescription"><a name="d0e662"></a>
<p>The specified number of columns of text will appear on each page.
</p>
</div>
</div>
<hr>
<div class="refentry">
<h1 class="title"><a name="param.region.after.extent"></a>region.after.extent
</h1>
<div class="refnamediv"><a name="d0e668"></a><h2>Name</h2>region.after.extent — Specifies the height of the footer.
</div>
<div class="refsynopsisdiv"><a name="d0e673"></a><h2>Synopsis</h2><pre class="synopsis">
<xsl:param name="region.after.extent" select="'12pt'"/></pre></div>
<div class="refdescription"><a name="d0e676"></a>
<p>The region after extent is the height of the area where footers
are printed.
</p>
</div>
</div>
<hr>
<div class="refentry">
<h1 class="title"><a name="param.region.before.extent"></a>region.before.extent
</h1>
<div class="refnamediv"><a name="d0e682"></a><h2>Name</h2>region.before.extent — Specifies the height of the header
</div>
<div class="refsynopsisdiv"><a name="d0e687"></a><h2>Synopsis</h2><pre class="synopsis">
<xsl:param name="region.before.extent" select="'12pt'"/></pre></div>
<div class="refdescription"><a name="d0e690"></a>
<p>The region before extent is the height of the area where headers
are printed.
</p>
</div>
</div>
<hr>
<div class="refentry">
<h1 class="title"><a name="param.page.margin.top"></a>page.margin.top
</h1>
<div class="refnamediv"><a name="d0e696"></a><h2>Name</h2>page.margin.top — The top margin of the page
</div>
<div class="refsynopsisdiv"><a name="d0e701"></a><h2>Synopsis</h2><pre class="synopsis">
<xsl:param name="page.margin.top">1in</xsl:param></pre></div>
<div class="refdescription"><a name="d0e704"></a>
<p>The top page margin is the distance from the physical top of the
page to the first line of text (body or header).
</p>
</div>
</div>
<hr>
<div class="refentry">
<h1 class="title"><a name="param.page.margin.bottom"></a>page.margin.bottom
</h1>
<div class="refnamediv"><a name="d0e710"></a><h2>Name</h2>page.margin.bottom — The bottom margin of the page
</div>
<div class="refsynopsisdiv"><a name="d0e715"></a><h2>Synopsis</h2><pre class="synopsis">
<xsl:param name="page.margin.bottom">1in</xsl:param></pre></div>
<div class="refdescription"><a name="d0e718"></a>
<p>The bottom page margin is the distance from the physical bottom of
the page to the last line of text (body or footer).
</p>
</div>
</div>
<hr>
<div class="refentry">
<h1 class="title"><a name="param.page.margin.inner"></a>page.margin.inner
</h1>
<div class="refnamediv"><a name="d0e724"></a><h2>Name</h2>page.margin.inner — The inner page margin
</div>
<div class="refsynopsisdiv"><a name="d0e729"></a><h2>Synopsis</h2><pre class="synopsis">
<xsl:param name="page.margin.inner">
<xsl:choose>
<xsl:when test="$double.sided != 0">1.25in</xsl:when>
<xsl:otherwise>1in</xsl:otherwise>
</xsl:choose>
</xsl:param></pre></div>
<div class="refdescription"><a name="d0e732"></a>
<p>The inner page margin is the distance from binding edge of the
page to the first column of text. In the left-to-right, top-to-bottom writing
direction, this is the left margin of recto pages.
</p>
<p>The inner and outer margins are usually the same unless the output
is double-sided.
</p>
</div>
</div>
<hr>
<div class="refentry">
<h1 class="title"><a name="param.page.margin.outer"></a>page.margin.outer
</h1>
<div class="refnamediv"><a name="d0e741"></a><h2>Name</h2>page.margin.outer — The outer page margin
</div>
<div class="refsynopsisdiv"><a name="d0e746"></a><h2>Synopsis</h2><pre class="synopsis">
<xsl:param name="page.margin.outer">
<xsl:choose>
<xsl:when test="$double.sided != 0">0.75in</xsl:when>
<xsl:otherwise>10pc</xsl:otherwise>
</xsl:choose>
</xsl:param></pre></div>
<div class="refdescription"><a name="d0e749"></a>
<p>The outer page margin is the distance from non-binding edge of the
page to the last column of text. In the left-to-right, top-to-bottom writing
direction, this is the right margin of recto pages.
</p>
<p>The inner and outer margins are usually the same unless the output
is double-sided.
</p>
</div>
</div>
<hr>
<div class="refentry">
<h1 class="title"><a name="param.body.margin.bottom"></a>body.margin.bottom
</h1>
<div class="refnamediv"><a name="d0e758"></a><h2>Name</h2>body.margin.bottom — The bottom margin of the body text
</div>
<div class="refsynopsisdiv"><a name="d0e763"></a><h2>Synopsis</h2><pre class="synopsis">
<xsl:param name="body.margin.bottom">24pt</xsl:param></pre></div>
<div class="refdescription"><a name="d0e766"></a>
<p>The body bottom margin is the distance from the last line of text
in the page body to the bottom page margin. Note that the page footer, if
any, appears in the space between the body bottom margin and the page
bottom margin.
</p>
</div>
</div>
<hr>
<div class="refentry">
<h1 class="title"><a name="param.body.margin.top"></a>body.margin.top
</h1>
<div class="refnamediv"><a name="d0e772"></a><h2>Name</h2>body.margin.top — FIXME:
</div>
<div class="refsynopsisdiv"><a name="d0e777"></a><h2>Synopsis</h2><pre class="synopsis">
<xsl:param name="body.margin.top">24pt</xsl:param></pre></div>
<div class="refdescription"><a name="d0e780"></a>
<p>The body top margin is the distance from the page top margin to
the first line of text
in the page body. Note that the page header, if
any, appears in the space between the page top margin and the body
top margin.
</p>
</div>
</div>
<hr>
<div class="refentry">
<h1 class="title"><a name="param.body.font.family"></a>body.font.family
</h1>
<div class="refnamediv"><a name="d0e786"></a><h2>Name</h2>body.font.family — The default font family for body text
</div>
<div class="refsynopsisdiv"><a name="d0e791"></a><h2>Synopsis</h2><pre class="synopsis">
<xsl:param name="body.font.family">Times Roman</xsl:param></pre></div>
<div class="refdescription"><a name="d0e794"></a>
<p>The body font family is the default font used for text in the page body.
</p>
</div>
</div>
<hr>
<div class="refentry">
<h1 class="title"><a name="param.title.font.family"></a>title.font.family
</h1>
<div class="refnamediv"><a name="d0e800"></a><h2>Name</h2>title.font.family — The default font family for titles
</div>
<div class="refsynopsisdiv"><a name="d0e805"></a><h2>Synopsis</h2><pre class="synopsis">
<xsl:param name="title.font.family">Helvetica</xsl:param></pre></div>
<div class="refdescription"><a name="d0e808"></a>
<p>The title font family is used for titles (chapter, section, figure,
etc.)
</p>
</div>
</div>
<hr>
<div class="refentry">
<h1 class="title"><a name="param.monospace.font.family"></a>monospace.font.family
</h1>
<div class="refnamediv"><a name="d0e814"></a><h2>Name</h2>monospace.font.family — The default font family for monospace environments
</div>
<div class="refsynopsisdiv"><a name="d0e819"></a><h2>Synopsis</h2><pre class="synopsis">
<xsl:param name="monospace.font.family">Courier</xsl:param></pre></div>
<div class="refdescription"><a name="d0e822"></a>
<p>The monospace font family is used for verbatim environments
(program listings, screens, etc.).
</p>
</div>
</div>
<hr>
<div class="refentry">
<h1 class="title"><a name="param.sans.font.family"></a>sans.font.family
</h1>
<div class="refnamediv"><a name="d0e828"></a><h2>Name</h2>sans.font.family — The default sans-serif font family
</div>
<div class="refsynopsisdiv"><a name="d0e833"></a><h2>Synopsis</h2><pre class="synopsis">
<xsl:param name="sans.font.family">Helvetica</xsl:param></pre></div>
<div class="refdescription"><a name="d0e836"></a>
<p>The default sans-serif font family. At the present, this isn't
actually used by the stylesheets.
</p>
</div>
</div>
<hr>
<div class="refentry">
<h1 class="title"><a name="param.dingbat.font.family"></a>dingbat.font.family
</h1>
<div class="refnamediv"><a name="d0e842"></a><h2>Name</h2>dingbat.font.family — The font family for copyright, quotes, and other symbols
</div>
<div class="refsynopsisdiv"><a name="d0e847"></a><h2>Synopsis</h2><pre class="synopsis">
<xsl:param name="dingbat.font.family">Times Roman</xsl:param></pre></div>
<div class="refdescription"><a name="d0e850"></a>
<p>The dingbat font family is used for dingbats. If it is defined
as the empty string, no font change is effected around dingbats.
</p>
</div>
</div>
<hr>
<div class="refentry">
<h1 class="title"><a name="param.body.font.master"></a>body.font.master
</h1>
<div class="refnamediv"><a name="d0e856"></a><h2>Name</h2>body.font.master — Specifies the default point size for body text
</div>
<div class="refsynopsisdiv"><a name="d0e861"></a><h2>Synopsis</h2><pre class="synopsis">
<xsl:param name="body.font.master">10</xsl:param></pre></div>
<div class="refdescription"><a name="d0e864"></a>
<p>The body font size is specified in two parameters
(<tt>body.font.master</tt> and <tt>body.font.size</tt>)
so that math can be performed on the font size by XSLT.
</p>
</div>
</div>
<hr>
<div class="refentry">
<h1 class="title"><a name="param.body.font.size"></a>body.font.size
</h1>
<div class="refnamediv"><a name="d0e876"></a><h2>Name</h2>body.font.size — Specifies the default font size for body text
</div>
<div class="refsynopsisdiv"><a name="d0e881"></a><h2>Synopsis</h2><pre class="synopsis">
<xsl:param name="body.font.size">
<xsl:value-of select="$body.font.master"/><xsl:text>pt</xsl:text>
</xsl:param></pre></div>
<div class="refdescription"><a name="d0e884"></a>
<p>The body font size is specified in two parameters
(<tt>body.font.master</tt> and <tt>body.font.size</tt>)
so that math can be performed on the font size by XSLT.
</p>
</div>
</div>
<hr>
<div class="refentry">
<h1 class="title"><a name="param.footnote.font.size"></a>footnote.font.size
</h1>
<div class="refnamediv"><a name="d0e896"></a><h2>Name</h2>footnote.font.size — The font size for footnotes
</div>
<div class="refsynopsisdiv"><a name="d0e901"></a><h2>Synopsis</h2><pre class="synopsis">
<xsl:param name="footnote.font.size">
<xsl:value-of select="$body.font.master * 0.8"/><xsl:text>pt</xsl:text>
</xsl:param></pre></div>
<div class="refdescription"><a name="d0e904"></a>
<p>The footnote font size is used for...footnotes!
</p>
</div>
</div>
<hr>
<div class="refentry">
<h1 class="title"><a name="param.hyphenate"></a>hyphenate
</h1>
<div class="refnamediv"><a name="d0e910"></a><h2>Name</h2>hyphenate — Specify hyphenation behavior
</div>
<div class="refsynopsisdiv"><a name="d0e915"></a><h2>Synopsis</h2><pre class="synopsis">
<xsl:param name="hyphenate">true</xsl:param></pre></div>
<div class="refdescription"><a name="d0e918"></a>
<p>If true, words may be hyphenated. Otherwise, they may not.
</p>
</div>
</div>
<hr>
<div class="refentry">
<h1 class="title"><a name="param.alignment"></a>alignment
</h1>
<div class="refnamediv"><a name="d0e924"></a><h2>Name</h2>alignment — Specify the default text alignment
</div>
<div class="refsynopsisdiv"><a name="d0e929"></a><h2>Synopsis</h2><pre class="synopsis">
<xsl:param name="alignment">justify</xsl:param></pre></div>
<div class="refdescription"><a name="d0e932"></a>
<p>The default text alignment is used for most body text.
</p>
</div>
</div>
<hr>
<div class="refentry">
<h1 class="title"><a name="param.stylesheet.result.type"></a>stylesheet.result.type
</h1>
<div class="refnamediv"><a name="d0e938"></a><h2>Name</h2>stylesheet.result.type — Identifies the output format of this stylesheet
</div>
<div class="refsynopsisdiv"><a name="d0e943"></a><h2>Synopsis</h2><pre class="synopsis">
<xsl:param name="stylesheet.result.type" select="'fo'"/></pre></div>
<div class="refdescription"><a name="d0e946"></a>
<p>The extension functions need to know if the output format
is HTML ('html') or XSL Formatting Objects ('fo'). This variable answers
that question. Valid settings are 'html' or 'fo'.
</p>
</div>
</div>
<hr>
<div class="refentry">
<h1 class="title"><a name="param.generate.component.toc"></a>generate.component.toc
</h1>
<div class="refnamediv"><a name="d0e952"></a><h2>Name</h2>generate.component.toc — Generate a table of contents for components?
</div>
<div class="refsynopsisdiv"><a name="d0e957"></a><h2>Synopsis</h2><pre class="synopsis">
<xsl:param name="generate.component.toc" select="0" doc:type="boolean"/></pre></div>
<div class="refdescription"><a name="d0e960"></a>
<p>If non-zero, a table of contents is generated at the beginning
of each component (chapters, appendixes, etc.)
</p>
</div>
</div>
<hr>
<div class="refentry">
<h1 class="title"><a name="param.generate.division.toc"></a>generate.division.toc
</h1>
<div class="refnamediv"><a name="d0e966"></a><h2>Name</h2>generate.division.toc — Generate a table of contents for divisions?
</div>
<div class="refsynopsisdiv"><a name="d0e971"></a><h2>Synopsis</h2><pre class="synopsis">
<xsl:param name="generate.division.toc" select="1" doc:type="boolean"/></pre></div>
<div class="refdescription"><a name="d0e974"></a>
<p>If non-zero, a table of contents is generated at the beginning
of each division (sets, books, etc.)
</p>
</div>
</div>
<hr>
<div class="refentry">
<h1 class="title"><a name="param.generate.division.figure.lot"></a>generate.division.figure.lot
</h1>
<div class="refnamediv"><a name="d0e980"></a><h2>Name</h2>generate.division.figure.lot — Generate a list of titles for Figures?
</div>
<div class="refsynopsisdiv"><a name="d0e985"></a><h2>Synopsis</h2><pre class="synopsis">
<xsl:param name="generate.division.figure.lot" select="1" doc:type="boolean"/></pre></div>
<div class="refdescription"><a name="d0e988"></a>
<p>If non-zero, a list of titles is generated for Figures.
</p>
</div>
</div>
<hr>
<div class="refentry">
<h1 class="title"><a name="param.generate.division.example.lot"></a>generate.division.example.lot
</h1>
<div class="refnamediv"><a name="d0e994"></a><h2>Name</h2>generate.division.example.lot — Generate a list of titles for Examples?
</div>
<div class="refsynopsisdiv"><a name="d0e999"></a><h2>Synopsis</h2><pre class="synopsis">
<xsl:param name="generate.division.example.lot" select="1" doc:type="boolean"/></pre></div>
<div class="refdescription"><a name="d0e1002"></a>
<p>If non-zero, a list of titles is generated for Examples.
</p>
</div>
</div>
<hr>
<div class="refentry">
<h1 class="title"><a name="param.generate.division.equation.lot"></a>generate.division.equation.lot
</h1>
<div class="refnamediv"><a name="d0e1008"></a><h2>Name</h2>generate.division.equation.lot — Generate a list of titles for Equations?
</div>
<div class="refsynopsisdiv"><a name="d0e1013"></a><h2>Synopsis</h2><pre class="synopsis">
<xsl:param name="generate.division.equation.lot" select="1" doc:type="boolean"/></pre></div>
<div class="refdescription"><a name="d0e1016"></a>
<p>If non-zero, a list of titles is generated for Equations.
</p>
</div>
</div>
<hr>
<div class="refentry">
<h1 class="title"><a name="param.generate.division.table.lot"></a>generate.division.table.lot
</h1>
<div class="refnamediv"><a name="d0e1022"></a><h2>Name</h2>generate.division.table.lot — Generate a list of titles for Tables?
</div>
<div class="refsynopsisdiv"><a name="d0e1027"></a><h2>Synopsis</h2><pre class="synopsis">
<xsl:param name="generate.division.table.lot" select="1" doc:type="boolean"/></pre></div>
<div class="refdescription"><a name="d0e1030"></a>
<p>If non-zero, a list of titles is generated for Tables.
</p>
</div>
</div>
<hr>
<div class="refentry">
<h1 class="title"><a name="param.passivetex.extensions"></a>passivetex.extensions
</h1>
<div class="refnamediv"><a name="d0e1036"></a><h2>Name</h2>passivetex.extensions — Enable PassiveTeX extensions?
</div>
<div class="refsynopsisdiv"><a name="d0e1041"></a><h2>Synopsis</h2><pre class="synopsis">
<xsl:param name="passivetex.extensions" select="0" doc:type="boolean"/></pre></div>
<div class="refdescription"><a name="d0e1044"></a>
<p>If non-zero,
<a href="http://users.ox.ac.uk/~rahtz/passivetex/" target="_top">PassiveTeX</a>
extensions will be used. At present, this consists of PDF bookmarks
and sorted index terms.
</p>
</div>
</div>
<hr>
<div class="refentry">
<h1 class="title"><a name="param.arbortext.extensions"></a>arbortext.extensions
</h1>
<div class="refnamediv"><a name="d0e1053"></a><h2>Name</h2>arbortext.extensions — Enable Arbortext extensions?
</div>
<div class="refsynopsisdiv"><a name="d0e1058"></a><h2>Synopsis</h2><pre class="synopsis">
<xsl:param name="arbortext.extensions" select="0" doc:type="boolean"/></pre></div>
<div class="refdescription"><a name="d0e1061"></a>
<p>If non-zero,
<a href="http://www.arbortext.com/" target="_top">Arbortext</a>
extensions will be used.
</p>
</div>
</div>
<hr>
<div class="refentry">
<h1 class="title"><a name="param.fop.extensions"></a>fop.extensions
</h1>
<div class="refnamediv"><a name="d0e1070"></a><h2>Name</h2>fop.extensions — Enable FOP extensions?
</div>
<div class="refsynopsisdiv"><a name="d0e1075"></a><h2>Synopsis</h2><pre class="synopsis">
<xsl:param name="fop.extensions" select="0" doc:type="boolean"/></pre></div>
<div class="refdescription"><a name="d0e1078"></a>
<p>If non-zero,
<a href="http://xml.apache.org/fop/" target="_top">FOP</a>
extensions will be used. At present, this consists of PDF bookmarks.
</p>
</div>
</div>
<hr>
<div class="refentry">
<h1 class="title"><a name="param.xep.extensions"></a>xep.extensions
</h1>
<div class="refnamediv"><a name="d0e1087"></a><h2>Name</h2>xep.extensions — Enable XEP extensions?
</div>
<div class="refsynopsisdiv"><a name="d0e1092"></a><h2>Synopsis</h2><pre class="synopsis">
<xsl:param name="xep.extensions" select="0" doc:type="boolean"/></pre></div>
<div class="refdescription"><a name="d0e1095"></a>
<p>If non-zero,
<a href="http://www.renderx.com/" target="_top">XEP</a>
extensions will be used. XEP extensions consists of PDF bookmarks and document information.
</p>
</div>
</div>
<hr>
<div class="refentry">
<h1 class="title"><a name="param.default.units"></a>default.units
</h1>
<div class="refnamediv"><a name="d0e1104"></a><h2>Name</h2>default.units — Default units for an unqualified dimension
</div>
<div class="refsynopsisdiv"><a name="d0e1109"></a><h2>Synopsis</h2><pre class="synopsis">
<xsl:param name="default.units" select="'pt'" doc:type="list" doc:list="cm mm in pt pc px em"/></pre></div>
<div class="refdescription"><a name="d0e1112"></a>
<p>If an unqualified dimension is encountered (for example, in a
graphic width), the <i><tt>default-units</tt></i> will be used for the
units. Unqualified dimensions are not allowed in XSL Formatting Objects.
</p>
</div>
</div>
<hr>
<div class="refentry">
<h1 class="title"><a name="param.label.from.part"></a>label.from.part
</h1>
<div class="refnamediv"><a name="d0e1121"></a><h2>Name</h2>label.from.part — Renumber chapters in each part?
</div>
<div class="refsynopsisdiv"><a name="d0e1126"></a><h2>Synopsis</h2><pre class="synopsis">
<xsl:param name="label.from.part" select="'0'" doc:type="boolean"/></pre></div>
<div class="refdescription"><a name="d0e1129"></a>
<p>If <i><tt>label.from.part</tt></i> is non-zero, components
(<tt>chapter</tt>s, <tt>appendixe</tt>s, etc.)
will be numbered from 1 in each <tt>part</tt>. Otherwise,
they will be numbered monotonically throughout each
<tt>book</tt>.
</p>
</div>
</div>
<hr>
<div class="refentry">
<h1 class="title"><a name="param.formal.procedures"></a>formal.procedures
</h1>
<div class="refnamediv"><a name="d0e1150"></a><h2>Name</h2>formal.procedures — Selects formal or informal procedures
</div>
<div class="refsynopsisdiv"><a name="d0e1155"></a><h2>Synopsis</h2><pre class="synopsis">
<xsl:param name="formal.procedures" select="1" doc:type="boolean"/></pre></div>
<div class="refdescription"><a name="d0e1158"></a>
<p>Formal procedures are numbered and always hav a title.
</p>
</div>
</div>
<hr>
<div class="refentry">
<h1 class="title"><a name="param.bibliography.collection"></a>bibliography.collection
</h1>
<div class="refnamediv"><a name="d0e1164"></a><h2>Name</h2>bibliography.collection — Name of the bibliography collection file
</div>
<div class="refsynopsisdiv"><a name="d0e1169"></a><h2>Synopsis</h2><pre class="synopsis">
<xsl:param name="bibliography.collection" doc:type="string" select="'http://docbook.sourceforge.net/release/bibliography/bibliography.xml'"/></pre></div>
<div class="refdescription"><a name="d0e1172"></a>
<p>Tired of copying bibliography entries from one document to another?
Now you can maintain a central bibliography and let the stylesheets do
the copying for you. This parameter identifies the file (by URI reference)
that contains your complete bibliography collection.
</p>
</div>
</div>
<hr>
<div class="refentry">
<h1 class="title"><a name="param.format.variablelist.as.list"></a>format.variablelist.as.list
</h1>
<div class="refnamediv"><a name="d0e1178"></a><h2>Name</h2>format.variablelist.as.list — Use an fo:list to format VariableLists?
</div>
<div class="refsynopsisdiv"><a name="d0e1183"></a><h2>Synopsis</h2><pre class="synopsis">
<xsl:param name="format.variablelist.as.list" select="1" doc:type="boolean"/></pre></div>
<div class="refdescription"><a name="d0e1186"></a>
<p>If non-zero, an fo:list will be used to format VariableLists.
Otherwise, nested fo:blocks will be used.
</p>
</div>
</div>
<hr>
<div class="refentry">
<h1 class="title"><a name="param.runinhead.title.end.punct"></a>runinhead.title.end.punct
</h1>
<div class="refnamediv"><a name="d0e1192"></a><h2>Name</h2>runinhead.title.end.punct — Characters that count as punctuation on a run-in-head
</div>
<div class="refsynopsisdiv"><a name="d0e1197"></a><h2>Synopsis</h2><pre class="synopsis">
<xsl:param name="runinhead.title.end.punct" select="'.!?:'" doc:type="string"/></pre></div>
<div class="refdescription"><a name="d0e1200"></a>
<p>FIXME:
</p>
</div>
</div>
<hr>
<div class="refentry">
<h1 class="title"><a name="param.runinhead.default.title.end.punct"></a>runinhead.default.title.end.punct
</h1>
<div class="refnamediv"><a name="d0e1206"></a><h2>Name</h2>runinhead.default.title.end.punct — Default punctuation character on a run-in-head
</div>
<div class="refsynopsisdiv"><a name="d0e1211"></a><h2>Synopsis</h2><pre class="synopsis">
<xsl:param name="runinhead.default.title.end.punct" select="'.'" doc:type="string"/></pre></div>
<div class="refdescription"><a name="d0e1214"></a>
<p>FIXME:
</p>
</div>
</div>
</div>
</body>
</html>
|