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
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
|
####################
XSL-FO Documentation
####################
^^^^^^^^^^^^^^
Attribute Sets
^^^^^^^^^^^^^^
.. contents:: Table of Contents
Root Attribute Sets
===================
Attribute sets root elements. Use these attribute sets to format
the defaults in a document, such as font, font-size, or
line-height.
page-sequence
------------------
:fo: fo:page-sequence
:defaults:
format: 1
initial-page-number: 1
Formats the properties for the complete run of pages, in this
case, the body. You could use this attribute set to set the font for the
entire document, for example.
paper-size
-----------
:fo: None
:defaults:
page-width: 8.5in
page-height: 11in
Sets up the the paper size.
page-margins
-----------------------------
:fo: None
:defaults:
margin-left: 1.0in
margin-right: 1.0in
margin-top: 1.0in
margin-bottom: 1.0in
Sets up the the margins.
region-body
-----------------------------
:fo: region-body
:defaults:
margin-top: .75in
margin-bottom: .75in
(DON'T THIS IS CORRECT--VARIABLES NO HANDLE THIS?)
Sets the defaults for the margins for the body region (as opposed to the
page). These defaults are only used if headers or footers are found.
region-before
-----------------------------
:fo: region-before
:defaults:
extent: .75in
Sets the extent for the region-before. This attribute set will only be used if
a header is found.
region-after
-----------------------------
:fo: region-after
:defaults:
extent: .75in
Sets the extent for the region-after. This attribute set will only be used if
a footer is found.
body-flow
---------
:fo: fo:flow
:defaults:
Formats the properties of the body in the body sequence of pages,
which means everything except headers and footers.
footnote-separator-flow
-----------------------
:fo: fo:flow
:defaults:
Formats the flow of the footnote.
footnote-separator-block
------------------------
:fo: fo:block
:defaults:
Formats the block (with the leader) that separates the footnotes
from the rest of the page.
Header and Footer Attribute Sets
================================
paragraph-header-block
----------------------
:fo: fo:block
:defaults:
font-size: 12pt
text-align: center
Formats the properties for the paragraphs in the header. Use to
set the space between the footer and the body text, using
``'space-before = x'`` and setting
``'space-before.conditionality'`` to ``'retain'``.
paragraph-footer-block
----------------------
:fo: fo:block
:defaults:
font-size: 12pt
text-align: center
Formats the properties for the footer. Use to set the space
between the footer and the body text, using ``'space-before =
x'`` and setting ``'space-before.conditionality'`` to
``'retain'``.
Bibliograhic Fields Attribute Sets
==================================
Attribute sets for the bibliograhic fields. These attributes
control the formatting of bibliographic fields.
bibliographic-fields-list-block
-------------------------------
:fo: list-block
:defaults:
start-indent: 0mm
provisional-distance-between-starts: 30mm
space-before: 12pt
space-after: 12pt
Formats the bibliographic fields as a list. Since this element
contains all the other list elements, it can be used to set
values such as the font, background color, line-height, etc, for
the entire list, as well as the space after and before.
bibliographic-fields-list-item
------------------------------
:fo: fo:list-item
:defaults:
space-before: 12pt
For each item (author, authors, organization, contact, address,
version, date, copyright, custom field) in the bibliograhic
fields. Use the 'space-after' attribute to control the spacing
between each item.
bibliographic-fields-first-list-item
------------------------------------
:fo: fo:list-item
:inherits: bibliographic-fields-list-item
:defaults:
space-before: 0pt
Same as above, but sets the space before to 0pt.
bibliographic-fields-list-item-label
------------------------------------
:fo: fo:list-item-label
:defaults:
end-indent: label-end()
The default attribute end-indent = "label-end()" ensures that the
label aligns properly.
bibliographic-fields-item-body
------------------------------
:fo: fo:list-item-body
:defaults:
start-indent: body-start()
The default of start-indent = "body-start()" ensures the correct
alignment of the labels.
bibliographic-fields-item-label-block
-------------------------------------
:fo: fo:block
:defaults:
font-weight: bold
Formats the block that wraps the the name of the field (such as
Author, Version, etc).
bibliographic-fields-block
--------------------------
:fo: fo:block
:defaults:
Formats the blocks (docutilis paragraphs) of the value of the
field. Use the 'space-after' attribute to control the spacing
between a multi-paragraph description.
bibliographic-first-fields-block
--------------------------------
:fo: fo:block
:inherits: bibliographic-fields-block
:defaults:
Same as above, but for the first such paragraph.
address-value-block
-------------------
:fo: fo:block
:inherits: bibliographic-fields-block
:defaults:
white-space: pre
Formats the blocks (docutilis paragraphs) of the address field,
which has to preserve the white space, according to the docutils
specs. Since this inherits from the bibliographic-fields-bloc, it
doesn't make sense to change attributes here directly.
Footnote
========
Attribute sets for footnotes, endnotes, and the endnotes title.
footnote
--------
:fo: fo:footnote
:defaults:
font-weight: normal
font-style: normal
Formats the footnote. By default, it sets properties to neutral,
so that it does not inherit any unwanted properties, such as from
a definition term.
default-footnote-label-inline
-----------------------------
:fo: fo:inline
:defaults:
baseline-shift: super
font-size: 8pt
Sets of the defaults for the label (1, \*, etc), of each label.
footnote-list-block
-------------------
:fo: fo:list-block
:defaults:
provisional-label-separation: 0pt
provisional-distance-between-starts: 18pt
Formats the list that contains the footnote. The
'provisional-distance-between-starts' controls how far away the
footnote label is from the text.
footnote-item-label
-------------------
:fo: fo:list-item-label
:defaults:
end-indent: label-end()
Formats the item-label when the footnote or endnote is formatted
as a list.
footnote-label-block
--------------------
:fo: fo:block
:defaults:
Formats the block in item-label when the footnote or endnote is
formatted as a list. By default, the label has no superscript (as
opposed to when formatting a "traditional" footnote.
footnote-item-body
------------------
:fo: fo:list-item-body
:defaults:
start-indent: body-start()
Formats the item-body when the footnote or endnote is formatted
as a list.
footnote-body
-------------
:fo: fo:footnote-body
:defaults:
Formats the body of the footnote. Space-after and space-before
seem to have no affect, at least with fop.
footnote-paragraph-block
------------------------
:fo: fo:block
:defaults:
space-before: 5pt
Formats the paragraphs in the body of a footnote or endnote. Use
the 'space-before' to set the space between each paragraphs, for
footnotes or endnotes with multiple paragraphs.
Endnote
========
For attributes when the endnotes.xsl stylesheet is imported.
endnote-block
-------------
:fo: fo:block
:defaults:
space-before: 5pt
The block that wraps each individual endnote ('footnote' in
docutils). Use to control the spacing between each endnote.
endnote-first-block
-------------------
:fo: fo:block
:inherits: endnote-block
:defaults:
space-before: 0pt
The block that wraps each the first endnote ('footnote' in
docutils). It does not make sense to change attributes on this
set directly.
endnotes-title-block
--------------------
:fo: fo:block
:defaults:
space-after: 18pt
font-weight: bold
font-size: 18pt
text-align: center
Formats the title for the endnotes, when one is present. The rst will have a
rubric with the classes as "endnotes. The XML will look like <rubric
@classes="endotes">
Dedication Sets
================
dedication-title-block
----------------------
:fo: fo:block
:defaults:
text-align: center
font-weight: bold
space-after: 12pt
Formats the title for the dedication.
dedication-paragraph-block
--------------------------
:fo: fo:block
:defaults:
font-style: italic
space-after: 12pt
Formats the paragraphs of the dedication.
dedication-first-paragraph-block
--------------------------------
:fo: fo:block
:inherits: dedication-paragraph-block
:defaults:
space-before: 0pt
Formats the first paragraph of the dedication.
Abstract Sets
================
abstract-title-block
--------------------
:fo: fo:block
:defaults:
text-align: center
font-weight: bold
Formats the abstract title.
abstract-paragraph-block
------------------------
:fo: fo:block
:defaults:
space-before: 12pt
Formats the paragraphs of the abstract.
abstract-first-paragraph-block
------------------------------
:fo: fo:block
:inherits: abstract-paragraph-block
:defaults:
space-before: 0pt
Formats the first paragraph of the abstract.
TOC
====
Attribute sets for the TOC.
toc-title-block
---------------
:fo: fo:block
:defaults:
text-align: center
font-weight: bold
font-size: 14pt
Formats the block for the title for the TOC.
toc-entry-defaults-block
------------------------
:fo: None
:defaults:
space-after: 3pt
text-align-last: justify
Sets up the defaults for the TOC entries.
toc-level1-block
----------------
:fo: fo:block
:inherits: toc-entry-defaults-block
:defaults:
Formats the block for the level 1 table of contents entry. If a
number exists, it is formatted according to the parameter
'number-section1'.
toc-level2-block
----------------
:fo: fo:block
:inherits: toc-entry-defaults-block
:defaults:
start-indent: 10mm
Formats the block for the level 2 table of contents entry. If a
number exists, it is formatted according to the parameter
'number-section2'.
toc-level3-block
----------------
:fo: fo:block
:inherits: toc-entry-defaults-block
:defaults:
start-indent: 20mm
Formats the block for the level 3 table of contents entry. If a
number exists, it is formatted according to the parameter
'number-section3'.
toc-level4-block
----------------
:fo: fo:block
:inherits: toc-entry-defaults-block
:defaults:
start-indent: 30mm
Formats the block for the level 4 table of contents entry. If a
number exists, it is formatted according to the parameter
'number-section4'.
toc-level5-block
----------------
:fo:
:inherits: toc-entry-defaults-block
:defaults:
start-indent: 40mm
Formats the block for the level 5 table of contents entry. If a
number exists, it is formatted according to the parameter
'number-section5'.
Section Attribute Sets
======================
Attribute sets for the section titles.
default-section-title-block
---------------------------
:fo: None
:defaults:
space-before: 12pt
space-after: 12pt
keep-with-next: always
Sets up the defaults for the section titles. The title should
always have some text beneath it to avoid widows and orphans;
hence the keep-with-always property.
title-level-block
-----------------
:fo: fo:block
:inherits: default-section-title-block
The following attribute sets are identical in nature:
- title-level1-block
- title-level2-block
- title-level3-block
- title-level4-block
- title-level5-block
- title-level6-block
- title-level7-block
- title-level8-block
- title-level9-block
These attribute-sets format the titles of all sections.
title-number-inline
-------------------
:fo: fo:inline
:defaults:
space-end: 12pt
Formats the title number generated by docutils.
Body Elements
=============
Attribute sets for body elements, including the document title
and subtitle; the default paragraph; the transition element; and
the literal block.
paragraph-block
---------------
:fo: fo:block
:defaults:
space-after: 12pt
Formats the default paragraph.
first-paragraph-block
---------------------
:fo: fo:block
:inherits: paragraph-block
:defaults:
Formats the first default paragraph.
literal-block
-------------
:fo: fo:block
:defaults:
font-family: monospace
font-size: 8
white-space: pre
space-after: 12pt
space-before: 12pt
Formats the literal text.
transition-block
----------------
:fo: fo:block
:defaults:
space-before: 12pt
space-after: 12pt
text-align: center
Formats the transition block. The actutal text for this block is
set by the 'transition-text' parameter.
document-title-block
--------------------
:fo: fo:block
:defaults:
space-after: 12pt
font-size: 24pt
text-align: center
font-weight: bold
Formats the title for the document.
document-title-page-block
-------------------------
:fo: fo:block
:defaults:
The block that wraps both the title and subtitle. This block only
gets written if the title and subtitle occur in the front
section, or TOC section.
document-subtitle-block
-----------------------
:fo: fo:block
:defaults:
space-before: 12pt
space-after: 12pt
font-size: 18pt
text-align: center
font-weight: bold
Formats the subtitle of the document.
block-quote-paragraph-block
---------------------------
:fo: fo:block
:defaults:
space-before: 12pt
start-indent: 20mm
end-indent: 20mm
space-after: 12pt
The attribute set that formats the paragraphs in the block quote.
A different set of attributes controls the first paragraph (see
below). Use this attribute set to set the space between
paragraphs with the 'space-before' attribute.
block-quote-first-paragraph-block
---------------------------------
:fo: fo:block
:inherits: block-quote-paragraph-block
The attribute set that formats the first paragraph in the block quote. It
inherits all the attributes from 'block-quote-first-paragraph-block'.
block-quote-attribution-block
-----------------------------
:fo: fo:block
:inherits: block-quote-paragraph-block
:defaults:
text-align: right
This attribute set the attribution in a block quote.
bullet list
===========
Attribute sets for the bullet list.
bullet-list-block
-----------------
:fo: list-block
:defaults:
start-indent: 5mm
provisional-distance-between-starts: 5mm
space-before: 12pt
space-after: 12pt
For the bullet list. Since this element contains all the other
list elements, it can be used to set values such as the font,
background color, line-height, etc, for the entire list, as well
as the space after and before.
bullet-list-item
----------------
:fo: fo:list-item
:defaults:
space-before: 12pt
For the item in the bullet list. The attributes can control the
spacing between each item. A different set of attributes controls
the spacing of the first item (see below).
bullet-first-list-item
----------------------
:fo: fo:list-item
:inherits: bullet-list-item
:defaults:
space-before: 0pt
For the first item in the bullet list. This attribute set
inherits all the properties form 'bullet-list-item', and then
re-defines the space-before to 0pt. In order to get space between
the first item and the text before it, use the space-after
attribute in the bullet-list attribute set.
bullet-level2-list-item
-----------------------
:fo: fo:list-item
:defaults:
space-before: 12pt
Same as above, except for a nested bullet list.
bullet-level2-first-list-item
-----------------------------
:fo: fo:list-item
:inherits: bullet-level2-list-item
:defaults:
space-before: 0pt
For the first item in a nested bullet list. This attribute set
inherits all the properties form 'bullet-list-item', and then
re-defines the space-before to 0pt. In order to get space between
the first item and the text before it, use the space-after
attribute in the bullet-list attribute set.
bullet-list-item-label
----------------------
:fo: fo:list-item-label
:defaults:
end-indent: label-end()
The default attribute end-indent = "label-end()" ensures that the
label aligns properly.
bullet-list-item-label-block
----------------------------
:fo: fo:block
:defaults:
These attributes format the block that wraps the bullet. (FO
requires such a block, even for a small label like this.)
bullet-list-item-body
---------------------
:fo: fo:list-item-body
:defaults:
start-indent: body-start()
The default of start-indent = "body-start()" ensures the correct
alignment of the labels.
bullet-list-item-body-block
---------------------------
:fo: fo:block
:defaults:
space-after: 12pt
Formats the blocks (docutilis paragraphs) of the body of each
item.
bullet-level2-list-block
------------------------
:fo: list-block
:defaults:
start-indent: 15mm
provisional-distance-between-starts: 5mm
space-before: 12pt
Same as for the bullet-list-block attribute. The default sets the
start-indent property to a greater value to indent this nested
list.
enumerated list
===============
Attribute sets for the enumerated list.
enumerated-list-block
---------------------
:fo: list-block
:defaults:
start-indent: 5mm
provisional-distance-between-starts: 10mm
space-before: 12pt
space-after: 12pt
For the enumerated list. Since this element contains all the
other list elements, it can be used to set values such as the
font, background color, line-height, etc, for the entire list, as
well as the space after and before.
enumerated-level2-list-block
----------------------------
:fo: list-block
:defaults:
start-indent: 15mm
provisional-distance-between-starts: 10mm
space-before: 12pt
space-before: 12pt
Same as for the enumerated-list-block attribute. The default sets
the start-indent property to a greater value to indent this
nested list.
enumerated-list-item
--------------------
:fo: fo:list-item
:defaults:
space-before: 12pt
For the item in the enumerated list. The attributes can control
the spacing between each item. A different set of attributes
controls the spacing of the first item (see below).
enumerated-first-list-item
--------------------------
:fo: fo:list-item
:inherits: enumerated-list-item
:defaults:
space-before: 0pt
For the first item in the enumerated list. This attribute set
inherits all the properties form 'enumerated-list-item', and then
re-defines the space-before to 0pt. In order to get space
between the first item and the text before it, use the
space-after attribute in the enumerated-list attribute set.
enumerated-level2-list-item
---------------------------
:fo: fo:list-item
:defaults:
space-before: 12pt
Same as above, but formats item of nested list.
enumerated-level2-first-list-item
---------------------------------
:fo: fo:list-item
:inherits: enumerated-level2-list-item
:defaults:
space-before: 0pt
For the first item in the nested enumerated list.
enumerated-list-item-label
--------------------------
:fo: fo:list-item-label
:defaults:
end-indent: label-end()
The default attribute end-indent = "label-end()" ensures that the
label aligns properly.
enumerated-list-item-body
-------------------------
:fo: fo:list-item-body
:defaults:
start-indent: body-start()
The default of start-indent = "body-start()" ensures the correct
alignment of the labels.
enumerated-list-item-body-block
-------------------------------
:fo: fo:block
:defaults:
space-after: 12pt
Formats the blocks (docutilis paragraphs) of the body of each
item.
Line Block
==========
Attribute sets for the line block.
outer-line-block
----------------
:fo: fo:block
:defaults:
space-before: 12pt
space-after: 12pt
The outer block containing the blocks of lines. Use the outer
block to set space before or after the verse.
level1-line-block
-----------------
:fo: fo:block
:defaults:
start-indent: 10mm
Attribute sets for the first level of lines.
level2-line-block
-----------------
:fo: fo:block
:defaults:
start-indent: 20mm
Attribute sets for the second level of lines.
level3-line-block
-----------------
:fo: fo:block
:defaults:
start-indent: 30mm
Attribute sets for the third level of lines.
level4-line-block
-----------------
:fo: fo:block
:defaults:
start-indent: 40mm
Attribute sets for the fourth level of lines.
level5-line-block
-----------------
:fo: fo:block
:defaults:
start-indent: 50mm
Attribute sets for the fifth level of lines.
stanza-title-block
------------------
:fo: fo:block
:defaults:
text-align: center
space-before: 12
font-weight: bold
Formats the title of a stanza.
definition list
===============
Attribute sets for the definition list.
definition-list-block
---------------------
:fo: block
:defaults:
space-after: 12pt
space-before: 12pt
For the definition list. Since this element contains all the
other blocks in the list, it can be used to set values such as
the font, background color, line-height, etc, for the entire
list, as well as the space after and before.
definition-list-item-block
--------------------------
:fo: fo:block
:defaults:
space-before: 12pt
For the items in the definition list. The attributes can control
the spacing between each item. A different set of attributes
controls the spacing of the first item (see below).
definition-list-item-first-block
--------------------------------
:fo: fo:block
:inherits: definition-list-item-block
:defaults:
space-before: 0pt
For the first item in the definition list. This attribute set
inherits all the properties form 'definition-list-item', and then
re-defines the space-before to 0pt. In order to get space
between the first item and the text before it, use the
space-after attribute in the option-list attribute set.
It does not makes sense to change this set direclty.
definition-term-block
---------------------
:fo: fo:block
:defaults:
font-weight: bold
Formats the bock of the the term. Can be used to control spacing
between term and definition, but don't use with space before, or
you won't be able to control spacing before list
definition-block
----------------
:fo: fo:block
:defaults:
Formats the bock of the of the defintion, that wraps the
paragraph blocks.
classifier-inline
-----------------
:fo: fo:inline
:defaults:
font-style: italic
For the inine properties of the classifier item.
definition-paragraph-block
--------------------------
:fo: fo:block
:defaults:
space-before: 12pt
start-indent: 30pt
Formats the blocks (paragraphs in the defintion. Can be lsed to
control the space between paragraphs by setting the space-bfore
attribute. Don't use the space-after attribute, or you won't be
able to contorl the spacing between items
definition-first-paragraph-block
--------------------------------
:fo: fo:block
:inherits: definition-first-paragraph-block
:defaults:
space-before: 0pt
For the first paragraph in the definition list. This attribute
set inherits all the properties frorm
'definition-first-paragraph-block', and then re-defines the
space-before to 0pt.
It does not makes sense to change this set direclty.
field list
==========
Attribute sets for the field list.
field-list-block
----------------
:fo: list-block
:defaults:
start-indent: 0mm
provisional-distance-between-starts: 30mm
space-before: 12pt
space-after: 12pt
Formats the field list. Since this element contains all the other
list elements, it can be used to set values such as the font,
background color, line-height, etc, for the entire list, as well
as the space after and before.
field-list-item
---------------
:fo: fo:list-item
:defaults:
space-before: 12pt
For the items, or 'fields' in the field list. The attributes can
control the spacing between each item. A different set of
attributes controls the spacing of the first item (see below).
field-first-list-item
---------------------
:fo: fo:list-item
:inherits: field-list-item
:defaults:
space-before: 0pt
For the first item in the field list. This attribute set inherits
all the properties form 'field-list-item', and then re-defines
the space-before to 0pt. In order to get space between the first
item and the text before it, use the space-after attribute in the
field-list-block attribute set.
It does not make sense to change this attriubte set directly.
field-list-item-label
---------------------
:fo: fo:list-item-label
:defaults:
end-indent: label-end()
The default attribute end-indent = "label-end()" ensures that the
label aligns properly.
field-list-item-body
--------------------
:fo: fo:list-item-body
:defaults:
start-indent: body-start()
The default of start-indent = "body-start()" ensures the correct
alignment of the labels.
field-body-block
----------------
:fo: fo:block
:defaults:
space-after: 12pt
Formats the blocks (docutilis paragraphs) of the field.
field-list-item-label-block
---------------------------
:fo: fo:block
:defaults:
font-weight: bold
Formats the block that wraps the field name.
option list as list
===================
Since an option list can be rendered as either a traditonal list,
or a definition list, there are two sets of attribute sets.
These attribute sets are used for the options list when it is
rendered as a list.
option-list-block
-----------------
:fo: list-block
:defaults:
start-indent: 0mm
provisional-distance-between-starts: 50mm
space-before: 12pt
space-after: 12pt
For the option list. Since this element contains all the other
list elements, it can be used to set values such as the font,
background color, line-height, etc, for the entire list, as well
as the space after and before.
option-list-item
----------------
:fo: fo:list-item
:defaults:
space-before: 12pt
For the items in the option list. The attributes can control the
spacing between each item. A different set of attributes controls
the spacing of the first item (see below).
option-first-list-item
----------------------
:fo: fo:list-item
:inherits: option-list-item
:defaults:
space-before: 0pt
For the first item in the option list. This attribute set
inherits all the properties form 'option-list-item', and then
re-defines the space-before to 0pt. In order to get space between
the first item and the text before it, use the space-after
attribute in the option-list attribute set.
It does not make sense to change this attriubte set directly.
option-list-item-label
----------------------
:fo: fo:list-item-label
:defaults:
end-indent: label-end()
The default attribute end-indent = "label-end()" ensures that the
label aligns properly.
option-list-item-label-block
----------------------------
:fo: fo:block
:defaults:
These attributes format the block that wraps the option_string
and option_argument.
option-list-item-body
---------------------
:fo: fo:list-item-body
:defaults:
start-indent: body-start()
The default of start-indent = "body-start()" ensures the correct
alignment of the labels.
option-list-item-body-block
---------------------------
:fo: fo:block
:defaults:
Formats the blocks (docutilis paragraphs) that describe the
options. If there was more than one paragraph, you could use
attributes such as space after.
option-inline
-------------
:fo: fo:inline
:defaults:
font-family: monospace
Used to format any inline properties of the option_string.
option-argument-inline
----------------------
:fo: fo:inline
:defaults:
font-family: monospace
font-style: italic
Used to format any inline properties of the option_string.
option list as definition list
==============================
These attribute sets are used for the options list when it is
rendered as a definition list. (See the docutils reference guide
for an example of a definition list, or see the defintion list in
the test files.)
option-list-definition-block
----------------------------
:fo: fo:block
:defaults:
space-before: 12pt
space-after: 12pt
Formats the block that wraps the other blocks. Use to control
space after and before, or to set any block items on the entire
list.
This block wraps around another block, which in turn wraps around
a third block.
option-list-item-block
----------------------
:fo: fo:block
:defaults:
space-before: 8pt
Formats the block that wraps the options and descriptions, which
are also blocks.
option-list-first-item-block
----------------------------
:fo: fo:block
:defaults:
space-before: 0pt
Same as for option-list-item-block, but sets the space-before to
0pt
Does not make sense to change the attributes here directly.
option-group-block
------------------
:fo: fo:block
:defaults:
keep-with-next: always
Formats the block that contains the inline elements of the
options and arguments. For a defintion list, this block serves as
the term, and sits on top, and to the left of the description.
option-list-description-block
-----------------------------
:fo: fo:block
:defaults:
start-indent: 16pt
space-before: 8pt
Formats the blocks wrappring the paragraphs describing the
options or arguments. This groups of blocks sits below the blocks
formatting the options and arguments, and in a defintion list
are usually indented right.
option-list-paragraph-block
---------------------------
:fo: fo:block
:defaults:
space-before: 0pt
Formats the paragraphs in the description for an options list
formatted as a definition list.
option-list-first-paragraph-block
---------------------------------
:fo: fo:block
:inherits: option-list-paragraph-block
:defaults:
space-before: 0pt
Formats the first paragraph in the description for an options
list formatted as a definition list.
Inline
======
Attribute sets for all the inline elements. The parameter
'footnote-style' controls the style of the footnote.
emphasis-inline
---------------
:fo: fo:inline
:defaults:
font-style: italic
Formats the emphasis element.
strong-inline
-------------
:fo: fo:inline
:defaults:
font-weight: bold
Formats the strong element.
basic-link-inline
-----------------
:fo: fo:inline
:defaults:
text-decoration: underline
color: blue
Formats the basic_link element.
literal-inline
--------------
:fo: fo:inline
:defaults:
font-family: monospace
font-size: 8
white-space: pre
Formats the literal element.
title-reference-inline
----------------------
:fo: fo:inline
:defaults:
font-style: italic
Formats the title_reference element.
Admonitions
===========
Attribute sets for Admonitions. By default, the admontioins have
a border around them. Each admonition gets its title from the
parameter of that name. For example, the danger admonitions title
gets its title from the 'danger-title' parameter, the caution
from the `caution-title` paramter, and so fourth.
Although each admonition and each admonition title has its own
attribute-set, by default they all inherit these values from two
default attribute sets. (See below.) Each of these areas can thus
be customized. In contrast, all the paragrahs in each admonition
are identical.
default-admonition-outer-block
------------------------------
:fo: block
:defaults:
border-style: solid
border-width: 1px
padding: 6pt
keep-together.within-page: always
Sets up the defaults for the outer blocks of all the admonitions.
The attributes of this block control the borders and prohibit
the admonition from breaking across a page.
default-admonition-title-block
------------------------------
:fo: block
:defaults:
space-after: 10pt
font-size: larger
color: red
Sets up the defaults for the title blocks of all the admonitions.
The attributes of this block control the color (red) and font
size. For certain blocs, the color is set to black (see below).
admonitions outer block
-----------------------
:fo: fo:block
admonitons[@classes='custorm']
:inherits: default-admonition-outer-block
The following attribute sets are identical in nature:
* attention-block
* caution-block
* danger-block
* error-block
* hint-block
* important-block
* note-block
* tip-block
* warning-block
* admonition-custom-block
These attribute-sets format the outer block of all the
admonitions. By default it puts an border around the text. Use
this attribute set to set the space before or after, the
background color, etc.
admonitions title block
-----------------------
:fo: fo:block
:inherits: default-admonition-title-block
The following attribute sets are identical in nature:
* attention-title-block
* caution-title-block
* danger-title-block
* error-title-block
* hint-title-block
* important-title-block
* note-title-block
* tip-title-block
* warning-title-block
* admonition-custom-title-block
These attribute-sets format the title block of all the
admonitions. It sets the color to red.
The attribute-sets ``error-title-block``, ``hint-title-block``,
``important-title-block``, ``note-title-block``,
``tip-title-block``, and ``admonition-custom-title-block`` resets
the color back to black.
admonition-paragraph-block
--------------------------
:fo: fo:block
:defaults:
space-before: 12pt
Formats the paragraphs in the admonitions. A different
attribute-set formats the first paragraph (see below).
admonition-first-paragraph-block
--------------------------------
:fo: fo:block
:defaults:
Formats the first paragraphs in the admonitions. It inherits its
attributes from the ``admonition-paragraph-block`` and resets the
``space-before`` property to ``0pt``. It does not make sense to
modify the attributes in this set directly.
Body Elements Directives
========================
Attribute sets for Body Elements Directives.
topic-block
-----------
:fo: fo:block
:defaults:
space-after: 12pt
space-before: 12pt
Formats the outermost block of the topic element, which contains
blocks.
topic-title-block
-----------------
:fo: fo:block
:defaults:
font-weight: bold
space-after: 12pt
Formats the title of the topic.
topic-paragraph-block
---------------------
:fo: fo:block
:defaults:
space-before: 12pt
space-after: 0pt
Formats the paragraphs of the topic. A different set of
attributes formats the first paragraph.
topic-first-paragraph-block
---------------------------
:fo: fo:block
:inherits: topic-paragraph-block
:defaults:
Formats the first paragraphs of the topic.
sidebar-block
-------------
:fo: fo:block
:defaults:
space-after: 12pt
space-before: 12pt
background-color: #FFFFF0
padding: 6pt
start-indent: 10mm
end-indent: 40mm
Formats the outermost block of the sidebar element, which
contains blocks. Note that fop does not handle floats, so this
element is formatted just like a topic block.
sidebar-title-block
-------------------
:fo: fo:block
:defaults:
font-weight: bold
space-after: 12pt
Formats the title of the topic.
sidebar-subtitle-block
----------------------
:fo: fo:block
:defaults:
font-weight: bold
space-after: 12pt
Formats the subtitle of the topic.
sidebar-paragraph-block
-----------------------
:fo: fo:block
:defaults:
space-before: 12pt
Formats the paragraphs of the sidebar. A different set of
attributes formats the first paragraph.
sidebar-first-paragraph-block
-----------------------------
:fo: fo:block
:inherits: sidebar-paragraph-block
:defaults:
space-after: 0pt
Formats the first paragraphs of the sidebar.
rubric-block
------------
:fo: fo:block
:defaults:
text-align: center
font-size: larger
color: red
Formats the rubric.
epigraph-outer-block
--------------------
:fo: fo:block
:defaults:
start-indent: 20mm
end-indent: 20mm
space-after: 12pt
space-before: 12pt
text-align: right
font-style: italic
Formats the outermost block of the epigraph element, which
contains blocks.
epigraph-paragraph-block
------------------------
:fo: fo:block
:defaults:
start-indent: inherit
end-indent: inherit
space-before: 12pt
Formats the paragraphs of the epigraph. A different set of
attributes formats the first paragraph.
epigraph-first-paragraph-block
------------------------------
:fo: fo:block
:inherits: epigraph-paragraph-block
:defaults:
space-before: 0pt
Formats the first paragraphs of the epigraph.
epigraph-attribution-block
--------------------------
:fo: fo:block
:defaults:
text-align: right
Formats the attribution of the epigraph. The parameter
``text-before-epigraph-attribution`` determines the text to put
before the attribtion. The default is '—' (an em-dash). To put no
text before, set this parameter to an empty string.
highlights-outer-block
----------------------
:fo: fo:block
:defaults:
start-indent: 20mm
end-indent: 20mm
space-after: 12pt
space-before: 12pt
Formats the outermost block of the epigraph element, which
contains blocks.
highlights-paragraph-block
--------------------------
:fo: fo:block
:defaults:
start-indent: inherit
end-indent: inherit
space-before: 12pt
Formats the paragraphs of the highlights. A different set of
attributes formats the first paragraph.
highlights-first-paragraph-block
--------------------------------
:fo: fo:block
:inherits: highlights-paragraph-block
:defaults:
space-before: 0pt
Formats the first paragraphs of the highlights.
pull-quote-outer-block
----------------------
:fo: fo:block
:defaults:
start-indent: 20mm
end-indent: 20mm
space-after: 12pt
space-before: 12pt
Formats the outermost block of the pull-quote element, which
contains blocks.
pull-quote-paragraph-block
--------------------------
:fo: fo:block
:defaults:
start-indent: inherit
end-indent: inherit
space-before: 12pt
Formats the paragraphs of the pull-quote. A different set of
attributes formats the first paragraph.
pull-quote-first-paragraph-block
--------------------------------
:fo: fo:block
:inherits: pull-quote-paragraph-block
:defaults:
space-before: 0pt
Formats the first paragraphs of the pull-quote.
pull-quote-attribution-block
----------------------------
:fo: fo:block
:defaults:
text-align: right
Formats the attribution of the pull-quote. The parameter
``text-before-pull-quote-attribution`` determines the text to put
before the attribtion. The default is '—' (an em-dash). To put
no text before, set this parameter to an empty string.
container-outer-block
---------------------
:fo: fo:block
:defaults:
space-after: 12pt
space-before: 12pt
Formats the outermost block of the container element, which
contains blocks.
container-paragraph-block
-------------------------
:fo: fo:block
:defaults:
space-before: 12pt
Formats the paragraphs of the container. A different set of
attributes formats the first paragraph.
container-first-paragraph-block
-------------------------------
:fo: fo:block
:inherits: container-paragraph-block
:defaults:
space-before: 0pt
Formats the first paragraphs of the container.
Image and Figure
================
Attribute sets for Images and Figures. The image property of
``alt`` and ``target`` are ignored by the stylesheets, since they
have no use in PDF. In addtion, if the ``align`` is set to
``top`` or ``bottom``, both properties that have no meaning for
PDF, the stylesheets will report an error, and if ``strict`` is
set to ``true``, quit.
Likwise, the figure ``figwidth`` property will be ignored, since
there is not way to implement this property directy in FO.
In order to control the scaling, alignment, and width of images
and figures, it is better to use the attribute sets than to try
to set these properties in RST. The regions of 'image', 'figure',
'caption', and 'legend' are all wrapped in blocks. Use the
attribute sets for these blocks to control the properties.
figure-block
------------
:fo: fo:block
:defaults:
Formats the block that wraps the figure. Use this attribute set
to set properties on the image, caption, and legend, as well as
to set the space before and after the figure.
image-block
-----------
:fo: fo:block
:defaults:
Formats the block that wraps the image, both for an image by
itself, and for an image included in a figure. Use this attribute
set to control the space before and after the image, as well as
to align the image itself.
figure-caption-block
--------------------
:fo: fo:block
:defaults:
space-before: 12pt
space-after: 12pt
font-weight: bold
font-size: smaller
text-align: center
Formats the block that wraps the caption.
figure-legend-block
-------------------
:fo: fo:block
:defaults:
space-before: 12pt
space-after: 12pt
Formats the block that wraps the legend. The paragrahs in the
legend have their own blocks.
legend-paragraph-block
----------------------
:fo: fo:block
:defaults:
space-before: 12pt
Formats the block that wraps the paragraphs in the legend.
legend-first-paragraph-block
----------------------------
:fo: fo:block
:inherits: legend-paragraph-block
:defaults:
space-before: 0pt
Formats the first block that wraps the paragraphs in the legend.
Table
=====
Attribute sets for the Table.
table-block-container
---------------------
:fo: fo:block-container
:defaults:
space-before: 12pt
space-after: 12pt
Formats the block container that wraps bothe the table and a the
table title (captin) if one exists. Use to control space before
and after the table.
table
-----
:fo: fo:table
:defaults:
table-layout: fixed
inline-progression-dimension: 100%
Formats the table.
table-header
------------
:fo: fo:table-header
:defaults:
font-weight: bold
Formats the header of the table.
default-cell
------------
:fo: fo:cell
:defaults:
border: solid black 1px
padding: 1em
border-collapse: collapse
Sets the defaults for all cells.
table-header-cell
-----------------
:fo: fo:cell
:inherits: default-cell
:defaults:
border-bottom: solid black 2px
Formats the cells in the table header.
table-header-block
------------------
:fo: fo:block
:defaults:
Attributes for the paragraphs in the header cell.
table-body
----------
:fo: fo:table-body
:defaults:
Attributes for the table body.
table-row
---------
:fo: fo:table-row
:defaults:
keep-together.within-page: always
Attributes for the table row.
table-cell
----------
:fo: fo:table-cell
:inherits: default-cell
:defaults:
Attributes for the table cell.
cell-block
----------
:fo: fo:block
:defaults:
Attributes for the paragraphs in the cell.
caption-block
-------------
:fo: fo:block
:defaults:
text-align: center
space-before: 6pt
space-after: 6pt
Attributes for the table title, or caption. The parameter
'table-title-placement', controls whether this block is placed
before or after the table. If it is placed on top of the table,
it has a 'keep-with-next="always"' value that cannot be changed.
If this block is placed on the bottom it has a
'keep-with-previous="always"' value that cannot be changed.
|