summaryrefslogtreecommitdiffstats
path: root/lib/docbook/docbook-xsl/doc/html/param.html
blob: 893cce8af1cb960eb43879a8359f0b84ae2c0b41 (plain)
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
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
<html>
   <head>
      <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
   
      <title>HTML 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>HTML 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:24 isberg Exp $
                  
               </p>
            </div>
            <div>
               <p class="copyright"><a href="../copyright.html">Copyright</a> &copy; 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 HTML 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 change the <tt>html.stylesheet</tt>
                  to <tt>reference.css</tt>, you might create a driver
                  stylesheet like this:
               </p><pre class="programlisting">&lt;xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                version='1.0'&gt;

  &lt;xsl:import href="/path/to/html/docbook.xsl"/&gt;

  &lt;xsl:param name="html.stylesheet"&gt;reference.css&lt;/xsl:param&gt;

&lt;/xsl:stylesheet&gt;</pre><p>Naturally, you have to change the
                  <tt>href</tt> attribute on
                  <tt>&lt;xsl:import&gt;</tt>
                  to point to <tt>docbook.xsl</tt>
                  on your system. (Or <tt>chunk.xsl</tt>, if you're using
                  chunking.)
               </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.author.othername.in.middle">author.othername.in.middle</a> - Is othername in author a
                     middle name?
                  </dt>
                  <dt><a href="#param.html.stylesheet">html.stylesheet</a> - Name of the stylesheet to use in the generated HTML
                  </dt>
                  <dt><a href="#param.html.stylesheet.type">html.stylesheet.type</a> - The type of the stylesheet used in the generated HTML
                  </dt>
                  <dt><a href="#param.html.base">html.base</a> - An HTML base URI
                  </dt>
                  <dt><a href="#param.ulink.target">ulink.target</a> - The HTML anchor target for ULinks
                  </dt>
                  <dt><a href="#param.refentry.xref.manvolnum">refentry.xref.manvolnum</a> - Output manvolnum as part of 
                     refentry cross-reference?
                  </dt>
                  <dt><a href="#param.show.comments">show.comments</a> - Display comment elements?
                  </dt>
                  <dt><a href="#param.funcsynopsis.style">funcsynopsis.style</a> - What style of 'FuncSynopsis' should be generated?
                  </dt>
                  <dt><a href="#param.funcsynopsis.decoration">funcsynopsis.decoration</a> - Decorate elements of a FuncSynopsis?
                  </dt>
                  <dt><a href="#param.function.parens">function.parens</a> - Generate parens after a function?
                  </dt>
                  <dt><a href="#param.refentry.generate.name">refentry.generate.name</a> - Output NAME header before 'RefName'(s)?
                  </dt>
                  <dt><a href="#param.admon.graphics">admon.graphics</a> - Use graphics in admonitions?
                  </dt>
                  <dt><a href="#param.admon.graphics.path">admon.graphics.path</a> - Path to admonition graphics
                  </dt>
                  <dt><a href="#param.admon.graphics.extension">admon.graphics.extension</a> - Extension for admonition graphics
                  </dt>
                  <dt><a href="#param.admon.style">admon.style</a> - CSS style attributes for admonitions
                  </dt>
                  <dt><a href="#param.section.autolabel">section.autolabel</a> - Are sections enumerated?
                  </dt>
                  <dt><a href="#param.section.label.includes.component.label">section.label.includes.component.label</a> - Do section labels include the component label?
                  </dt>
                  <dt><a href="#param.chapter.autolabel">chapter.autolabel</a> - Are chapters and appendixes enumerated?
                  </dt>
                  <dt><a href="#param.preface.autolabel">preface.autolabel</a> - Are prefaces enumerated?
                  </dt>
                  <dt><a href="#param.part.autolabel">part.autolabel</a> - Are parts and references enumerated?
                  </dt>
                  <dt><a href="#param.qandadiv.autolabel">qandadiv.autolabel</a> - Are divisions in QAndASets enumerated?
                  </dt>
                  <dt><a href="#param.qanda.inherit.numeration">qanda.inherit.numeration</a> - Does enumeration of QandASet components inherit the numeration of parent elements?
                  </dt>
                  <dt><a href="#param.qanda.defaultlabel">qanda.defaultlabel</a> - Sets the default for defaultlabel on QandASet.
                  </dt>
                  <dt><a href="#param.generate.qandaset.toc">generate.qandaset.toc</a> - Is a Table of Contents created for QandASets?
                  </dt>
                  <dt><a href="#param.generate.qandadiv.toc">generate.qandadiv.toc</a> - Is a Table of Contents created for QandADivs?
                  </dt>
                  <dt><a href="#param.biblioentry.item.separator">biblioentry.item.separator</a> - Text to separate bibliography entries
                  </dt>
                  <dt><a href="#param.toc.section.depth">toc.section.depth</a> - How deep should recursive sections appear
                     in the TOC?
                  </dt>
                  <dt><a href="#param.using.chunker">using.chunker</a> - Will the output be chunked?
                  </dt>
                  <dt><a href="#param.generate.component.toc">generate.component.toc</a> - Should TOCs be genereated in components (Chapters, Appendixes, etc.)?
                  </dt>
                  <dt><a href="#param.generate.division.toc">generate.division.toc</a> - Should TOCs be genereated in divisions (Books, Parts, etc.)?
                  </dt>
                  <dt><a href="#param.link.mailto.url">link.mailto.url</a> - Mailto URL for the LINK REL=made HTML HEAD element
                  </dt>
                  <dt><a href="#param.graphic.default.extension">graphic.default.extension</a> - Default extension for graphic filenames
                  </dt>
                  <dt><a href="#param.toc.list.type">toc.list.type</a> - Type of HTML list element to use for Tables of Contents
                  </dt>
                  <dt><a href="#param.use.id.function">use.id.function</a> - Use the XPath id() function to find link targets?
                  </dt>
                  <dt><a href="#param.spacing.paras">spacing.paras</a> - Insert additional &lt;p&gt; elements for spacing?
                  </dt>
                  <dt><a href="#param.css.decoration">css.decoration</a> - Enable CSS decoration of elements
                  </dt>
                  <dt><a href="#param.show.revisionflag">show.revisionflag</a> - Enable decoration of elements that have a revisionflag
                  </dt>
                  <dt><a href="#param.suppress.navigation">suppress.navigation</a> - Disable header and footer navigation
                  </dt>
                  <dt><a href="#param.rootid">rootid</a> - Specify the root element to format
                  </dt>
                  <dt><a href="#param.callout.list.table">callout.list.table</a> - Present callout lists using a table?
                  </dt>
                  <dt><a href="#param.callout.graphics">callout.graphics</a> - Use graphics for callouts?
                  </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.saxon.linenumbering">saxon.linenumbering</a> - Enable the line numbering extension
                  </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.saxon.callouts">saxon.callouts</a> - Enable the callout extension
                  </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.stylesheet.result.type">stylesheet.result.type</a> - Identifies the output format of this stylesheet
                  </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.saxon.tablecolumns">saxon.tablecolumns</a> - Enable the table columns extension function
                  </dt>
                  <dt><a href="#param.tablecolumns.extension">tablecolumns.extension</a> - Enable the table columns extension function
                  </dt>
                  <dt><a href="#param.generate.set.toc">generate.set.toc</a> - FIXME:
                  </dt>
                  <dt><a href="#param.generate.book.toc">generate.book.toc</a> - FIXME:
                  </dt>
                  <dt><a href="#param.generate.part.toc">generate.part.toc</a> - FIXME:
                  </dt>
                  <dt><a href="#param.generate.reference.toc">generate.reference.toc</a> - FIXME:
                  </dt>
                  <dt><a href="#param.generate.preface.toc">generate.preface.toc</a> - FIXME:
                  </dt>
                  <dt><a href="#param.generate.chapter.toc">generate.chapter.toc</a> - FIXME:
                  </dt>
                  <dt><a href="#param.generate.appendix.toc">generate.appendix.toc</a> - FIXME:
                  </dt>
                  <dt><a href="#param.generate.article.toc">generate.article.toc</a> - FIXME:
                  </dt>
                  <dt><a href="#param.generate.section.toc">generate.section.toc</a> - Generate TOCs inside Sections?
                  </dt>
                  <dt><a href="#param.generate.section.toc.level">generate.section.toc.level</a> - Control depth of TOC generation in sections
                  </dt>
                  <dt><a href="#param.process.source.toc">process.source.toc</a> - FIXME:
                  </dt>
                  <dt><a href="#param.process.empty.source.toc">process.empty.source.toc</a> - FIXME:
                  </dt>
                  <dt><a href="#param.bridgehead.in.toc">bridgehead.in.toc</a> - Should bridgehead elements appear in the TOC?
                  </dt>
                  <dt><a href="#param.generate.index">generate.index</a> - FIXME:
                  </dt>
                  <dt><a href="#param.callout.unicode">callout.unicode</a> - FIXME:
                  </dt>
                  <dt><a href="#param.callout.unicode.start.character">callout.unicode.start.character</a> - First Unicode character to use, decimal value.
                  </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.unicode.font">callout.unicode.font</a> - Font to use for Unicode dingbats
                  </dt>
                  <dt><a href="#param.use.id.as.filename">use.id.as.filename</a> - Use ID value of chunk elements as the filename?
                  </dt>
                  <dt><a href="#param.inherit.keywords">inherit.keywords</a> - Inherit keywords from ancestor elements?
                  </dt>
                  <dt><a href="#param.label.from.part">label.from.part</a> - Renumber chapters in each part?
                  </dt>
                  <dt><a href="#param.citerefentry.link">citerefentry.link</a> - Generate URL links when cross-referencing RefEntrys?
                  </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.annotate.toc">annotate.toc</a> - Annotate the Table of Contents?
                  </dt>
                  <dt><a href="#param.emphasis.propagates.style">emphasis.propagates.style</a> - Pass emphasis role attribute through to HTML?
                  </dt>
                  <dt><a href="#param.phrase.propagates.style">phrase.propagates.style</a> - Pass phrase role attribute through to HTML?
                  </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.author.othername.in.middle"></a>author.othername.in.middle
            </h1>
            <div class="refnamediv"><a name="d0e72"></a><h2>Name</h2>author.othername.in.middle &#8212; Is <tt>othername</tt> in <tt>author</tt> a
               middle name?
            </div>
            <div class="refsynopsisdiv"><a name="d0e83"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="author.othername.in.middle" select="1" doc:type="boolean"/&gt;</pre></div>
            <div class="refdescription"><a name="d0e86"></a>
               
               
               <p>If true (non-zero), the <tt>othername</tt> of an <tt>author</tt>
                  appears between the <tt>firstname</tt> and
                  <tt>surname</tt>.  Otherwise, <tt>othername</tt>
                  is suppressed.
                  
               </p>
               
               
            </div>
         </div>
         <hr>
         <div class="refentry">
            <h1 class="title"><a name="param.html.stylesheet"></a>html.stylesheet
            </h1>
            <div class="refnamediv"><a name="d0e107"></a><h2>Name</h2>html.stylesheet &#8212; Name of the stylesheet to use in the generated HTML
            </div>
            <div class="refsynopsisdiv"><a name="d0e112"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="html.stylesheet" select="''" doc:type="string"/&gt;</pre></div>
            <div class="refdescription"><a name="d0e115"></a>
               
               
               <p>The name of the stylesheet to place in the HTML <tt>LINK</tt>
                  tag, or the empty string to suppress the stylesheet <tt>LINK</tt>.
                  
               </p>
               
               
            </div>
         </div>
         <hr>
         <div class="refentry">
            <h1 class="title"><a name="param.html.stylesheet.type"></a>html.stylesheet.type
            </h1>
            <div class="refnamediv"><a name="d0e127"></a><h2>Name</h2>html.stylesheet.type &#8212; The type of the stylesheet used in the generated HTML
            </div>
            <div class="refsynopsisdiv"><a name="d0e132"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="html.stylesheet.type" doc:type="string"&gt;text/css&lt;/xsl:param&gt;</pre></div>
            <div class="refdescription"><a name="d0e135"></a>
               
               
               <p>The type of the stylesheet to place in the HTML <tt>link</tt> tag.
                  
               </p>
               
               
            </div>
         </div>
         <hr>
         <div class="refentry">
            <h1 class="title"><a name="param.html.base"></a>html.base
            </h1>
            <div class="refnamediv"><a name="d0e144"></a><h2>Name</h2>html.base &#8212; An HTML base URI
            </div>
            <div class="refsynopsisdiv"><a name="d0e149"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="html.base" doc:type="uri"/&gt;</pre></div>
            <div class="refdescription"><a name="d0e152"></a>
               
               
               <p>If html.base is set, it is used for the <tt>BASE</tt>
                  element in the <tt>HEAD</tt> of the HTML documents.
                  This is useful for dynamically served HTML where the base URI needs
                  to be shifted.
               </p>
               
               
            </div>
         </div>
         <hr>
         <div class="refentry">
            <h1 class="title"><a name="param.ulink.target"></a>ulink.target
            </h1>
            <div class="refnamediv"><a name="d0e164"></a><h2>Name</h2>ulink.target &#8212; The HTML anchor target for ULinks
            </div>
            <div class="refsynopsisdiv"><a name="d0e169"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="ulink.target" select="'_top'" doc:type="string"/&gt;</pre></div>
            <div class="refdescription"><a name="d0e172"></a>
               
               
               <p>If <i><tt>ulink.target</tt></i> is set, its value will
                  be used for the <tt>target</tt> attribute
                  on anchors generated for <tt>ulink</tt>s.
               </p>
               
               
            </div>
         </div>
         <hr>
         <div class="refentry">
            <h1 class="title"><a name="param.refentry.xref.manvolnum"></a>refentry.xref.manvolnum
            </h1>
            <div class="refnamediv"><a name="d0e187"></a><h2>Name</h2>refentry.xref.manvolnum &#8212; Output <tt>manvolnum</tt> as part of 
               <tt>refentry</tt> cross-reference?
            </div>
            <div class="refsynopsisdiv"><a name="d0e198"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="refentry.xref.manvolnum" select="1" doc:type="boolean"/&gt;</pre></div>
            <div class="refdescription"><a name="d0e201"></a>
               
               
               <p>if true (non-zero), the <tt>manvolnum</tt> is used when cross-referencing
                  <tt>refentry</tt>s, either with <tt>xref</tt>
                  or <tt>citerefentry</tt>.
                  
               </p>
               
               
            </div>
         </div>
         <hr>
         <div class="refentry">
            <h1 class="title"><a name="param.show.comments"></a>show.comments
            </h1>
            <div class="refnamediv"><a name="d0e219"></a><h2>Name</h2>show.comments &#8212; Display <tt>comment</tt> elements?
            </div>
            <div class="refsynopsisdiv"><a name="d0e227"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="show.comments" doc:type="boolean"&gt;1&lt;/xsl:param&gt;</pre></div>
            <div class="refdescription"><a name="d0e230"></a>
               
               
               <p>If true (non-zero), comments will be displayed, otherwise they are suppressed.
                  Comments here refers to the <tt>comment</tt> element,
                  which will be renamed <tt>remark</tt> in DocBook V4.0,
                  not XML comments (&lt;-- like this --&gt;) which are unavailable.
                  
               </p>
               
               
            </div>
         </div>
         <hr>
         <div class="refentry">
            <h1 class="title"><a name="param.funcsynopsis.style"></a>funcsynopsis.style
            </h1>
            <div class="refnamediv"><a name="d0e242"></a><h2>Name</h2>funcsynopsis.style &#8212; What style of 'FuncSynopsis' should be generated?
            </div>
            <div class="refsynopsisdiv"><a name="d0e247"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="funcsynopsis.style" doc:type="list" doc:list="ansi kr"&gt;kr&lt;/xsl:param&gt;</pre></div>
            <div class="refdescription"><a name="d0e250"></a>
               
               
               <p>If <tt>funcsynopsis.style</tt> is <tt>ansi</tt>,
                  ANSI-style function synopses are generated for a
                  <tt>funcsynopsis</tt>, otherwise K&amp;R-style
                  function synopses are generated.
                  
               </p>
               
               
            </div>
         </div>
         <hr>
         <div class="refentry">
            <h1 class="title"><a name="param.funcsynopsis.decoration"></a>funcsynopsis.decoration
            </h1>
            <div class="refnamediv"><a name="d0e265"></a><h2>Name</h2>funcsynopsis.decoration &#8212; Decorate elements of a FuncSynopsis?
            </div>
            <div class="refsynopsisdiv"><a name="d0e270"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="funcsynopsis.decoration" select="1" doc:type="boolean"/&gt;</pre></div>
            <div class="refdescription"><a name="d0e273"></a>
               
               
               <p>If true (non-zero), elements of the FuncSynopsis will be decorated (e.g. bold or
                  italic).  The decoration is controlled by functions that can be redefined
                  in a customization layer.
                  
               </p>
               
               
            </div>
         </div>
         <hr>
         <div class="refentry">
            <h1 class="title"><a name="param.function.parens"></a>function.parens
            </h1>
            <div class="refnamediv"><a name="d0e279"></a><h2>Name</h2>function.parens &#8212; Generate parens after a function?
            </div>
            <div class="refsynopsisdiv"><a name="d0e284"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="function.parens" doc:type="boolean"&gt;0&lt;/xsl:param&gt;</pre></div>
            <div class="refdescription"><a name="d0e287"></a>
               
               
               <p>If not 0, the formatting of
                  a <tt>&lt;function&gt;</tt> element will include
                  generated parenthesis.
                  
               </p>
               
               
            </div>
         </div>
         <hr>
         <div class="refentry">
            <h1 class="title"><a name="param.refentry.generate.name"></a>refentry.generate.name
            </h1>
            <div class="refnamediv"><a name="d0e296"></a><h2>Name</h2>refentry.generate.name &#8212; Output NAME header before 'RefName'(s)?
            </div>
            <div class="refsynopsisdiv"><a name="d0e301"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="refentry.generate.name" select="1" doc:type="boolean"/&gt;</pre></div>
            <div class="refdescription"><a name="d0e304"></a>
               
               
               <p>If true (non-zero), a "NAME" section title is output before the list
                  of 'RefName's.
                  
               </p>
               
               
            </div>
         </div>
         <hr>
         <div class="refentry">
            <h1 class="title"><a name="param.admon.graphics"></a>admon.graphics
            </h1>
            <div class="refnamediv"><a name="d0e310"></a><h2>Name</h2>admon.graphics &#8212; Use graphics in admonitions?
            </div>
            <div class="refsynopsisdiv"><a name="d0e315"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="admon.graphics" select="0" doc:type="boolean"/&gt;</pre></div>
            <div class="refdescription"><a name="d0e318"></a>
               
               
               <p>If true (non-zero), admonitions are presented in an alternate style that uses
                  a graphic.  Default graphics are provided in the distribution.
                  
               </p>
               
               
            </div>
         </div>
         <hr>
         <div class="refentry">
            <h1 class="title"><a name="param.admon.graphics.path"></a>admon.graphics.path
            </h1>
            <div class="refnamediv"><a name="d0e324"></a><h2>Name</h2>admon.graphics.path &#8212; Path to admonition graphics
            </div>
            <div class="refsynopsisdiv"><a name="d0e329"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="admon.graphics.path" doc:type="string"&gt;images/&lt;/xsl:param&gt;</pre></div>
            <div class="refdescription"><a name="d0e332"></a>
               
               
               <p>Sets the path, probably relative to the directory where the HTML
                  files are created, to the admonition graphics.
                  
               </p>
               
               
            </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="d0e338"></a><h2>Name</h2>admon.graphics.extension &#8212; Extension for admonition graphics
            </div>
            <div class="refsynopsisdiv"><a name="d0e343"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="admon.graphics.extension" select="'.png'" doc:type="string"/&gt;</pre></div>
            <div class="refdescription"><a name="d0e346"></a>
               
               
               <p>Sets the extension to use on admonition graphics.</p>
               
               
            </div>
         </div>
         <hr>
         <div class="refentry">
            <h1 class="title"><a name="param.admon.style"></a>admon.style
            </h1>
            <div class="refnamediv"><a name="d0e352"></a><h2>Name</h2>admon.style &#8212; CSS style attributes for admonitions
            </div>
            <div class="refsynopsisdiv"><a name="d0e357"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="admon.style" doc:type="string"&gt;
  &lt;xsl:text&gt;margin-left: 0.5in; margin-right: 0.5in;&lt;/xsl:text&gt;
