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
|
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE reference
PUBLIC "-//Norman Walsh//DTD JRefEntry V1.1//EN" "http://docbook.sourceforge.net/release/jrefentry/1.1/jrefentry.dtd">
<reference>
<referenceinfo>
<releaseinfo role="meta">
$Id: param.xml,v 1.1 2002/05/15 17:22:25 isberg Exp $
</releaseinfo>
<author><surname>Walsh</surname>
<firstname>Norman</firstname></author>
<copyright><year>1999</year><year>2000</year>
<holder>Norman Walsh</holder>
</copyright>
</referenceinfo>
<title>HTML Parameter Reference</title>
<partintro>
<section><title>Introduction</title>
<para>This is technical reference documentation for the DocBook XSL
Stylesheets; it documents (some of) the parameters, templates, and
other elements of the stylesheets.</para>
<para>This reference describes each of the HTML Stylesheet parameters.
These are the <quote>easily customizable</quote> 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 <quote>driver</quote> stylesheet.</para>
<para>For example, if you want to change the <literal>html.stylesheet</literal>
to <filename>reference.css</filename>, you might create a driver
stylesheet like this:</para>
<programlisting><xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version='1.0'>
<xsl:import href="/path/to/html/docbook.xsl"/>
<xsl:param name="html.stylesheet">reference.css</xsl:param>
</xsl:stylesheet></programlisting>
<para>Naturally, you have to change the
<sgmltag class="attribute">href</sgmltag> attribute on
<literal><xsl:import></literal>
to point to <filename>docbook.xsl</filename>
on your system. (Or <filename>chunk.xsl</filename>, if you're using
chunking.)</para>
<para>This is not intended to be <quote>user</quote> documentation.
It is provided for developers writing customization layers for the
stylesheets, and for anyone who's interested in <quote>how it
works</quote>.</para>
<para>Although I am trying to be thorough, this documentation is known
to be incomplete. Don't forget to read the source, too :-)</para>
</section>
</partintro>
<refentry id="param.author.othername.in.middle">
<refnamediv>
<refname>author.othername.in.middle</refname>
<refpurpose>Is <sgmltag>othername</sgmltag> in <sgmltag>author</sgmltag> a
middle name?</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="author.othername.in.middle" select="1" doc:type="boolean"/></synopsis>
</refsynopsisdiv>
<refdescription>
<para>If true (non-zero), the <sgmltag>othername</sgmltag> of an <sgmltag>author</sgmltag>
appears between the <sgmltag>firstname</sgmltag> and
<sgmltag>surname</sgmltag>. Otherwise, <sgmltag>othername</sgmltag>
is suppressed.
</para>
</refdescription></refentry>
<refentry id="param.html.stylesheet">
<refnamediv>
<refname>html.stylesheet</refname>
<refpurpose>Name of the stylesheet to use in the generated HTML</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="html.stylesheet" select="''" doc:type="string"/></synopsis>
</refsynopsisdiv>
<refdescription>
<para>The name of the stylesheet to place in the HTML <sgmltag>LINK</sgmltag>
tag, or the empty string to suppress the stylesheet <sgmltag>LINK</sgmltag>.
</para>
</refdescription></refentry>
<refentry id="param.html.stylesheet.type">
<refnamediv>
<refname>html.stylesheet.type</refname>
<refpurpose>The type of the stylesheet used in the generated HTML</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="html.stylesheet.type" doc:type="string">text/css</xsl:param></synopsis>
</refsynopsisdiv>
<refdescription>
<para>The type of the stylesheet to place in the HTML <sgmltag>link</sgmltag> tag.
</para>
</refdescription></refentry>
<refentry id="param.html.base">
<refnamediv>
<refname>html.base</refname>
<refpurpose>An HTML base URI</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="html.base" doc:type="uri"/></synopsis>
</refsynopsisdiv>
<refdescription>
<para>If html.base is set, it is used for the <sgmltag>BASE</sgmltag>
element in the <sgmltag>HEAD</sgmltag> of the HTML documents.
This is useful for dynamically served HTML where the base URI needs
to be shifted.</para>
</refdescription></refentry>
<refentry id="param.ulink.target">
<refnamediv>
<refname>ulink.target</refname>
<refpurpose>The HTML anchor target for ULinks</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="ulink.target" select="'_top'" doc:type="string"/></synopsis>
</refsynopsisdiv>
<refdescription>
<para>If <parameter>ulink.target</parameter> is set, its value will
be used for the <sgmltag class="attribute">target</sgmltag> attribute
on anchors generated for <sgmltag>ulink</sgmltag>s.</para>
</refdescription></refentry>
<refentry id="param.refentry.xref.manvolnum">
<refnamediv>
<refname>refentry.xref.manvolnum</refname>
<refpurpose>Output <sgmltag>manvolnum</sgmltag> as part of
<sgmltag>refentry</sgmltag> cross-reference?</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="refentry.xref.manvolnum" select="1" doc:type="boolean"/></synopsis>
</refsynopsisdiv>
<refdescription>
<para>if true (non-zero), the <sgmltag>manvolnum</sgmltag> is used when cross-referencing
<sgmltag>refentry</sgmltag>s, either with <sgmltag>xref</sgmltag>
or <sgmltag>citerefentry</sgmltag>.
</para>
</refdescription></refentry>
<refentry id="param.show.comments">
<refnamediv>
<refname>show.comments</refname>
<refpurpose>Display <sgmltag>comment</sgmltag> elements?</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="show.comments" doc:type="boolean">1</xsl:param></synopsis>
</refsynopsisdiv>
<refdescription>
<para>If true (non-zero), comments will be displayed, otherwise they are suppressed.
Comments here refers to the <sgmltag>comment</sgmltag> element,
which will be renamed <sgmltag>remark</sgmltag> in DocBook V4.0,
not XML comments (<-- like this -->) which are unavailable.
</para>
</refdescription></refentry>
<refentry id="param.funcsynopsis.style">
<refnamediv>
<refname>funcsynopsis.style</refname>
<refpurpose>What style of 'FuncSynopsis' should be generated?</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="funcsynopsis.style" doc:type="list" doc:list="ansi kr">kr</xsl:param></synopsis>
</refsynopsisdiv>
<refdescription>
<para>If <varname>funcsynopsis.style</varname> is <literal>ansi</literal>,
ANSI-style function synopses are generated for a
<sgmltag>funcsynopsis</sgmltag>, otherwise K&R-style
function synopses are generated.
</para>
</refdescription></refentry>
<refentry id="param.funcsynopsis.decoration">
<refnamediv>
<refname>funcsynopsis.decoration</refname>
<refpurpose>Decorate elements of a FuncSynopsis?</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="funcsynopsis.decoration" select="1" doc:type="boolean"/></synopsis>
</refsynopsisdiv>
<refdescription>
<para>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.
</para>
</refdescription></refentry>
<refentry id="param.function.parens">
<refnamediv>
<refname>function.parens</refname>
<refpurpose>Generate parens after a function?</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="function.parens" doc:type="boolean">0</xsl:param></synopsis>
</refsynopsisdiv>
<refdescription>
<para>If not 0, the formatting of
a <sgmltag class="starttag">function</sgmltag> element will include
generated parenthesis.
</para>
</refdescription></refentry>
<refentry id="param.refentry.generate.name">
<refnamediv>
<refname>refentry.generate.name</refname>
<refpurpose>Output NAME header before 'RefName'(s)?</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="refentry.generate.name" select="1" doc:type="boolean"/></synopsis>
</refsynopsisdiv>
<refdescription>
<para>If true (non-zero), a "NAME" section title is output before the list
of 'RefName's.
</para>
</refdescription></refentry>
<refentry id="param.admon.graphics">
<refnamediv>
<refname>admon.graphics</refname>
<refpurpose>Use graphics in admonitions?</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="admon.graphics" select="0" doc:type="boolean"/></synopsis>
</refsynopsisdiv>
<refdescription>
<para>If true (non-zero), admonitions are presented in an alternate style that uses
a graphic. Default graphics are provided in the distribution.
</para>
</refdescription></refentry>
<refentry id="param.admon.graphics.path">
<refnamediv>
<refname>admon.graphics.path</refname>
<refpurpose>Path to admonition graphics</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="admon.graphics.path" doc:type="string">images/</xsl:param></synopsis>
</refsynopsisdiv>
<refdescription>
<para>Sets the path, probably relative to the directory where the HTML
files are created, to the admonition graphics.
</para>
</refdescription></refentry>
<refentry id="param.admon.graphics.extension">
<refnamediv>
<refname>admon.graphics.extension</refname>
<refpurpose>Extension for admonition graphics</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="admon.graphics.extension" select="'.png'" doc:type="string"/></synopsis>
</refsynopsisdiv>
<refdescription>
<para>Sets the extension to use on admonition graphics.</para>
</refdescription></refentry>
<refentry id="param.admon.style">
<refnamediv>
<refname>admon.style</refname>
<refpurpose>CSS style attributes for admonitions</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="admon.style" doc:type="string">
<xsl:text>margin-left: 0.5in; margin-right: 0.5in;</xsl:text>
</xsl:param></synopsis>
</refsynopsisdiv>
<refdescription>
<para>Specifies the value of the <sgmltag class="attribute">STYLE</sgmltag>
attribute that should be added to admonitions.
</para>
</refdescription></refentry>
<refentry id="param.section.autolabel">
<refnamediv>
<refname>section.autolabel</refname>
<refpurpose>Are sections enumerated?</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="section.autolabel" select="0" doc:type="boolean"/></synopsis>
</refsynopsisdiv>
<refdescription>
<para>If true (non-zero), unlabeled sections will be enumerated.
</para>
</refdescription></refentry>
<refentry id="param.section.label.includes.component.label">
<refnamediv>
<refname>section.label.includes.component.label</refname>
<refpurpose>Do section labels include the component label?</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="section.label.includes.component.label" select="0" doc:type="boolean"/></synopsis>
</refsynopsisdiv>
<refdescription>
<para>If true (non-zero), section labels are prefixed with the label of the
component that contains them.
</para>
</refdescription></refentry>
<refentry id="param.chapter.autolabel">
<refnamediv>
<refname>chapter.autolabel</refname>
<refpurpose>Are chapters and appendixes enumerated?</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="chapter.autolabel" select="1" doc:type="boolean"/></synopsis>
</refsynopsisdiv>
<refdescription>
<para>If true (non-zero), unlabeled chapters and appendixes will be enumerated.
</para>
</refdescription></refentry>
<refentry id="param.preface.autolabel">
<refnamediv>
<refname>preface.autolabel</refname>
<refpurpose>Are prefaces enumerated?</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="preface.autolabel" select="0" doc:type="boolean"/></synopsis>
</refsynopsisdiv>
<refdescription>
<para>If true (non-zero), unlabeled prefaces will be enumerated.
</para>
</refdescription></refentry>
<refentry id="param.part.autolabel">
<refnamediv>
<refname>part.autolabel</refname>
<refpurpose>Are parts and references enumerated?</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="part.autolabel" select="1" doc:type="boolean"/></synopsis>
</refsynopsisdiv>
<refdescription>
<para>If true (non-zero), unlabeled parts and references will be enumerated.
</para>
</refdescription></refentry>
<refentry id="param.qandadiv.autolabel">
<refnamediv>
<refname>qandadiv.autolabel</refname>
<refpurpose>Are divisions in QAndASets enumerated?</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="qandadiv.autolabel" select="1" doc:type="boolean"/></synopsis>
</refsynopsisdiv>
<refdescription>
<para>If true (non-zero), unlabeled qandadivs will be enumerated.
</para>
</refdescription></refentry>
<refentry id="param.qanda.inherit.numeration">
<refnamediv>
<refname>qanda.inherit.numeration</refname>
<refpurpose>Does enumeration of QandASet components inherit the numeration of parent elements?</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="qanda.inherit.numeration" select="1" doc:type="boolean"/></synopsis>
</refsynopsisdiv>
<refdescription>
<para>If true (non-zero), numbered QandADiv elements and Questions and Answers inherit
the numeration of the ancestors of the QandASet.
</para>
</refdescription></refentry>
<refentry id="param.qanda.defaultlabel">
<refnamediv>
<refname>qanda.defaultlabel</refname>
<refpurpose>Sets the default for defaultlabel on QandASet.</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="qanda.defaultlabel" doc:type="boolean" doc:list="qanda number none">number</xsl:param></synopsis>
</refsynopsisdiv>
<refdescription>
<para>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.
</para>
</refdescription></refentry>
<refentry id="param.generate.qandaset.toc">
<refnamediv>
<refname>generate.qandaset.toc</refname>
<refpurpose>Is a Table of Contents created for QandASets?</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="generate.qandaset.toc" doc:type="boolean">1</xsl:param></synopsis>
</refsynopsisdiv>
<refdescription>
<para>If true (non-zero), a ToC is constructed for QandASets.
</para>
</refdescription></refentry>
<refentry id="param.generate.qandadiv.toc">
<refnamediv>
<refname>generate.qandadiv.toc</refname>
<refpurpose>Is a Table of Contents created for QandADivs?</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="generate.qandadiv.toc" doc:type="boolean">0</xsl:param></synopsis>
</refsynopsisdiv>
<refdescription>
<para>If true (non-zero), a ToC is constructed for QandADivs.
</para>
</refdescription></refentry>
<refentry id="param.biblioentry.item.separator">
<refnamediv>
<refname>biblioentry.item.separator</refname>
<refpurpose>Text to separate bibliography entries</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="biblioentry.item.separator" doc:type="string">. </xsl:param></synopsis>
</refsynopsisdiv>
<refdescription>
<para>Text to separate bibliography entries
</para>
</refdescription></refentry>
<refentry id="param.toc.section.depth">
<refnamediv>
<refname>toc.section.depth</refname>
<refpurpose>How deep should recursive <sgmltag>section</sgmltag>s appear
in the TOC?</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="toc.section.depth" doc:type="integer" doc:min="1" doc:max="10">2</xsl:param></synopsis>
</refsynopsisdiv>
<refdescription>
<para>Specifies the depth to which recursive sections should appear in the
TOC.
</para>
</refdescription></refentry>
<refentry id="param.using.chunker">
<refnamediv>
<refname>using.chunker</refname>
<refpurpose>Will the output be chunked?</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="using.chunker" select="0" doc:type="boolean"/></synopsis>
</refsynopsisdiv>
<refdescription>
<para>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.
</para>
</refdescription></refentry>
<refentry id="param.generate.component.toc">
<refnamediv>
<refname>generate.component.toc</refname>
<refpurpose>Should TOCs be genereated in components (Chapters, Appendixes, etc.)?</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="generate.component.toc" select="1" doc:type="boolean"/></synopsis>
</refsynopsisdiv>
<refdescription>
<para>If true (non-zero), they are.
</para>
</refdescription></refentry>
<refentry id="param.generate.division.toc">
<refnamediv>
<refname>generate.division.toc</refname>
<refpurpose>Should TOCs be genereated in divisions (Books, Parts, etc.)?</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="generate.division.toc" select="1" doc:type="boolean"/></synopsis>
</refsynopsisdiv>
<refdescription>
<para>If true (non-zero), they are.
</para>
</refdescription></refentry>
<refentry id="param.link.mailto.url">
<refnamediv>
<refname>link.mailto.url</refname>
<refpurpose>Mailto URL for the LINK REL=made HTML HEAD element</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="link.mailto.url" doc:type="string"/></synopsis>
</refsynopsisdiv>
<refdescription>
<para>If not the empty string, this address will be used for the
REL=made <sgmltag>LINK</sgmltag> element in the HTML <sgmltag>HEAD</sgmltag>.
</para>
</refdescription></refentry>
<refentry id="param.graphic.default.extension">
<refnamediv>
<refname>graphic.default.extension</refname>
<refpurpose>Default extension for graphic filenames</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="graphic.default.extension" doc:type="string"/></synopsis>
</refsynopsisdiv>
<refdescription>
<para>If a <sgmltag>graphic</sgmltag> or <sgmltag>mediaobject</sgmltag>
includes a reference to a filename that does not include an extension,
and the <sgmltag class="attribute">format</sgmltag> attribute is
<emphasis>unspecified</emphasis>, the default extension will be used.
</para>
</refdescription></refentry>
<refentry id="param.toc.list.type">
<refnamediv>
<refname>toc.list.type</refname>
<refpurpose>Type of HTML list element to use for Tables of Contents</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="toc.list.type" doc:type="list" doc:list="dl ul ol">dl</xsl:param></synopsis>
</refsynopsisdiv>
<refdescription>
<para>When an automatically generated Table of Contents (or List of Titles)
is produced, this HTML element will be used to make the list.
</para>
</refdescription></refentry>
<refentry id="param.use.id.function">
<refnamediv>
<refname>use.id.function</refname>
<refpurpose>Use the XPath id() function to find link targets?</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="use.id.function" doc:type="boolean" select="'1'"/></synopsis>
</refsynopsisdiv>
<refdescription>
<para>If 1, the stylesheets use the <function>id()</function> function
to find the targets of cross reference elements. This is more
efficient, but only works if your XSLT processor implements the
<function>id()</function> function, naturally.</para>
<para>THIS PARAMETER IS NOT SUPPORTED. IT IS ALWAYS ASSUMED TO BE 1.
SEE xref.xsl IF YOU NEED TO TURN IT OFF.</para>
</refdescription></refentry>
<refentry id="param.spacing.paras">
<refnamediv>
<refname>spacing.paras</refname>
<refpurpose>Insert additional <p> elements for spacing?</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="spacing.paras" doc:type="boolean" select="'0'"/></synopsis>
</refsynopsisdiv>
<refdescription>
<para>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.
</para>
</refdescription></refentry>
<refentry id="param.css.decoration">
<refnamediv>
<refname>css.decoration</refname>
<refpurpose>Enable CSS decoration of elements</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="css.decoration" doc:type="boolean">1</xsl:param></synopsis>
</refsynopsisdiv>
<refdescription>
<para>
If <literal>css.decoration</literal> 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".
</para>
</refdescription></refentry>
<refentry id="param.show.revisionflag">
<refnamediv>
<refname>show.revisionflag</refname>
<refpurpose>Enable decoration of elements that have a revisionflag</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="show.revisionflag" doc:type="boolean">0</xsl:param></synopsis>
</refsynopsisdiv>
<refdescription>
<para>
If <literal>show.revisionflag</literal> is turned on, then the stylesheets
may produce additional markup designed to allow a CSS stylesheet to
highlight elements that have specific revisionflag settings.</para>
<para>The markup inserted will be usually be either a <span> or <div>
with an appropriate <literal>class</literal> 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.</para>
<para>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 <filename>changebars.xsl</filename>.</para>
</refdescription></refentry>
<refentry id="param.suppress.navigation">
<refnamediv>
<refname>suppress.navigation</refname>
<refpurpose>Disable header and footer navigation</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="suppress.navigation" doc:type="boolean">0</xsl:param></synopsis>
</refsynopsisdiv>
<refdescription>
<para>
If <literal>suppress.navigation</literal> is turned on, header and
footer navigation will be suppressed.</para>
</refdescription></refentry>
<refentry id="param.rootid">
<refnamediv>
<refname>rootid</refname>
<refpurpose>Specify the root element to format</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="rootid" select="''" doc:type="string"/></synopsis>
</refsynopsisdiv>
<refdescription>
<para>If <parameter>rootid</parameter> 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.</para>
<para>Because the entire document is available to the processor, automatic
numbering, cross references, and other dependencies are correctly
resolved.</para>
</refdescription></refentry>
<refentry id="param.callout.list.table">
<refnamediv>
<refname>callout.list.table</refname>
<refpurpose>Present callout lists using a table?</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="callout.list.table" select="'1'" doc:type="boolean"/></synopsis>
</refsynopsisdiv>
<refdescription>
<para>The default presentation of <sgmltag>CalloutList</sgmltag>s uses
an HTML <sgmltag>DL</sgmltag>. Some browsers don't align DLs very well
if <parameter>callout.graphics</parameter> are used. With this option
turned on, <sgmltag>CalloutList</sgmltag>s are presented in an HTML
<sgmltag>TABLE</sgmltag>, which usually results in better alignment
of the callout number with the callout description.</para>
</refdescription></refentry>
<refentry id="param.callout.graphics">
<refnamediv>
<refname>callout.graphics</refname>
<refpurpose>Use graphics for callouts?</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="callout.graphics" select="'1'" doc:type="boolean"/></synopsis>
</refsynopsisdiv>
<refdescription>
<para>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.
</para>
</refdescription></refentry>
<refentry id="param.callout.graphics.extension">
<refnamediv>
<refname>callout.graphics.extension</refname>
<refpurpose>Extension for callout graphics</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="callout.graphics.extension" select="'.png'" doc:type="string"/></synopsis>
</refsynopsisdiv>
<refdescription>
<para>Sets the extension to use on callout graphics.</para>
</refdescription></refentry>
<refentry id="param.callout.graphics.path">
<refnamediv>
<refname>callout.graphics.path</refname>
<refpurpose>Path to callout graphics</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="callout.graphics.path" select="'images/callouts/'" doc:type="string"/></synopsis>
</refsynopsisdiv>
<refdescription>
<para>Sets the path, probably relative to the directory where the HTML
files are created, to the callout graphics.
</para>
</refdescription></refentry>
<refentry id="param.callout.graphics.number.limit">
<refnamediv>
<refname>callout.graphics.number.limit</refname>
<refpurpose>Number of the largest callout graphic</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="callout.graphics.number.limit" select="'10'" doc:type="integer"/></synopsis>
</refsynopsisdiv>
<refdescription>
<para>If <parameter>callout.graphics</parameter>
is non-zero, graphics are used to represent
callout numbers. The value of
<parameter>callout.graphics.number.limit</parameter>
is
the largest number for which a graphic exists. If the callout number
exceeds this limit, the default presentation "(nnn)" will always
be used.
</para>
</refdescription></refentry>
<refentry id="param.use.extensions">
<refnamediv>
<refname>use.extensions</refname>
<refpurpose>Enable extensions</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="use.extensions" select="'0'" doc:type="boolean"/></synopsis>
</refsynopsisdiv>
<refdescription>
<para>If non-zero, extensions may be used. Each extension is
further controlled by its own parameter. But if
<parameter>use.extensions</parameter> is zero, no extensions will
be used.
</para>
</refdescription></refentry>
<refentry id="param.textinsert.extension">
<refnamediv>
<refname>textinsert.extension</refname>
<refpurpose>Enable the textinsert extension element</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="textinsert.extension" select="'1'" doc:type="boolean"/></synopsis>
</refsynopsisdiv>
<refdescription>
<para>The textinsert extension element inserts the contents of a
a file into the result tree (as text).
</para>
</refdescription></refentry>
<refentry id="param.saxon.linenumbering">
<refnamediv>
<refname>saxon.linenumbering</refname>
<refpurpose>Enable the line numbering extension</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="saxon.linenumbering" select="'1'" doc:type="boolean"/></synopsis>
</refsynopsisdiv>
<refdescription>
<para>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.
</para>
</refdescription></refentry>
<refentry id="param.linenumbering.extension">
<refnamediv>
<refname>linenumbering.extension</refname>
<refpurpose>Enable the line numbering extension</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="linenumbering.extension" select="'1'" doc:type="boolean"/></synopsis>
</refsynopsisdiv>
<refdescription>
<para>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.
</para>
</refdescription></refentry>
<refentry id="param.linenumbering.everyNth">
<refnamediv>
<refname>linenumbering.everyNth</refname>
<refpurpose>Indicate which lines should be numbered</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="linenumbering.everyNth" select="'5'" doc:type="integer"/></synopsis>
</refsynopsisdiv>
<refdescription>
<para>If line numbering is enabled, everyNth line will be numbered.
</para>
</refdescription></refentry>
<refentry id="param.linenumbering.width">
<refnamediv>
<refname>linenumbering.width</refname>
<refpurpose>Indicates the width of line numbers</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="linenumbering.width" select="'3'" doc:type="integer"/></synopsis>
</refsynopsisdiv>
<refdescription>
<para>If line numbering is enabled, line numbers will appear right
justified in a field "width" characters wide.
</para>
</refdescription></refentry>
<refentry id="param.linenumbering.separator">
<refnamediv>
<refname>linenumbering.separator</refname>
<refpurpose>Specify a separator between line numbers and lines</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="linenumbering.separator" select="' '" doc:type="string"/></synopsis>
</refsynopsisdiv>
<refdescription>
<para>The separator is inserted between line numbers and lines in
the verbatim environment.
</para>
</refdescription></refentry>
<refentry id="param.saxon.callouts">
<refnamediv>
<refname>saxon.callouts</refname>
<refpurpose>Enable the callout extension</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="saxon.callouts" select="'1'" doc:type="boolean"/></synopsis>
</refsynopsisdiv>
<refdescription>
<para>The callouts extension processes <sgmltag>areaset</sgmltag>
elements in <sgmltag>ProgramListingCO</sgmltag> and other text-based
callout elements.
</para>
</refdescription></refentry>
<refentry id="param.callouts.extension">
<refnamediv>
<refname>callouts.extension</refname>
<refpurpose>Enable the callout extension</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="callouts.extension" select="'1'" doc:type="boolean"/></synopsis>
</refsynopsisdiv>
<refdescription>
<para>The callouts extension processes <sgmltag>areaset</sgmltag>
elements in <sgmltag>ProgramListingCO</sgmltag> and other text-based
callout elements.
</para>
</refdescription></refentry>
<refentry id="param.callout.defaultcolumn">
<refnamediv>
<refname>callout.defaultcolumn</refname>
<refpurpose>Indicates what column callouts appear in by default</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="callout.defaultcolumn" select="'60'" doc:type="integer"/></synopsis>
</refsynopsisdiv>
<refdescription>
<para>If a callout does not identify a column (for example, if it uses
the <literal>linerange</literal> <sgmltag class="attribute">unit</sgmltag>),
it will appear in the default column.
</para>
</refdescription></refentry>
<refentry id="param.stylesheet.result.type">
<refnamediv>
<refname>stylesheet.result.type</refname>
<refpurpose>Identifies the output format of this stylesheet</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="stylesheet.result.type" select="'html'" doc:type="list" doc:list="html fo"/></synopsis>
</refsynopsisdiv>
<refdescription>
<para>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'.</para>
</refdescription></refentry>
<refentry id="param.nominal.table.width">
<refnamediv>
<refname>nominal.table.width</refname>
<refpurpose>The (absolute) nominal width of tables</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="nominal.table.width" select="'6in'" doc:type="length"/></synopsis>
</refsynopsisdiv>
<refdescription>
<para>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).</para>
</refdescription></refentry>
<refentry id="param.default.table.width">
<refnamediv>
<refname>default.table.width</refname>
<refpurpose>The default width of tables</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="default.table.width" select="''" doc:type="length"/></synopsis>
</refsynopsisdiv>
<refdescription>
<para>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).</para>
</refdescription></refentry>
<refentry id="param.saxon.tablecolumns">
<refnamediv>
<refname>saxon.tablecolumns</refname>
<refpurpose>Enable the table columns extension function</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="saxon.tablecolumns" select="'1'" doc:type="boolean"/></synopsis>
</refsynopsisdiv>
<refdescription>
<para>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.
</para>
</refdescription></refentry>
<refentry id="param.tablecolumns.extension">
<refnamediv>
<refname>tablecolumns.extension</refname>
<refpurpose>Enable the table columns extension function</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="tablecolumns.extension" select="'1'" doc:type="boolean"/></synopsis>
</refsynopsisdiv>
<refdescription>
<para>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.
</para>
</refdescription></refentry>
<refentry id="param.generate.set.toc">
<refnamediv>
<refname>generate.set.toc</refname>
<refpurpose>FIXME:</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="generate.set.toc" select="1" doc:type="boolean"/></synopsis>
</refsynopsisdiv>
<refdescription>
<para>FIXME:
</para>
</refdescription></refentry>
<refentry id="param.generate.book.toc">
<refnamediv>
<refname>generate.book.toc</refname>
<refpurpose>FIXME:</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="generate.book.toc" select="1" doc:type="boolean"/></synopsis>
</refsynopsisdiv>
<refdescription>
<para>FIXME:
</para>
</refdescription></refentry>
<refentry id="param.generate.part.toc">
<refnamediv>
<refname>generate.part.toc</refname>
<refpurpose>FIXME:</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="generate.part.toc" select="1" doc:type="boolean"/></synopsis>
</refsynopsisdiv>
<refdescription>
<para>FIXME:
</para>
</refdescription></refentry>
<refentry id="param.generate.reference.toc">
<refnamediv>
<refname>generate.reference.toc</refname>
<refpurpose>FIXME:</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="generate.reference.toc" select="1" doc:type="boolean"/></synopsis>
</refsynopsisdiv>
<refdescription>
<para>FIXME:
</para>
</refdescription></refentry>
<refentry id="param.generate.preface.toc">
<refnamediv>
<refname>generate.preface.toc</refname>
<refpurpose>FIXME:</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="generate.preface.toc" select="1" doc:type="boolean"/></synopsis>
</refsynopsisdiv>
<refdescription>
<para>FIXME:
</para>
</refdescription></refentry>
<refentry id="param.generate.chapter.toc">
<refnamediv>
<refname>generate.chapter.toc</refname>
<refpurpose>FIXME:</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="generate.chapter.toc" select="1" doc:type="boolean"/></synopsis>
</refsynopsisdiv>
<refdescription>
<para>FIXME:
</para>
</refdescription></refentry>
<refentry id="param.generate.appendix.toc">
<refnamediv>
<refname>generate.appendix.toc</refname>
<refpurpose>FIXME:</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="generate.appendix.toc" select="1" doc:type="boolean"/></synopsis>
</refsynopsisdiv>
<refdescription>
<para>FIXME:
</para>
</refdescription></refentry>
<refentry id="param.generate.article.toc">
<refnamediv>
<refname>generate.article.toc</refname>
<refpurpose>FIXME:</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="generate.article.toc" select="1" doc:type="boolean"/></synopsis>
</refsynopsisdiv>
<refdescription>
<para>FIXME:
</para>
</refdescription></refentry>
<refentry id="param.generate.section.toc">
<refnamediv>
<refname>generate.section.toc</refname>
<refpurpose>Generate TOCs inside Sections?</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="generate.section.toc" select="1" doc:type="boolean"/></synopsis>
</refsynopsisdiv>
<refdescription>
<para>If non-zero, a Table of Contents will be generated inside section
elements. Note that
<parameter>generate.section.toc.level</parameter>
may suppress some section TOCs.
</para>
</refdescription></refentry>
<refentry id="param.generate.section.toc.level">
<refnamediv>
<refname>generate.section.toc.level</refname>
<refpurpose>Control depth of TOC generation in sections</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="generate.section.toc.level" select="0" doc:type="integer"/></synopsis>
</refsynopsisdiv>
<refdescription>
<para>The <parameter>generate.section.toc.level</parameter> parameter
controls the depth of section in which TOCs will be generated. Note
that this is related to, but not the same as
<parameter>toc.section.depth</parameter>, which controls the depth to
which TOC entries will be generated in a given TOC.</para>
<para>If, for example, <parameter>generate.section.toc.level</parameter>
is <literal>3</literal>, TOCs will be generated in first, second, and third
level sections, but not in fourth level sections.
</para>
</refdescription></refentry>
<refentry id="param.process.source.toc">
<refnamediv>
<refname>process.source.toc</refname>
<refpurpose>FIXME:</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="process.source.toc" select="0" doc:type="boolean"/></synopsis>
</refsynopsisdiv>
<refdescription>
<para>FIXME:
</para>
</refdescription></refentry>
<refentry id="param.process.empty.source.toc">
<refnamediv>
<refname>process.empty.source.toc</refname>
<refpurpose>FIXME:</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="process.empty.source.toc" select="0" doc:type="boolean"/></synopsis>
</refsynopsisdiv>
<refdescription>
<para>FIXME:
</para>
</refdescription></refentry>
<refentry id="param.bridgehead.in.toc">
<refnamediv>
<refname>bridgehead.in.toc</refname>
<refpurpose>Should bridgehead elements appear in the TOC?</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="bridgehead.in.toc" select="0" doc:type="boolean"/></synopsis>
</refsynopsisdiv>
<refdescription>
<para>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.
</para>
</refdescription></refentry>
<refentry id="param.generate.index">
<refnamediv>
<refname>generate.index</refname>
<refpurpose>FIXME:</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="generate.index" select="1" doc:type="boolean"/></synopsis>
</refsynopsisdiv>
<refdescription>
<para>FIXME:
</para>
</refdescription></refentry>
<refentry id="param.callout.unicode">
<refnamediv>
<refname>callout.unicode</refname>
<refpurpose>FIXME:</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="callout.unicode" select="0" doc:type="boolean"/></synopsis>
</refsynopsisdiv>
<refdescription>
<para>FIXME:
</para>
</refdescription></refentry>
<refentry id="param.callout.unicode.start.character">
<refnamediv>
<refname>callout.unicode.start.character</refname>
<refpurpose>First Unicode character to use, decimal value.</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="callout.unicode.start.character" select="10102" doc:type="integer"/></synopsis>
</refsynopsisdiv>
<refdescription>
<para>If <parameter>callout.graphics</parameter>
is non-zero, graphics are used to represent
callout numbers. The value of
<parameter>callout.graphics.number.limit</parameter>
is
the largest number for which a graphic exists. If the callout number
exceeds this limit, the default presentation "(nnn)" will always
be used.
</para>
</refdescription></refentry>
<refentry id="param.callout.unicode.number.limit">
<refnamediv>
<refname>callout.unicode.number.limit</refname>
<refpurpose>Number of the largest callout graphic</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="callout.unicode.number.limit" select="'10'" doc:type="integer"/></synopsis>
</refsynopsisdiv>
<refdescription>
<para>If <parameter>callout.graphics</parameter>
is non-zero, graphics are used to represent
callout numbers. The value of
<parameter>callout.graphics.number.limit</parameter>
is
the largest number for which a graphic exists. If the callout number
exceeds this limit, the default presentation "(nnn)" will always
be used.
</para>
</refdescription></refentry>
<refentry id="param.callout.unicode.font">
<refnamediv>
<refname>callout.unicode.font</refname>
<refpurpose>Font to use for Unicode dingbats</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="callout.unicode.font" select="'ZapfDingbats'"/></synopsis>
</refsynopsisdiv>
<refdescription>
<para>The name of the font to specify around Unicode callout glyphs.
If set to the empty string, no font change will occur.
</para>
</refdescription></refentry>
<refentry id="param.use.id.as.filename">
<refnamediv>
<refname>use.id.as.filename</refname>
<refpurpose>Use ID value of chunk elements as the filename?</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="use.id.as.filename" select="'0'" doc:type="boolean"/></synopsis>
</refsynopsisdiv>
<refdescription>
<para>If <parameter>use.id.as.filename</parameter>
is non-zero, the filename of chunk elements that have IDs will be
derived from the ID value.
</para>
</refdescription></refentry>
<refentry id="param.inherit.keywords">
<refnamediv>
<refname>inherit.keywords</refname>
<refpurpose>Inherit keywords from ancestor elements?</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="inherit.keywords" select="'1'" doc:type="boolean"/></synopsis>
</refsynopsisdiv>
<refdescription>
<para>If <parameter>inherit.keywords</parameter>
is non-zero, the keyword <sgmltag>META</sgmltag> for each HTML
<sgmltag>HEAD</sgmltag> element will include all of the keywords from
ancestral elements. Otherwise, only the keywords from the current section
will be used.
</para>
</refdescription></refentry>
<refentry id="param.label.from.part">
<refnamediv>
<refname>label.from.part</refname>
<refpurpose>Renumber chapters in each part?</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="label.from.part" select="'0'" doc:type="boolean"/></synopsis>
</refsynopsisdiv>
<refdescription>
<para>If <parameter>label.from.part</parameter> is non-zero, components
(<sgmltag>chapter</sgmltag>s, <sgmltag>appendixe</sgmltag>s, etc.)
will be numbered from 1 in each <sgmltag>part</sgmltag>. Otherwise,
they will be numbered monotonically throughout each
<sgmltag>book</sgmltag>.
</para>
</refdescription></refentry>
<refentry id="param.citerefentry.link">
<refnamediv>
<refname>citerefentry.link</refname>
<refpurpose>Generate URL links when cross-referencing RefEntrys?</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="citerefentry.link" select="'0'" doc:type="boolean"/></synopsis>
</refsynopsisdiv>
<refdescription>
<para>If true, a web link will be generated, presumably
to an online man->HTML gateway. The text of the link is
generated by the generate.citerefentry.link template.
</para>
</refdescription></refentry>
<refentry id="param.formal.procedures">
<refnamediv>
<refname>formal.procedures</refname>
<refpurpose>Selects formal or informal procedures</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="formal.procedures" select="1" doc:type="boolean"/></synopsis>
</refsynopsisdiv>
<refdescription>
<para>Formal procedures are numbered and always hav a title.
</para>
</refdescription></refentry>
<refentry id="param.bibliography.collection">
<refnamediv>
<refname>bibliography.collection</refname>
<refpurpose>Name of the bibliography collection file</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="bibliography.collection" doc:type="string" select="'http://docbook.sourceforge.net/release/bibliography/bibliography.xml'"/></synopsis>
</refsynopsisdiv>
<refdescription>
<para>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.
</para>
</refdescription></refentry>
<refentry id="param.annotate.toc">
<refnamediv>
<refname>annotate.toc</refname>
<refpurpose>Annotate the Table of Contents?</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="annotate.toc" select="1" doc:type="boolean"/></synopsis>
</refsynopsisdiv>
<refdescription>
<para>If true, TOCs will be annotated. At present, this just means
that the <sgmltag>RefPurpose</sgmltag> of <sgmltag>RefEntry</sgmltag>
TOC entries will be displayed.
</para>
</refdescription></refentry>
<refentry id="param.emphasis.propagates.style">
<refnamediv>
<refname>emphasis.propagates.style</refname>
<refpurpose>Pass emphasis role attribute through to HTML?</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="emphasis.propagates.style" select="1" doc:type="boolean"/></synopsis>
</refsynopsisdiv>
<refdescription>
<para>If true, the role attribute of <sgmltag>emphasis</sgmltag> elements
will be passed through to the HTML as a class attribute on a
<sgmltag>span</sgmltag> that surrounds the emphasis.</para>
</refdescription></refentry>
<refentry id="param.phrase.propagates.style">
<refnamediv>
<refname>phrase.propagates.style</refname>
<refpurpose>Pass phrase role attribute through to HTML?</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="phrase.propagates.style" select="1" doc:type="boolean"/></synopsis>
</refsynopsisdiv>
<refdescription>
<para>If true, the role attribute of <sgmltag>phrase</sgmltag> elements
will be passed through to the HTML as a class attribute on a
<sgmltag>span</sgmltag> that surrounds the phrase.</para>
</refdescription></refentry>
<refentry id="param.runinhead.title.end.punct">
<refnamediv>
<refname>runinhead.title.end.punct</refname>
<refpurpose>Characters that count as punctuation on a run-in-head</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="runinhead.title.end.punct" select="'.!?:'" doc:type="string"/></synopsis>
</refsynopsisdiv>
<refdescription>
<para>FIXME:
</para>
</refdescription></refentry>
<refentry id="param.runinhead.default.title.end.punct">
<refnamediv>
<refname>runinhead.default.title.end.punct</refname>
<refpurpose>Default punctuation character on a run-in-head</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
<xsl:param name="runinhead.default.title.end.punct" select="'.'" doc:type="string"/></synopsis>
</refsynopsisdiv>
<refdescription>
<para>FIXME:
</para>
</refdescription></refentry>
</reference>
|