&lt;/xsl:param&gt;</pre></div>
            <div class="refdescription"><a name="d0e360"></a>
               
               
               <p>Specifies the value of the <tt>STYLE</tt>
                  attribute that should be added to admonitions.
                  
               </p>
               
               
            </div>
         </div>
         <hr>
         <div class="refentry">
            <h1 class="title"><a name="param.section.autolabel"></a>section.autolabel
            </h1>
            <div class="refnamediv"><a name="d0e369"></a><h2>Name</h2>section.autolabel &#8212; Are sections enumerated?
            </div>
            <div class="refsynopsisdiv"><a name="d0e374"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="section.autolabel" select="0" doc:type="boolean"/&gt;</pre></div>
            <div class="refdescription"><a name="d0e377"></a>
               
               
               <p>If true (non-zero), unlabeled sections will be enumerated.
                  
               </p>
               
               
            </div>
         </div>
         <hr>
         <div class="refentry">
            <h1 class="title"><a name="param.section.label.includes.component.label"></a>section.label.includes.component.label
            </h1>
            <div class="refnamediv"><a name="d0e383"></a><h2>Name</h2>section.label.includes.component.label &#8212; Do section labels include the component label?
            </div>
            <div class="refsynopsisdiv"><a name="d0e388"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="section.label.includes.component.label" select="0" doc:type="boolean"/&gt;</pre></div>
            <div class="refdescription"><a name="d0e391"></a>
               
               
               <p>If true (non-zero), section labels are prefixed with the label of the
                  component that contains them.
                  
               </p>
               
               
            </div>
         </div>
         <hr>
         <div class="refentry">
            <h1 class="title"><a name="param.chapter.autolabel"></a>chapter.autolabel
            </h1>
            <div class="refnamediv"><a name="d0e397"></a><h2>Name</h2>chapter.autolabel &#8212; Are chapters and appendixes enumerated?
            </div>
            <div class="refsynopsisdiv"><a name="d0e402"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="chapter.autolabel" select="1" doc:type="boolean"/&gt;</pre></div>
            <div class="refdescription"><a name="d0e405"></a>
               
               
               <p>If true (non-zero), unlabeled chapters and appendixes will be enumerated.
                  
               </p>
               
               
            </div>
         </div>
         <hr>
         <div class="refentry">
            <h1 class="title"><a name="param.preface.autolabel"></a>preface.autolabel
            </h1>
            <div class="refnamediv"><a name="d0e411"></a><h2>Name</h2>preface.autolabel &#8212; Are prefaces enumerated?
            </div>
            <div class="refsynopsisdiv"><a name="d0e416"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="preface.autolabel" select="0" doc:type="boolean"/&gt;</pre></div>
            <div class="refdescription"><a name="d0e419"></a>
               
               
               <p>If true (non-zero), unlabeled prefaces will be enumerated.
                  
               </p>
               
               
            </div>
         </div>
         <hr>
         <div class="refentry">
            <h1 class="title"><a name="param.part.autolabel"></a>part.autolabel
            </h1>
            <div class="refnamediv"><a name="d0e425"></a><h2>Name</h2>part.autolabel &#8212; Are parts and references enumerated?
            </div>
            <div class="refsynopsisdiv"><a name="d0e430"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="part.autolabel" select="1" doc:type="boolean"/&gt;</pre></div>
            <div class="refdescription"><a name="d0e433"></a>
               
               
               <p>If true (non-zero), unlabeled parts and references will be enumerated.
                  
               </p>
               
               
            </div>
         </div>
         <hr>
         <div class="refentry">
            <h1 class="title"><a name="param.qandadiv.autolabel"></a>qandadiv.autolabel
            </h1>
            <div class="refnamediv"><a name="d0e439"></a><h2>Name</h2>qandadiv.autolabel &#8212; Are divisions in QAndASets enumerated?
            </div>
            <div class="refsynopsisdiv"><a name="d0e444"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="qandadiv.autolabel" select="1" doc:type="boolean"/&gt;</pre></div>
            <div class="refdescription"><a name="d0e447"></a>
               
               
               <p>If true (non-zero), unlabeled qandadivs will be enumerated.
                  
               </p>
               
               
            </div>
         </div>
         <hr>
         <div class="refentry">
            <h1 class="title"><a name="param.qanda.inherit.numeration"></a>qanda.inherit.numeration
            </h1>
            <div class="refnamediv"><a name="d0e453"></a><h2>Name</h2>qanda.inherit.numeration &#8212; Does enumeration of QandASet components inherit the numeration of parent elements?
            </div>
            <div class="refsynopsisdiv"><a name="d0e458"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="qanda.inherit.numeration" select="1" doc:type="boolean"/&gt;</pre></div>
            <div class="refdescription"><a name="d0e461"></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="param.qanda.defaultlabel"></a>qanda.defaultlabel
            </h1>
            <div class="refnamediv"><a name="d0e467"></a><h2>Name</h2>qanda.defaultlabel &#8212; Sets the default for defaultlabel on QandASet.
            </div>
            <div class="refsynopsisdiv"><a name="d0e472"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="qanda.defaultlabel" doc:type="boolean" doc:list="qanda number none"&gt;number&lt;/xsl:param&gt;</pre></div>
            <div class="refdescription"><a name="d0e475"></a>
               
               
               <p>If no defaultlabel attribute is specified on a QandASet, this
                  value is used. It must be one of the legal values for the defaultlabel
                  attribute.
                  
               </p>
               
               
            </div>
         </div>
         <hr>
         <div class="refentry">
            <h1 class="title"><a name="param.generate.qandaset.toc"></a>generate.qandaset.toc
            </h1>
            <div class="refnamediv"><a name="d0e481"></a><h2>Name</h2>generate.qandaset.toc &#8212; Is a Table of Contents created for QandASets?
            </div>
            <div class="refsynopsisdiv"><a name="d0e486"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="generate.qandaset.toc" doc:type="boolean"&gt;1&lt;/xsl:param&gt;</pre></div>
            <div class="refdescription"><a name="d0e489"></a>
               
               
               <p>If true (non-zero), a ToC is constructed for QandASets.
                  
               </p>
               
               
            </div>
         </div>
         <hr>
         <div class="refentry">
            <h1 class="title"><a name="param.generate.qandadiv.toc"></a>generate.qandadiv.toc
            </h1>
            <div class="refnamediv"><a name="d0e495"></a><h2>Name</h2>generate.qandadiv.toc &#8212; Is a Table of Contents created for QandADivs?
            </div>
            <div class="refsynopsisdiv"><a name="d0e500"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="generate.qandadiv.toc" doc:type="boolean"&gt;0&lt;/xsl:param&gt;</pre></div>
            <div class="refdescription"><a name="d0e503"></a>
               
               
               <p>If true (non-zero), a ToC is constructed for QandADivs.
                  
               </p>
               
               
            </div>
         </div>
         <hr>
         <div class="refentry">
            <h1 class="title"><a name="param.biblioentry.item.separator"></a>biblioentry.item.separator
            </h1>
            <div class="refnamediv"><a name="d0e509"></a><h2>Name</h2>biblioentry.item.separator &#8212; Text to separate bibliography entries
            </div>
            <div class="refsynopsisdiv"><a name="d0e514"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="biblioentry.item.separator" doc:type="string"&gt;. &lt;/xsl:param&gt;</pre></div>
            <div class="refdescription"><a name="d0e517"></a>
               
               
               <p>Text to separate bibliography entries
                  
               </p>
               
               
            </div>
         </div>
         <hr>
         <div class="refentry">
            <h1 class="title"><a name="param.toc.section.depth"></a>toc.section.depth
            </h1>
            <div class="refnamediv"><a name="d0e523"></a><h2>Name</h2>toc.section.depth &#8212; How deep should recursive <tt>section</tt>s appear
               in the TOC?
            </div>
            <div class="refsynopsisdiv"><a name="d0e531"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="toc.section.depth" doc:type="integer" doc:min="1" doc:max="10"&gt;2&lt;/xsl:param&gt;</pre></div>
            <div class="refdescription"><a name="d0e534"></a>
               
               
               <p>Specifies the depth to which recursive sections should appear in the
                  TOC.
                  
               </p>
               
               
            </div>
         </div>
         <hr>
         <div class="refentry">
            <h1 class="title"><a name="param.using.chunker"></a>using.chunker
            </h1>
            <div class="refnamediv"><a name="d0e540"></a><h2>Name</h2>using.chunker &#8212; Will the output be chunked?
            </div>
            <div class="refsynopsisdiv"><a name="d0e545"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="using.chunker" select="0" doc:type="boolean"/&gt;</pre></div>
            <div class="refdescription"><a name="d0e548"></a>
               
               
               <p>In addition to providing chunking, the chunker can cleanup a
                  number of XML to HTML issues. If the chunker is not being used, the
                  stylesheets try to avoid producing results that will not appear properly
                  in browsers.
                  
               </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="d0e554"></a><h2>Name</h2>generate.component.toc &#8212; Should TOCs be genereated in components (Chapters, Appendixes, etc.)?
            </div>
            <div class="refsynopsisdiv"><a name="d0e559"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="generate.component.toc" select="1" doc:type="boolean"/&gt;</pre></div>
            <div class="refdescription"><a name="d0e562"></a>
               
               
               <p>If true (non-zero), they are.
                  
               </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="d0e568"></a><h2>Name</h2>generate.division.toc &#8212; Should TOCs be genereated in divisions (Books, Parts, etc.)?
            </div>
            <div class="refsynopsisdiv"><a name="d0e573"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="generate.division.toc" select="1" doc:type="boolean"/&gt;</pre></div>
            <div class="refdescription"><a name="d0e576"></a>
               
               
               <p>If true (non-zero), they are.
                  
               </p>
               
               
            </div>
         </div>
         <hr>
         <div class="refentry">
            <h1 class="title"><a name="param.link.mailto.url"></a>link.mailto.url
            </h1>
            <div class="refnamediv"><a name="d0e582"></a><h2>Name</h2>link.mailto.url &#8212; Mailto URL for the LINK REL=made HTML HEAD element
            </div>
            <div class="refsynopsisdiv"><a name="d0e587"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="link.mailto.url" doc:type="string"/&gt;</pre></div>
            <div class="refdescription"><a name="d0e590"></a>
               
               
               <p>If not the empty string, this address will be used for the
                  REL=made <tt>LINK</tt> element in the HTML <tt>HEAD</tt>.
                  
               </p>
               
               
            </div>
         </div>
         <hr>
         <div class="refentry">
            <h1 class="title"><a name="param.graphic.default.extension"></a>graphic.default.extension
            </h1>
            <div class="refnamediv"><a name="d0e602"></a><h2>Name</h2>graphic.default.extension &#8212; Default extension for graphic filenames
            </div>
            <div class="refsynopsisdiv"><a name="d0e607"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="graphic.default.extension" doc:type="string"/&gt;</pre></div>
            <div class="refdescription"><a name="d0e610"></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="param.toc.list.type"></a>toc.list.type
            </h1>
            <div class="refnamediv"><a name="d0e628"></a><h2>Name</h2>toc.list.type &#8212; Type of HTML list element to use for Tables of Contents
            </div>
            <div class="refsynopsisdiv"><a name="d0e633"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="toc.list.type" doc:type="list" doc:list="dl ul ol"&gt;dl&lt;/xsl:param&gt;</pre></div>
            <div class="refdescription"><a name="d0e636"></a>
               
               
               <p>When an automatically generated Table of Contents (or List of Titles)
                  is produced, this HTML element will be used to make the list.
                  
               </p>
               
               
            </div>
         </div>
         <hr>
         <div class="refentry">
            <h1 class="title"><a name="param.use.id.function"></a>use.id.function
            </h1>
            <div class="refnamediv"><a name="d0e642"></a><h2>Name</h2>use.id.function &#8212; Use the XPath id() function to find link targets?
            </div>
            <div class="refsynopsisdiv"><a name="d0e647"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="use.id.function" doc:type="boolean" select="'1'"/&gt;</pre></div>
            <div class="refdescription"><a name="d0e650"></a>
               
               
               <p>If 1, the stylesheets use the <tt>id()</tt> function
                  to find the targets of cross reference elements. This is more
                  efficient, but only works if your XSLT processor implements the
                  <tt>id()</tt> function, naturally.
               </p>
               
               
               
               <p>THIS PARAMETER IS NOT SUPPORTED. IT IS ALWAYS ASSUMED TO BE 1.
                  SEE xref.xsl IF YOU NEED TO TURN IT OFF.
               </p>
               
               
            </div>
         </div>
         <hr>
         <div class="refentry">
            <h1 class="title"><a name="param.spacing.paras"></a>spacing.paras
            </h1>
            <div class="refnamediv"><a name="d0e665"></a><h2>Name</h2>spacing.paras &#8212; Insert additional &lt;p&gt; elements for spacing?
            </div>
            <div class="refsynopsisdiv"><a name="d0e670"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="spacing.paras" doc:type="boolean" select="'0'"/&gt;</pre></div>
            <div class="refdescription"><a name="d0e673"></a>
               
               
               <p>When non-zero, additional, empty paragraphs are inserted in
                  several contexts (for example, around informal figures), to create a
                  more pleasing visual appearance in many browsers.
                  
               </p>
               
               
            </div>
         </div>
         <hr>
         <div class="refentry">
            <h1 class="title"><a name="param.css.decoration"></a>css.decoration
            </h1>
            <div class="refnamediv"><a name="d0e679"></a><h2>Name</h2>css.decoration &#8212; Enable CSS decoration of elements
            </div>
            <div class="refsynopsisdiv"><a name="d0e684"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="css.decoration" doc:type="boolean"&gt;1&lt;/xsl:param&gt;</pre></div>
            <div class="refdescription"><a name="d0e687"></a>
               
               
               <p>
                  If <tt>css.decoration</tt> is turned on, then HTML elements
                  produced by the
                  stylesheet may be decorated with STYLE attributes.  For example, the
                  LI tags produced for list items may include a fragment of CSS in the
                  STYLE attribute which sets the CSS property "list-style-type".
                  
               </p>
               
               
            </div>
         </div>
         <hr>
         <div class="refentry">
            <h1 class="title"><a name="param.show.revisionflag"></a>show.revisionflag
            </h1>
            <div class="refnamediv"><a name="d0e696"></a><h2>Name</h2>show.revisionflag &#8212; Enable decoration of elements that have a revisionflag
            </div>
            <div class="refsynopsisdiv"><a name="d0e701"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="show.revisionflag" doc:type="boolean"&gt;0&lt;/xsl:param&gt;</pre></div>
            <div class="refdescription"><a name="d0e704"></a>
               
               
               <p>
                  If <tt>show.revisionflag</tt> is turned on, then the stylesheets
                  may produce additional markup designed to allow a CSS stylesheet to
                  highlight elements that have specific revisionflag settings.
               </p>
               
               
               
               
               <p>The markup inserted will be usually be either a &lt;span&gt; or &lt;div&gt;
                  with an appropriate <tt>class</tt> attribute. (The value of
                  the class attribute will be the same as the value of the revisionflag
                  attribute). In some contexts, for example tables, where extra markup
                  would be structurally illegal, the class attribute will be added to the
                  appropriate container element.
               </p>
               
               
               
               
               <p>In general, the stylesheets only test for revisionflag in contexts
                  where an importing stylesheet would have to redefine whole templates.
                  Most of the revisionflag processing is expected to be done by another
                  stylesheet, for example <tt>changebars.xsl</tt>.
               </p>
               
               
            </div>
         </div>
         <hr>
         <div class="refentry">
            <h1 class="title"><a name="param.suppress.navigation"></a>suppress.navigation
            </h1>
            <div class="refnamediv"><a name="d0e725"></a><h2>Name</h2>suppress.navigation &#8212; Disable header and footer navigation
            </div>
            <div class="refsynopsisdiv"><a name="d0e730"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="suppress.navigation" doc:type="boolean"&gt;0&lt;/xsl:param&gt;</pre></div>
            <div class="refdescription"><a name="d0e733"></a>
               
               
               <p>
                  If <tt>suppress.navigation</tt> is turned on, header and
                  footer navigation will be suppressed.
               </p>
               
               
            </div>
         </div>
         <hr>
         <div class="refentry">
            <h1 class="title"><a name="param.rootid"></a>rootid
            </h1>
            <div class="refnamediv"><a name="d0e742"></a><h2>Name</h2>rootid &#8212; Specify the root element to format
            </div>
            <div class="refsynopsisdiv"><a name="d0e747"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="rootid" select="''" doc:type="string"/&gt;</pre></div>
            <div class="refdescription"><a name="d0e750"></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.list.table"></a>callout.list.table
            </h1>
            <div class="refnamediv"><a name="d0e762"></a><h2>Name</h2>callout.list.table &#8212; Present callout lists using a table?
            </div>
            <div class="refsynopsisdiv"><a name="d0e767"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="callout.list.table" select="'1'" doc:type="boolean"/&gt;</pre></div>
            <div class="refdescription"><a name="d0e770"></a>
               
               
               <p>The default presentation of <tt>CalloutList</tt>s uses
                  an HTML <tt>DL</tt>. Some browsers don't align DLs very well
                  if <i><tt>callout.graphics</tt></i> are used. With this option
                  turned on, <tt>CalloutList</tt>s are presented in an HTML
                  <tt>TABLE</tt>, which usually results in better alignment
                  of the callout number with the callout description.
               </p>
               
               
            </div>
         </div>
         <hr>
         <div class="refentry">
            <h1 class="title"><a name="param.callout.graphics"></a>callout.graphics
            </h1>
            <div class="refnamediv"><a name="d0e791"></a><h2>Name</h2>callout.graphics &#8212; Use graphics for callouts?
            </div>
            <div class="refsynopsisdiv"><a name="d0e796"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="callout.graphics" select="'1'" doc:type="boolean"/&gt;</pre></div>
            <div class="refdescription"><a name="d0e799"></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.graphics.extension"></a>callout.graphics.extension
            </h1>
            <div class="refnamediv"><a name="d0e805"></a><h2>Name</h2>callout.graphics.extension &#8212; Extension for callout graphics
            </div>
            <div class="refsynopsisdiv"><a name="d0e810"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="callout.graphics.extension" select="'.png'" doc:type="string"/&gt;</pre></div>
            <div class="refdescription"><a name="d0e813"></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="d0e819"></a><h2>Name</h2>callout.graphics.path &#8212; Path to callout graphics
            </div>
            <div class="refsynopsisdiv"><a name="d0e824"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="callout.graphics.path" select="'images/callouts/'" doc:type="string"/&gt;</pre></div>
            <div class="refdescription"><a name="d0e827"></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="d0e833"></a><h2>Name</h2>callout.graphics.number.limit &#8212; Number of the largest callout graphic
            </div>
            <div class="refsynopsisdiv"><a name="d0e838"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="callout.graphics.number.limit" select="'10'" doc:type="integer"/&gt;</pre></div>
            <div class="refdescription"><a name="d0e841"></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="d0e853"></a><h2>Name</h2>use.extensions &#8212; Enable extensions
            </div>
            <div class="refsynopsisdiv"><a name="d0e858"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="use.extensions" select="'0'" doc:type="boolean"/&gt;</pre></div>
            <div class="refdescription"><a name="d0e861"></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="d0e870"></a><h2>Name</h2>textinsert.extension &#8212; Enable the textinsert extension element
            </div>
            <div class="refsynopsisdiv"><a name="d0e875"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="textinsert.extension" select="'1'" doc:type="boolean"/&gt;</pre></div>
            <div class="refdescription"><a name="d0e878"></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.saxon.linenumbering"></a>saxon.linenumbering
            </h1>
            <div class="refnamediv"><a name="d0e884"></a><h2>Name</h2>saxon.linenumbering &#8212; Enable the line numbering extension
            </div>
            <div class="refsynopsisdiv"><a name="d0e889"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="saxon.linenumbering" select="'1'" doc:type="boolean"/&gt;</pre></div>
            <div class="refdescription"><a name="d0e892"></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.extension"></a>linenumbering.extension
            </h1>
            <div class="refnamediv"><a name="d0e898"></a><h2>Name</h2>linenumbering.extension &#8212; Enable the line numbering extension
            </div>
            <div class="refsynopsisdiv"><a name="d0e903"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="linenumbering.extension" select="'1'" doc:type="boolean"/&gt;</pre></div>
            <div class="refdescription"><a name="d0e906"></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="d0e912"></a><h2>Name</h2>linenumbering.everyNth &#8212; Indicate which lines should be numbered
            </div>
            <div class="refsynopsisdiv"><a name="d0e917"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="linenumbering.everyNth" select="'5'" doc:type="integer"/&gt;</pre></div>
            <div class="refdescription"><a name="d0e920"></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="d0e926"></a><h2>Name</h2>linenumbering.width &#8212; Indicates the width of line numbers
            </div>
            <div class="refsynopsisdiv"><a name="d0e931"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="linenumbering.width" select="'3'" doc:type="integer"/&gt;</pre></div>
            <div class="refdescription"><a name="d0e934"></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="d0e940"></a><h2>Name</h2>linenumbering.separator &#8212; Specify a separator between line numbers and lines
            </div>
            <div class="refsynopsisdiv"><a name="d0e945"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="linenumbering.separator" select="' '" doc:type="string"/&gt;</pre></div>
            <div class="refdescription"><a name="d0e948"></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.saxon.callouts"></a>saxon.callouts
            </h1>
            <div class="refnamediv"><a name="d0e954"></a><h2>Name</h2>saxon.callouts &#8212; Enable the callout extension
            </div>
            <div class="refsynopsisdiv"><a name="d0e959"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="saxon.callouts" select="'1'" doc:type="boolean"/&gt;</pre></div>
            <div class="refdescription"><a name="d0e962"></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.callouts.extension"></a>callouts.extension
            </h1>
            <div class="refnamediv"><a name="d0e974"></a><h2>Name</h2>callouts.extension &#8212; Enable the callout extension
            </div>
            <div class="refsynopsisdiv"><a name="d0e979"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="callouts.extension" select="'1'" doc:type="boolean"/&gt;</pre></div>
            <div class="refdescription"><a name="d0e982"></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="d0e994"></a><h2>Name</h2>callout.defaultcolumn &#8212; Indicates what column callouts appear in by default
            </div>
            <div class="refsynopsisdiv"><a name="d0e999"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="callout.defaultcolumn" select="'60'" doc:type="integer"/&gt;</pre></div>
            <div class="refdescription"><a name="d0e1002"></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.stylesheet.result.type"></a>stylesheet.result.type
            </h1>
            <div class="refnamediv"><a name="d0e1014"></a><h2>Name</h2>stylesheet.result.type &#8212; Identifies the output format of this stylesheet
            </div>
            <div class="refsynopsisdiv"><a name="d0e1019"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="stylesheet.result.type" select="'html'" doc:type="list" doc:list="html fo"/&gt;</pre></div>
            <div class="refdescription"><a name="d0e1022"></a>
               
               
               <p>The Saxon 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.nominal.table.width"></a>nominal.table.width
            </h1>
            <div class="refnamediv"><a name="d0e1028"></a><h2>Name</h2>nominal.table.width &#8212; The (absolute) nominal width of tables
            </div>
            <div class="refsynopsisdiv"><a name="d0e1033"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="nominal.table.width" select="'6in'" doc:type="length"/&gt;</pre></div>
            <div class="refdescription"><a name="d0e1036"></a>
               
               
               <p>In order to convert CALS column widths into HTML 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 percentag).
               </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="d0e1042"></a><h2>Name</h2>default.table.width &#8212; The default width of tables
            </div>
            <div class="refsynopsisdiv"><a name="d0e1047"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="default.table.width" select="''" doc:type="length"/&gt;</pre></div>
            <div class="refdescription"><a name="d0e1050"></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.saxon.tablecolumns"></a>saxon.tablecolumns
            </h1>
            <div class="refnamediv"><a name="d0e1056"></a><h2>Name</h2>saxon.tablecolumns &#8212; Enable the table columns extension function
            </div>
            <div class="refsynopsisdiv"><a name="d0e1061"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="saxon.tablecolumns" select="'1'" doc:type="boolean"/&gt;</pre></div>
            <div class="refdescription"><a name="d0e1064"></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.tablecolumns.extension"></a>tablecolumns.extension
            </h1>
            <div class="refnamediv"><a name="d0e1070"></a><h2>Name</h2>tablecolumns.extension &#8212; Enable the table columns extension function
            </div>
            <div class="refsynopsisdiv"><a name="d0e1075"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="tablecolumns.extension" select="'1'" doc:type="boolean"/&gt;</pre></div>
            <div class="refdescription"><a name="d0e1078"></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.generate.set.toc"></a>generate.set.toc
            </h1>
            <div class="refnamediv"><a name="d0e1084"></a><h2>Name</h2>generate.set.toc &#8212; FIXME:
            </div>
            <div class="refsynopsisdiv"><a name="d0e1089"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="generate.set.toc" select="1" doc:type="boolean"/&gt;</pre></div>
            <div class="refdescription"><a name="d0e1092"></a>
               
               
               <p>FIXME:
                  
               </p>
               
               
            </div>
         </div>
         <hr>
         <div class="refentry">
            <h1 class="title"><a name="param.generate.book.toc"></a>generate.book.toc
            </h1>
            <div class="refnamediv"><a name="d0e1098"></a><h2>Name</h2>generate.book.toc &#8212; FIXME:
            </div>
            <div class="refsynopsisdiv"><a name="d0e1103"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="generate.book.toc" select="1" doc:type="boolean"/&gt;</pre></div>
            <div class="refdescription"><a name="d0e1106"></a>
               
               
               <p>FIXME:
                  
               </p>
               
               
            </div>
         </div>
         <hr>
         <div class="refentry">
            <h1 class="title"><a name="param.generate.part.toc"></a>generate.part.toc
            </h1>
            <div class="refnamediv"><a name="d0e1112"></a><h2>Name</h2>generate.part.toc &#8212; FIXME:
            </div>
            <div class="refsynopsisdiv"><a name="d0e1117"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="generate.part.toc" select="1" doc:type="boolean"/&gt;</pre></div>
            <div class="refdescription"><a name="d0e1120"></a>
               
               
               <p>FIXME:
                  
               </p>
               
               
            </div>
         </div>
         <hr>
         <div class="refentry">
            <h1 class="title"><a name="param.generate.reference.toc"></a>generate.reference.toc
            </h1>
            <div class="refnamediv"><a name="d0e1126"></a><h2>Name</h2>generate.reference.toc &#8212; FIXME:
            </div>
            <div class="refsynopsisdiv"><a name="d0e1131"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="generate.reference.toc" select="1" doc:type="boolean"/&gt;</pre></div>
            <div class="refdescription"><a name="d0e1134"></a>
               
               
               <p>FIXME:
                  
               </p>
               
               
            </div>
         </div>
         <hr>
         <div class="refentry">
            <h1 class="title"><a name="param.generate.preface.toc"></a>generate.preface.toc
            </h1>
            <div class="refnamediv"><a name="d0e1140"></a><h2>Name</h2>generate.preface.toc &#8212; FIXME:
            </div>
            <div class="refsynopsisdiv"><a name="d0e1145"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="generate.preface.toc" select="1" doc:type="boolean"/&gt;</pre></div>
            <div class="refdescription"><a name="d0e1148"></a>
               
               
               <p>FIXME:
                  
               </p>
               
               
            </div>
         </div>
         <hr>
         <div class="refentry">
            <h1 class="title"><a name="param.generate.chapter.toc"></a>generate.chapter.toc
            </h1>
            <div class="refnamediv"><a name="d0e1154"></a><h2>Name</h2>generate.chapter.toc &#8212; FIXME:
            </div>
            <div class="refsynopsisdiv"><a name="d0e1159"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="generate.chapter.toc" select="1" doc:type="boolean"/&gt;</pre></div>
            <div class="refdescription"><a name="d0e1162"></a>
               
               
               <p>FIXME:
                  
               </p>
               
               
            </div>
         </div>
         <hr>
         <div class="refentry">
            <h1 class="title"><a name="param.generate.appendix.toc"></a>generate.appendix.toc
            </h1>
            <div class="refnamediv"><a name="d0e1168"></a><h2>Name</h2>generate.appendix.toc &#8212; FIXME:
            </div>
            <div class="refsynopsisdiv"><a name="d0e1173"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="generate.appendix.toc" select="1" doc:type="boolean"/&gt;</pre></div>
            <div class="refdescription"><a name="d0e1176"></a>
               
               
               <p>FIXME:
                  
               </p>
               
               
            </div>
         </div>
         <hr>
         <div class="refentry">
            <h1 class="title"><a name="param.generate.article.toc"></a>generate.article.toc
            </h1>
            <div class="refnamediv"><a name="d0e1182"></a><h2>Name</h2>generate.article.toc &#8212; FIXME:
            </div>
            <div class="refsynopsisdiv"><a name="d0e1187"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="generate.article.toc" select="1" doc:type="boolean"/&gt;</pre></div>
            <div class="refdescription"><a name="d0e1190"></a>
               
               
               <p>FIXME:
                  
               </p>
               
               
            </div>
         </div>
         <hr>
         <div class="refentry">
            <h1 class="title"><a name="param.generate.section.toc"></a>generate.section.toc
            </h1>
            <div class="refnamediv"><a name="d0e1196"></a><h2>Name</h2>generate.section.toc &#8212; Generate TOCs inside Sections?
            </div>
            <div class="refsynopsisdiv"><a name="d0e1201"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="generate.section.toc" select="1" doc:type="boolean"/&gt;</pre></div>
            <div class="refdescription"><a name="d0e1204"></a>
               
               
               <p>If non-zero, a Table of Contents will be generated inside section
                  elements. Note that
                  <i><tt>generate.section.toc.level</tt></i>
                  may suppress some section TOCs.
                  
               </p>
               
               
            </div>
         </div>
         <hr>
         <div class="refentry">
            <h1 class="title"><a name="param.generate.section.toc.level"></a>generate.section.toc.level
            </h1>
            <div class="refnamediv"><a name="d0e1213"></a><h2>Name</h2>generate.section.toc.level &#8212; Control depth of TOC generation in sections
            </div>
            <div class="refsynopsisdiv"><a name="d0e1218"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="generate.section.toc.level" select="0" doc:type="integer"/&gt;</pre></div>
            <div class="refdescription"><a name="d0e1221"></a>
               
               
               <p>The <i><tt>generate.section.toc.level</tt></i> parameter
                  controls the depth of section in which TOCs will be generated. Note
                  that this is related to, but not the same as
                  <i><tt>toc.section.depth</tt></i>, which controls the depth to
                  which TOC entries will be generated in a given TOC.
               </p>
               
               
               
               <p>If, for example, <i><tt>generate.section.toc.level</tt></i>
                  is <tt>3</tt>, TOCs will be generated in first, second, and third
                  level sections, but not in fourth level sections.
                  
               </p>
               
               
            </div>
         </div>
         <hr>
         <div class="refentry">
            <h1 class="title"><a name="param.process.source.toc"></a>process.source.toc
            </h1>
            <div class="refnamediv"><a name="d0e1242"></a><h2>Name</h2>process.source.toc &#8212; FIXME:
            </div>
            <div class="refsynopsisdiv"><a name="d0e1247"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="process.source.toc" select="0" doc:type="boolean"/&gt;</pre></div>
            <div class="refdescription"><a name="d0e1250"></a>
               
               
               <p>FIXME:
                  
               </p>
               
               
            </div>
         </div>
         <hr>
         <div class="refentry">
            <h1 class="title"><a name="param.process.empty.source.toc"></a>process.empty.source.toc
            </h1>
            <div class="refnamediv"><a name="d0e1256"></a><h2>Name</h2>process.empty.source.toc &#8212; FIXME:
            </div>
            <div class="refsynopsisdiv"><a name="d0e1261"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="process.empty.source.toc" select="0" doc:type="boolean"/&gt;</pre></div>
            <div class="refdescription"><a name="d0e1264"></a>
               
               
               <p>FIXME:
                  
               </p>
               
               
            </div>
         </div>
         <hr>
         <div class="refentry">
            <h1 class="title"><a name="param.bridgehead.in.toc"></a>bridgehead.in.toc
            </h1>
            <div class="refnamediv"><a name="d0e1270"></a><h2>Name</h2>bridgehead.in.toc &#8212; Should bridgehead elements appear in the TOC?
            </div>
            <div class="refsynopsisdiv"><a name="d0e1275"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="bridgehead.in.toc" select="0" doc:type="boolean"/&gt;</pre></div>
            <div class="refdescription"><a name="d0e1278"></a>
               
               
               <p>If non-zero, bridgeheads appear in the TOC. Note that this option
                  is not fully supported and may be removed in a future version of the
                  stylesheets.
                  
               </p>
               
               
            </div>
         </div>
         <hr>
         <div class="refentry">
            <h1 class="title"><a name="param.generate.index"></a>generate.index
            </h1>
            <div class="refnamediv"><a name="d0e1284"></a><h2>Name</h2>generate.index &#8212; FIXME:
            </div>
            <div class="refsynopsisdiv"><a name="d0e1289"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="generate.index" select="1" doc:type="boolean"/&gt;</pre></div>
            <div class="refdescription"><a name="d0e1292"></a>
               
               
               <p>FIXME:
                  
               </p>
               
               
            </div>
         </div>
         <hr>
         <div class="refentry">
            <h1 class="title"><a name="param.callout.unicode"></a>callout.unicode
            </h1>
            <div class="refnamediv"><a name="d0e1298"></a><h2>Name</h2>callout.unicode &#8212; FIXME:
            </div>
            <div class="refsynopsisdiv"><a name="d0e1303"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="callout.unicode" select="0" doc:type="boolean"/&gt;</pre></div>
            <div class="refdescription"><a name="d0e1306"></a>
               
               
               <p>FIXME:
                  
               </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="d0e1312"></a><h2>Name</h2>callout.unicode.start.character &#8212; First Unicode character to use, decimal value.
            </div>
            <div class="refsynopsisdiv"><a name="d0e1317"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="callout.unicode.start.character" select="10102" doc:type="integer"/&gt;</pre></div>
            <div class="refdescription"><a name="d0e1320"></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="d0e1332"></a><h2>Name</h2>callout.unicode.number.limit &#8212; Number of the largest callout graphic
            </div>
            <div class="refsynopsisdiv"><a name="d0e1337"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="callout.unicode.number.limit" select="'10'" doc:type="integer"/&gt;</pre></div>
            <div class="refdescription"><a name="d0e1340"></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.font"></a>callout.unicode.font
            </h1>
            <div class="refnamediv"><a name="d0e1352"></a><h2>Name</h2>callout.unicode.font &#8212; Font to use for Unicode dingbats
            </div>
            <div class="refsynopsisdiv"><a name="d0e1357"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="callout.unicode.font" select="'ZapfDingbats'"/&gt;</pre></div>
            <div class="refdescription"><a name="d0e1360"></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.use.id.as.filename"></a>use.id.as.filename
            </h1>
            <div class="refnamediv"><a name="d0e1366"></a><h2>Name</h2>use.id.as.filename &#8212; Use ID value of chunk elements as the filename?
            </div>
            <div class="refsynopsisdiv"><a name="d0e1371"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="use.id.as.filename" select="'0'" doc:type="boolean"/&gt;</pre></div>
            <div class="refdescription"><a name="d0e1374"></a>
               
               
               <p>If <i><tt>use.id.as.filename</tt></i>
                  is non-zero, the filename of chunk elements that have IDs will be
                  derived from the ID value.
                  
               </p>
               
               
            </div>
         </div>
         <hr>
         <div class="refentry">
            <h1 class="title"><a name="param.inherit.keywords"></a>inherit.keywords
            </h1>
            <div class="refnamediv"><a name="d0e1383"></a><h2>Name</h2>inherit.keywords &#8212; Inherit keywords from ancestor elements?
            </div>
            <div class="refsynopsisdiv"><a name="d0e1388"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="inherit.keywords" select="'1'" doc:type="boolean"/&gt;</pre></div>
            <div class="refdescription"><a name="d0e1391"></a>
               
               
               <p>If <i><tt>inherit.keywords</tt></i>
                  is non-zero, the keyword <tt>META</tt> for each HTML
                  <tt>HEAD</tt> element will include all of the keywords from
                  ancestral elements. Otherwise, only the keywords from the current section
                  will be used.
                  
               </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="d0e1406"></a><h2>Name</h2>label.from.part &#8212; Renumber chapters in each part?
            </div>
            <div class="refsynopsisdiv"><a name="d0e1411"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="label.from.part" select="'0'" doc:type="boolean"/&gt;</pre></div>
            <div class="refdescription"><a name="d0e1414"></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.citerefentry.link"></a>citerefentry.link
            </h1>
            <div class="refnamediv"><a name="d0e1435"></a><h2>Name</h2>citerefentry.link &#8212; Generate URL links when cross-referencing RefEntrys?
            </div>
            <div class="refsynopsisdiv"><a name="d0e1440"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="citerefentry.link" select="'0'" doc:type="boolean"/&gt;</pre></div>
            <div class="refdescription"><a name="d0e1443"></a>
               
               
               <p>If true, a web link will be generated, presumably
                  to an online man-&gt;HTML gateway. The text of the link is
                  generated by the generate.citerefentry.link template.
                  
               </p>
               
               
            </div>
         </div>
         <hr>
         <div class="refentry">
            <h1 class="title"><a name="param.formal.procedures"></a>formal.procedures
            </h1>
            <div class="refnamediv"><a name="d0e1449"></a><h2>Name</h2>formal.procedures &#8212; Selects formal or informal procedures
            </div>
            <div class="refsynopsisdiv"><a name="d0e1454"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="formal.procedures" select="1" doc:type="boolean"/&gt;</pre></div>
            <div class="refdescription"><a name="d0e1457"></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="d0e1463"></a><h2>Name</h2>bibliography.collection &#8212; Name of the bibliography collection file
            </div>
            <div class="refsynopsisdiv"><a name="d0e1468"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="bibliography.collection" doc:type="string" select="'http://docbook.sourceforge.net/release/bibliography/bibliography.xml'"/&gt;</pre></div>
            <div class="refdescription"><a name="d0e1471"></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.annotate.toc"></a>annotate.toc
            </h1>
            <div class="refnamediv"><a name="d0e1477"></a><h2>Name</h2>annotate.toc &#8212; Annotate the Table of Contents?
            </div>
            <div class="refsynopsisdiv"><a name="d0e1482"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="annotate.toc" select="1" doc:type="boolean"/&gt;</pre></div>
            <div class="refdescription"><a name="d0e1485"></a>
               
               
               <p>If true, TOCs will be annotated. At present, this just means
                  that the <tt>RefPurpose</tt> of <tt>RefEntry</tt>
                  TOC entries will be displayed.
                  
               </p>
               
               
            </div>
         </div>
         <hr>
         <div class="refentry">
            <h1 class="title"><a name="param.emphasis.propagates.style"></a>emphasis.propagates.style
            </h1>
            <div class="refnamediv"><a name="d0e1497"></a><h2>Name</h2>emphasis.propagates.style &#8212; Pass emphasis role attribute through to HTML?
            </div>
            <div class="refsynopsisdiv"><a name="d0e1502"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="emphasis.propagates.style" select="1" doc:type="boolean"/&gt;</pre></div>
            <div class="refdescription"><a name="d0e1505"></a>
               
               
               <p>If true, the role attribute of <tt>emphasis</tt> elements
                  will be passed through to the HTML as a class attribute on a
                  <tt>span</tt> that surrounds the emphasis.
               </p>
               
               
            </div>
         </div>
         <hr>
         <div class="refentry">
            <h1 class="title"><a name="param.phrase.propagates.style"></a>phrase.propagates.style
            </h1>
            <div class="refnamediv"><a name="d0e1517"></a><h2>Name</h2>phrase.propagates.style &#8212; Pass phrase role attribute through to HTML?
            </div>
            <div class="refsynopsisdiv"><a name="d0e1522"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="phrase.propagates.style" select="1" doc:type="boolean"/&gt;</pre></div>
            <div class="refdescription"><a name="d0e1525"></a>
               
               
               <p>If true, the role attribute of <tt>phrase</tt> elements
                  will be passed through to the HTML as a class attribute on a
                  <tt>span</tt> that surrounds the phrase.
               </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="d0e1537"></a><h2>Name</h2>runinhead.title.end.punct &#8212; Characters that count as punctuation on a run-in-head
            </div>
            <div class="refsynopsisdiv"><a name="d0e1542"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="runinhead.title.end.punct" select="'.!?:'" doc:type="string"/&gt;</pre></div>
            <div class="refdescription"><a name="d0e1545"></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="d0e1551"></a><h2>Name</h2>runinhead.default.title.end.punct &#8212; Default punctuation character on a run-in-head
            </div>
            <div class="refsynopsisdiv"><a name="d0e1556"></a><h2>Synopsis</h2><pre class="synopsis">
&lt;xsl:param name="runinhead.default.title.end.punct" select="'.'" doc:type="string"/&gt;</pre></div>
            <div class="refdescription"><a name="d0e1559"></a>
               
               
               <p>FIXME:
                  
               </p>
               
               
            </div>
         </div>
      </div>
   </body>
</html>