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
|
^^^^^^^^^^^^^^^^^^^^^^^^
HOWTO: Docutils2fo 0.6
^^^^^^^^^^^^^^^^^^^^^^^^
.. $Id: howto.rst 7131 2011-09-26 19:27:15Z paultremblay $
.. contents::
================
Convert to PDF
================
You will need a FO processor to convert to PDF. An open source,
complete implementation, fop, is available at:
http://ci.apache.org/projects/xmlgraphics/fop/snapshots/
In addition, if you want to inclue any math in your document, download jeuclid:
http://jeuclid.sourceforge.net/
If you use ASCII math in your document, you will also have to download
the asciimathml.py and install it.
https://github.com/favalex/python-asciimathml/blob/master/asciimathml.py
Here is an example of converting file ``file.rst`` to ``out.pdf``.
::
rst2xml.py --strip-comments --trim-footnote-reference-space file.rst | fop -xml - -xsl xsl_fo/docutils_to_fo.xsl -pdf out.pdf
In this case, rst converts file.rst to XML, and the fop processor both
converts the XML file to FO, and then processes that file. You can
achieve the same result in several steps:
1. ``rst2xml.py --strip-comments --trim-footnote-reference-space
file.rst file.xml``
2. ``xsltproc xsl_fo/docutils_to_fo.xsl file.xml > file.fo``
3. ``fop -fo file.fo -pdf out.pdf``
The script ``docutils_to_fo.sh`` combines several of these steps to make
converstion easier, and adds a few nice features, but it functions
more of a convenience than as a necessary tool; one does not need it
to convert. It is a work in progress, and serves as an example of how
one could writes his own simple script to convert to PDF. The
essential conversion utilities are the FO processor, and the XSL
stylesheets themselves.
===========================
Post Processing a Document
===========================
You may need to further process the XML document created
by rst2xml.py before converting it to FO in two cases: to include raw
XML, and to include MathML. In both cases, use the ``rstxml2xml.py``
script included in the scripts folder::
rst2xml.py --strip-comments --trim-footnote-reference-space file.rst\
|rstxml2xml.py | fop -xml - -xsl xsl_fo/docutils_to_fo.xsl -pdf out.pdf
Install the script in the normal way::
python setup.py install
The script can also be used if you wish to convert the document in
steps.
1. ``rst2xml.py --strip-comments --trim-footnote-reference-space
file.rst file.xml``
2. ``rstxml2xml.py file.xml > file_fixed.xml``
3. ``xsltproc xsl_fo/docutils_to_fo.xsl file_fixed.xml > file.fo``
4. ``fop -fo file.fo -pdf out.pdf``
Including Raw XML
------------------
If you have included raw XML, such as::
.. raw:: XML
<math ....
<!--etc-->
The XML will be converted to plain text, unless you use the
``rstxml2xml.py`` script.
Converting ASCII MathML to MathML
----------------------------------
If you have included ASCII MathML in your document, you should also
use the ``rstxml2xml.py`` script. If you do not post process the
document, the math will appear as ASCII text. If you post process it,
the equations will appear formatted.
===========
Customize
===========
In order to change the defaults of the stylesheets, you will need to create a
new stylesheet which imports the standard stylesheet, and then process this
stylesheet.
As an example, consider that you might want to change your top and
bottom margins from the default fo 1 inch to 1.5 inches. First, create
the following stylesheet::
<xsl:stylesheet
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:fo="http://www.w3.org/1999/XSL/Format"
version="1.1"
>
<xsl:import href="xsl_fo/docutils_to_fo.xsl"/>
<xsl:attribute-set name="page-margins">
<xsl:attribute name="margin-top">1.5in</xsl:attribute>
<xsl:attribute name="margin-bottom">1.5in</xsl:attribute>
</xsl:attribute-set>
</xsl:stylesheet>
Save this stylesheet with any name you want. In this case, I've saved
as custom.xsl. Next, I process the document in the normal way, except
that I used ``custom.xsl`` as my stylesheet instead of
``docutils_to_fo.xsl`` ::
rst2xml.py --strip-comments --trim-footnote-reference-space <file.rst> | fop -xml - -xsl custom.xsl -pdf out.pdf
Attribute Sets
---------------
When you import the docutils_to_fo.xsl stylesheet, you also import all
of its rules, except the ones you re-write. In the example above, the
attribute set in docutils_to_fo.xsl looks like this::
<xsl:attribute-set name="page-margins">
<xsl:attribute name="margin-left">1.0in</xsl:attribute>
<xsl:attribute name="margin-right">1.0in</xsl:attribute>
<xsl:attribute name="margin-top">1.0in</xsl:attribute>
<xsl:attribute name="margin-bottom">1.0in</xsl:attribute>
</xsl:attribute-set>
I changed the attribute for ``margin-top`` and ``margin-bottom``, but
left the ``margin-right`` and ``margin-left`` unchanged. You can also
add to attribute sets. In this case, the ``page-margins`` attribute
gets applied to the sequence of pages--practically the whole document.
So in order to change the font size to 14 points, I could
create the attribute set as::
<xsl:attribute-set name="page-margins">
<xsl:attribute name="margin-top">1.5in</xsl:attribute>
<xsl:attribute name="margin-bottom">1.5in</xsl:attribute>
<xsl:attribute name="font-size">14pt</xsl:attribute>
</xsl:attribute-set>
Most of the customization occurs through attribute sets. If you are
familiar with CSS, then the syntax will look very similar, and is in
many cases exactly the same. If you have doubts, check out the FO
specs online.
Other Ways to Customize
------------------------
The other ways to customize are to re-write an entire template rule,
change a parameter, or, in one case, change a variable. All these
methods are explained below.
====================
Headers and Footers
====================
Create a header
---------------
In the *document* (not the config file), use the following::
.. header::
A Christmas Carol
The header will appear on every page.
Create a footer
---------------
In the *document* (not the config file), use the following::
.. footer::
Charles Dickens
Create a page number in a header or footer
--------------------------------------------
(NOT SURE I WANT TO IMPLEMENT THIS)
In the *document* (not the config file), use the following::
.. role:: page-num
.. footer::
Charles Dickens.
:page-num:`1`
Page numbers will be generated automatically.
Create space for a header or footer
------------------------------------
The defaults should create enough space for headers or footers. If you want to
change the defaults, use::
<xsl:attribute-set name="region-before">
<xsl:attribute name="extent">1in</xsl:attribute>
</xsl:attribute-set>
Change space between header and body text
------------------------------------------
::
<xsl:variable name="region-body-margin-top">.5in<xsl:variable>
<xsl:variable name="region-body-margin-bottom">.5in<xsl:variable>
=======================
Footnotes and Endnotes
=======================
Changing the default footnote separator
----------------------------------------
Rewrite the named template `make-footnote-separator`::
<!--gets rid of separator-->
<xsl:template name="make-footnote-separator"/>
Changing the size of the label
--------------------------------
The attribute set "default-footnote-label-inline" sets the formatting of the
label in the text::
<!--changes size form 8 to 10 pts-->
<xsl:attribute-set name="default-footnote-label-inline">
<xsl:attribute name="font-size">10pt</xsl:attribute>
</xsl:attribute-set>
Changing the space between label and footnote at bottom of page
----------------------------------------------------------------
::
<xsl:attribute-set name="footnote-list-block">
<xsl:attribute name="provisional-distance-between-starts">18pt</xsl:attribute>
</xsl:attribute-set>
Changing space between footnotes
---------------------------------
::
<xsl:attribute-set name="footnote-list-block">
<xsl:attribute name="space-after">12pt</xsl:attribute>
</xsl:attribute-set>
Note: Use space-before.conditionality ="retain" to set space between first
footnote and text. Or, set `space-after` in the footnote separator text, and
use space-after.conditionality ="retain".
Changing space between paragraphs in footnotes
----------------------------------------------
::
<xsl:attribute-set name="footnote-paragraph-block">
<xsl:attribute name="space-before">15pt</xsl:attribute>
</xsl:attribute-set>
==========
Dedication
==========
Putting the dedication on its own page
---------------------------------------
The default template for the dedication is::
<xsl:template match="topic[@classes='dedication']">
<xsl:apply-templates/>
</xsl:template>
Change this to::
<xsl:template match="topic[@classes='dedication']">
<fo:block break-before = "page" break-after="page">
<xsl:apply-templates/>
</fo:block>
</xsl:template>
Dedication Title
------------------
Change the `dedication-title-block` attribute set::
<xsl:attribute-set name="dedication-title-block">
<xsl:attribute name="text-align">center</xsl:attribute>
<xsl:attribute name="font-weight">bold</xsl:attribute>
<xsl:attribute name="space-after">12pt</xsl:attribute>
</xsl:attribute-set>
Dedication paragraphs
---------------------
To change the characteristics of the paragraphs of the dedication, use the
`dedication-paragraph-block` and `dedication-first-paragraph-block`.
::
<xsl:attribute-set name="dedication-paragraph-block">
<xsl:attribute name="font-style">italic</xsl:attribute>
<xsl:attribute name="space-after">12pt</xsl:attribute>
</xsl:attribute-set>
<xsl:attribute-set name="dedication-first-paragraph-block"
use-attribute-sets = "dedication-paragraph-block">
<xsl:attribute name="space-before">0pt</xsl:attribute>
</xsl:attribute-set>
==========
Abstract
==========
Putting the abstract on its own page
---------------------------------------
The default template for the abstract is::
<xsl:template match="topic[@classes='abstract']">
<xsl:apply-templates/>
</xsl:template>
Change this to::
<xsl:template match="topic[@classes='abstract']">
<fo:block break-before = "page" break-after="page">
<xsl:apply-templates/>
</fo:block>
</xsl:template>
Abstract Title
------------------
Change the `abstract-title-block` attribute set::
<xsl:attribute-set name="abstract-title-block">
<xsl:attribute name="text-align">center</xsl:attribute>
<xsl:attribute name="font-weight">bold</xsl:attribute>
<xsl:attribute name="space-after">12pt</xsl:attribute>
</xsl:attribute-set>
Abstract paragraphs
---------------------
To change the characteristics of the paragraphs of the abstract, use the
`abstract-paragraph-block` and `abstract-first-paragraph-block`.
::
<xsl:attribute-set name="abstract-paragraph-block">
<xsl:attribute name="font-style">italic</xsl:attribute>
<xsl:attribute name="space-after">12pt</xsl:attribute>
</xsl:attribute-set>
<xsl:attribute-set name="abstract-first-paragraph-block"
use-attribute-sets = "abstract-paragraph-block">
<xsl:attribute name="space-before">0pt</xsl:attribute>
</xsl:attribute-set>
====
TOC
====
Putting toc on its own page
-----------------------------
For a break before, use the break-before = page in the attribute set
`toc-title-block`::
<xsl:attribute-set name="toc-title-block">
<xs:attribute name="break-before">page</xs:attribute>
</xsl:attribute-set>
Use a page break in the element that comes after it.
Another way to put the TOC on its own page (besides using a whole new page
run, the preferred method for more involved documents), is to rewrite the
matching template. The default is::
<xsl:template match="topic[@classes='contents']">
<xsl:apply-templates/>
</xsl:template>
Rewrite this to::
<xsl:template match="topic[@classes='contents']">
<fo:block break-before = "page" break-after="page">
<xsl:apply-templates/>
</fo:block>
</xsl:template>
Formatting the title
-----------------------
Use the attribue set `toc-title-block`::
<xsl:attribute-set name="toc-title-block">
<xs:attribute name="text-align">left</xs:attribute>
</xsl:attribute-set>
Setting the defaults on each entry
-------------------------------------
Use the `toc-entry-defaults-block` to set properties for all of the toc entries
at once::
<xsl:attribute-set name="toc-entry-defaults-block">
<xsl:attribute name="space-after">3pt</xsl:attribute>
<xsl:attribute name="text-align-last">justify</xsl:attribute>
</xsl:attribute-set>
Formatting the entries
------------------------
Use the attribute-set `toc-level1/2...-block`::
<xsl:attribute-set name="toc-level1-block" >
</xsl:attribute-set>
<xsl:attribute-set name="toc-level2-block" >
<xsl:attribute name="start-indent">10mm</xsl:attribute>
</xsl:attribute-set>
<!--etc-->
Format the toc numbers
-----------------------
The format of the numbers for toc entry takes the same format as the
section numbers. See section numbers.
=========
Sections
=========
Formatting titles
-------------------
Use the attribute-sets ``'title-level1-block'``, ``'title-level1-block'``, etc, to
format the titles for each section. Docutils to fo allows sections to go 7
levels deep. Headings are blocks and can take any property of a block.
::
<xsl:attribute-set name="default-section-title-block">
<xsl:attribute name="space-before">12pt</xsl:attribute>
<xsl:attribute name="space-after">12pt</xsl:attribute>
<xsl:attribute name="keep-with-next">always</xsl:attribute>
</xsl:attribute-set>
<xsl:attribute-set name="title-level1-block" use-attribute-sets="default-section-title-block">
<xsl:attribute name="font-weight">bold</xsl:attribute>
<xsl:attribute name="font-size">16</xsl:attribute>
</xsl:attribute-set>
<xsl:attribute-set name="title-level2-block" use-attribute-sets="default-section-title-block">
<xsl:attribute name="font-weight">bold</xsl:attribute>
<xsl:attribute name="font-size">14</xsl:attribute>
<xsl:attribute name="font-style">italic</xsl:attribute>
</xsl:attribute-set>
Creating section numbers
-------------------------
At the start of the document, put::
.. sectnum::
Formatting section numbers
---------------------------
Use the ``'parm#'`` identifier plus the ``'number-format'`` to format the
section numbers. The value for formatting can take a combination of
punctuation and numbers, letters, or Roman numberals
::
<xsl:param name="number-section1">1</xsl:param>
<xsl:param name="number-section2">.1</xsl:param>
<xsl:param name="number-section3">.1</xsl:param>
<xsl:param name="number-section4">.1</xsl:param>
<xsl:param name="number-section5">.1</xsl:param>
<xsl:param name="number-section6">.1</xsl:param>
<xsl:param name="number-section7">.1</xsl:param>
<xsl:param name="number-section8">.1</xsl:param>
<xsl:param name="number-section9">.1</xsl:param>
# (I.), (II.), (III.), etc
heading1.number-format = (I.)
# i.), ii.), etc
heading2.number-format = i.)
# .1., .2., .3., etc
heading3.number-format = .1.
# a, b, c, etc
heading4.number-format = a
# A, B, C., etc
heading5.number-format = A
=============
Body Elements
=============
Changing characteristics of paragraphs
---------------------------------------
::
<xsl:attribute-set name="paragraph-block">
<xsl:attribute name="space-after">12pt</xsl:attribute>
</xsl:attribute-set>
Changing characteristics of first paragraphs
--------------------------------------------
::
<xsl:attribute-set name="first-paragraph-block" use-attribute-sets="paragraph-block">
</xsl:attribute-set>
Block quote
-----------
The default template is:
::
<xsl:template match="block_quote[not(@classes)]">
<xsl:apply-templates/>
</xsl:template>
To change, (to put space ater, for example)::
<xsl:template match="block_quote[not(@classes)]">
<xsl:apply-templates/>
<fo:block space-after="24pt"/>
</xsl:template>
<!--or-->
<xsl:template match="block_quote[not(@classes)]">
<fo:block space-after="24pt">
<xsl:apply-templates/>
</fo:block>
</xsl:template>
Changing characteristics of pargraphs in a Quote
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Use the `block-quote-paragraph-block` attribute set::
<xsl:attribute-set name="block-quote-paragraph-block">
<xsl:attribute name="space-before">12pt</xsl:attribute>
<xsl:attribute name="start-indent">20mm</xsl:attribute>
<xsl:attribute name="end-indent">20mm</xsl:attribute>
<xsl:attribute name="space-after">12pt</xsl:attribute>
<xsl:attribute name="space-before">12pt</xsl:attribute>
</xsl:attribute-set>
<xsl:attribute-set name="block-quote-first-paragraph-block" use-attribute-sets="block-quote-paragraph-block">
<xsl:attribute name="space-before">0pt</xsl:attribute>
</xsl:attribute-set>
Changing characteristics of the attribution for a quote
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Use the `block-quote-attributeion-block` attribute.
::
<xsl:attribute-set name="block-quote-attribution-block">
<xsl:attribute name="text-align">right</xsl:attribute>
</xsl:attribute-set>
Literal Block
-------------
To change the characteristics of a literal block, use the
`literal-block` attribute set::
<xsl:attribute-set name="literal-block">
<xsl:attribute name="font-family">monospace</xsl:attribute>
<xsl:attribute name="font-size">8</xsl:attribute>
<xsl:attribute name="white-space">pre</xsl:attribute>
<xsl:attribute name="space-after">12pt</xsl:attribute>
<xsl:attribute name="space-before">12pt</xsl:attribute>
</xsl:attribute-set>
Transition Block
------------------
To change the characteristics of a transition block, use the
`transition-block` attribute set::
<xsl:attribute-set name="transition-block">
<xsl:attribute name="space-before">12pt</xsl:attribute>
<xsl:attribute name="space-after">12pt</xsl:attribute>
<xsl:attribute name="text-align">center</xsl:attribute>
</xsl:attribute-set>
Document Title
--------------
To change the characteristics of the document title, use the
`document-title-block` attribute set::
<xsl:attribute-set name="document-title-block">
<xsl:attribute name="space-after">12pt</xsl:attribute>
<xsl:attribute name="font-size">24pt</xsl:attribute>
<xsl:attribute name="text-align">center</xsl:attribute>
<xsl:attribute name="font-weight">bold</xsl:attribute>
</xsl:attribute-set>
Document Subtitle
-------------------
To change the characteristics of the document subtitle, use the
`document-subtitle-block` attribute set::
<xsl:attribute-set name="document-subtitle-block">
<xsl:attribute name="space-before">12pt</xsl:attribute>
<xsl:attribute name="space-after">12pt</xsl:attribute>
<xsl:attribute name="font-size">18pt</xsl:attribute>
<xsl:attribute name="text-align">center</xsl:attribute>
<xsl:attribute name="font-weight">bold</xsl:attribute>
</xsl:attribute-set>
============
Bullet List
============
Formatting the bullet list
----------------------------
Use the attribute set ``'bullet-list-block'`` and
``'bullet-level2-list-block'`` property to format the space after and before,
the left and right indent, and any other property you want to set on the list,
such as font for font-size::
<xsl:attribute-set name="bullet-list-block" >
<xsl:attribute name="start-indent">5mm</xsl:attribute>
<xsl:attribute name="provisional-distance-between-starts">5mm</xsl:attribute>
<xsl:attribute name="space-before">12pt</xsl:attribute>
<xsl:attribute name="space-after">12pt</xsl:attribute>
</xsl:attribute-set>
<xsl:attribute-set name="bullet-level2-list-block" >
<xsl:attribute name="start-indent">15mm</xsl:attribute>
<xsl:attribute name="provisional-distance-between-starts">5mm</xsl:attribute>
<xsl:attribute name="space-before">12pt</xsl:attribute>
</xsl:attribute-set>
To format space between bullets and text, change the attribute
``'provisional-distance-between-starts'``.
To format space between items
-------------------------------
Use the ``'bullet-list-item'`` and ``'bullet-level2-list-item'`` attribute set.
::
<xsl:attribute-set name="bullet-list-item">
<xsl:attribute name="space-before">12pt</xsl:attribute>
</xsl:attribute-set>
<xsl:attribute-set name="bullet-level2-list-item">
<xsl:attribute name="space-before">12pt</xsl:attribute>
</xsl:attribute-set>
Choosing the text for the bullet
-----------------------------------
Use the parameter ``'bullet-list'`` and ``'bullet-list-level2'`` to change the default bullet::
<xsl:param name="bullet-text">•</xsl:param>
<xsl:param name="bullet-text-level2">°</xsl:param>
Formatting the paragraphs
----------------------------
Use the ``'bullet-list-item-body-block'`` attribute set to format the text of
the bullet list. This identifier can take any block property::
<xsl:attribute-set name="bullet-list-item-body-block">
<xsl:attribute name="space-after">12pt</xsl:attribute>
</xsl:attribute-set>
================
Enumerated List
================
Formatting the enumerated list
--------------------------------
Use the attribute set ``'enumerated-list-block'`` and
``'enumerated-level2-list-block'`` property to format the space after and
before, the left and right indent, and any other property you want to set on
the list, such as font for font-size::
<xsl:attribute-set name="enumerated-list-block" >
<xsl:attribute name="start-indent">5mm</xsl:attribute>
<xsl:attribute name="provisional-distance-between-starts">5mm</xsl:attribute>
<xsl:attribute name="space-before">12pt</xsl:attribute>
<xsl:attribute name="space-after">12pt</xsl:attribute>
</xsl:attribute-set>
<xsl:attribute-set name="enumerated-level2-list-block" >
<xsl:attribute name="start-indent">15mm</xsl:attribute>
<xsl:attribute name="provisional-distance-between-starts">10mm</xsl:attribute>
<xsl:attribute name="space-before">12pt</xsl:attribute>
<xsl:attribute name="space-before">12pt</xsl:attribute>
</xsl:attribute-set>
To format space between enumerateds and text, change the attribute
``'provisional-distance-between-starts'``.
To format space between items
-------------------------------
Use the ``'enumerated-list-item'`` and ``'enumerated-level2-list-item'`` attribute set.
::
<xsl:attribute-set name="enumerated-list-item">
<xsl:attribute name="space-before">12pt</xsl:attribute>
</xsl:attribute-set>
<xsl:attribute-set name="enumerated-level2-list-item">
<xsl:attribute name="space-before">12pt</xsl:attribute>
</xsl:attribute-set>
Formatting the paragraphs
----------------------------
Use the ``'enumerated-list-item-body-block'`` attribute set to format the text of
the enumerated list. This identifier can take any block property::
<xsl:attribute-set name="enumerated-list-item-body-block">
<xsl:attribute name="space-after">12pt</xsl:attribute>
</xsl:attribute-set>
===========
Line Blocks
===========
Formatting the entire line block
---------------------------------
Use the ``'outer-line-block'`` attribute-set to format the entire line block.
This identifier can take any block property::
<xsl:attribute-set name="outer-line-block">
<xsl:attribute name="space-before">12pt</xsl:attribute>
<xsl:attribute name="space-after">12pt</xsl:attribute>
</xsl:attribute-set>
Formatting the lines
----------------------
The lines have the attribute-set ``'level1-line-block'``, ``'level2-line-block'`` and
so fourth. Each level indicates how many levels the line is nested.
Lines may be nesed up to 5 levels deep. It makes sense to set overall
properties with the ``'outer-line-block'`` attribute-set, and to use the
``'evel#-line-block'`` to set the indents of for each level::
<xsl:attribute-set name="level1-line-block">
<xsl:attribute name="start-indent">10mm</xsl:attribute>
</xsl:attribute-set>
<xsl:attribute-set name="level2-line-block">
<xsl:attribute name="start-indent">20mm</xsl:attribute>
</xsl:attribute-set>
Create a stanza title
----------------------
In order to create a title for a stanza, in the *document* (not the
configuration file) include the line in a title_reference::
| `stanza title 1`
| A one, two, a one two three four
|
| `stanza title 2`
| Half a bee, philosophically,
| must, *ipso facto*, half not be.
| But half the bee has got to be,
| *vis a vis* its entity. D'you see?
|
| `stanza title 3`
| But can a bee be said to be
| or not to be an entire bee,
| when half the bee is not a bee,
| due to some ancient injury?
|
| Singing...
Formatting the stanza title
-----------------------------
Use the ``'stanza-title-block'`` attribute-set to format the stanza title::
<xsl:attribute-set name="stanza-title-block">
<xsl:attribute name="text-align">center</xsl:attribute>
<xsl:attribute name="space-before">12</xsl:attribute>
<xsl:attribute name="font-weight">bold</xsl:attribute>
</xsl:attribute-set>
You cannot do any formatting with a title reference (the text between
the \`\`). If you need to do inline markup on part of a stanza title,
only put the \`\` around the part that does not need the markup::
| *stanza title* `3`
| But can a bee be said to be
If you need to format the entire stanza title, use the following work
around::
.. role:: title
| *stanza title 3* :title:`x`
| But can a bee be said to be
| or not to be an entire bee,
| when half the bee is not a bee,
| due to some ancient injury?
Number lines
------------
In order to number the lines in a verse, import the number_verse.xsl
stylehseet, and set the parameter ``'number-verse'`` to the appropriate
increment.
::
<!--numbers every 5th line-->
<xsl:import href="xsl_fo/docutils_to_fo.xsl"/>
<xsl:import href="xsl_fo/custom/number_verse.xsl"/>
<xsl:param name="number-verse">5</xsl:param>
Make numers closer to line
----------------------------
By default, docutils to fo puts the number to the very right of the
margin. Set the attribute ``'right-indent'`` to a positive number to make the
numbers appear closer to the lines::
<xsl:attribute-set name="outer-line-block">
<xsl:attribute name="right-indent">20mm</xsl:attribute>
</xsl:attribute-set>
Keeping the lines on the same page
-----------------------------------
If the line block is relatively short, use the ``'keep-on-same-page'``
property.
::
<xsl:attribute-set name="outer-line-block">
<xsl:attribute name="keep-together.within-page">always</xsl:attribute>
</xsl:attribute-set>
If the line block is long, using this property could lead to
huge space on a page.
.. note a work around is to create a completely new stanza, and use
.. keep-on-same-page property.
Creating space between stanzas
-------------------------------
Use a blank line to control the space between stanzas. There is no
othe way to control space. The rst2xml.py utility marks a new set of
line blocks when it detects a new indentation. In contrast, real verse
is marked by the space between stanzas.
=================
Definition List
=================
Formatting the definition list
-------------------------------
Use the attribute set ``'definition-list-block'`` to change the
characteristics of the entire definition.
::
<xsl:attribute-set name="definition-list-block" >
<xsl:attribute name="space-after">12pt</xsl:attribute>
<xsl:attribute name="space-before">12pt</xsl:attribute>
</xsl:attribute-set>
Formatting space between items
-------------------------------
An item consists of both the term and definition. Use the
``'definition-list-item-block'`` attribute set.
::
<xsl:attribute-set name="definition-list-item-block" >
<xsl:attribute name="space-before">12pt</xsl:attribute>
</xsl:attribute-set>
Formatting the term
---------------------
Use the ``'definition-term-block'`` to change the properties of the term, such
as the space below::
<xsl:attribute-set name="definition-term-block">
<xsl:attribute name="font-weight">bold</xsl:attribute>
</xsl:attribute-set>
Formatting the definition
--------------------------
The definition can consist of more than one paragraph. To format each of these
paragraphs, and the space before or after, use the ``'definition-block'`` attribute set::
<xsl:attribute-set name="definition-block">
</xsl:attribute-set>
Formatting the classifier
-------------------------
Use the ``'classifier-inline'`` attribute set to format the classifier::
<xsl:attribute-set name="classifier-inline">
<xsl:attribute name="font-style">italic</xsl:attribute>
</xsl:attribute-set>
Formatting the paragraphs
---------------------------
The ``'definition-list-paragraph'`` attribute-set formats the parapgraphs in
the definition::
<xsl:attribute-set name="definition-paragraph-block">
<xsl:attribute name="space-before">12pt</xsl:attribute>
<xsl:attribute name="start-indent">30pt</xsl:attribute>
</xsl:attribute-set>
============
Field List
============
Formatting the field list
----------------------------
Use the ``'field-list-block'`` attribute set to format the space after and
before, the left and right indent, and any other property you want to
set on the list, such as font for font-size::
<xsl:attribute-set name="field-list-block" >
<xsl:attribute name="start-indent">0mm</xsl:attribute>
<xsl:attribute name="provisional-distance-between-starts">30mm</xsl:attribute>
<xsl:attribute name="space-before">12pt</xsl:attribute>
<xsl:attribute name="space-after">12pt</xsl:attribute>
</xsl:attribute-set>
To format space between field and text change the
``'provisional-distance-between-starts'`` attribute::
<xsl:attribute name="provisional-distance-between-starts">40mm</xsl:attribute>
format items
-------------------------------
Use the ``'field-list-items'`` attribute set.
::
<xsl:attribute-set name="field-list-item">
<xsl:attribute name="space-before">12pt</xsl:attribute>
</xsl:attribute-set>
Formatting the field names
---------------------------
Use the ``'field-list-item-label-block'`` attribute-set, which can take any inline
properties::
<xsl:attribute-set name="field-list-item-label-block">
<xsl:attribute name="font-weight">bold</xsl:attribute>
</xsl:attribute-set>
Formatting the paragraphs
----------------------------
Use the ``'field-body-block'`` attribute-set to format the text of
the bullet list. This identifier can take any block property::
<xsl:attribute-set name="field-body-block">
<xsl:attribute name="space-after">12pt</xsl:attribute>
</xsl:attribute-set>
Note that using the ``'space-before'`` property has the same effect as
controlling the space between each paragraph, without putting unwated space
before the first paragraph.
============
Option List
============
Formatting the option list format
-----------------------------------
The option list can either be formatted as a list, with the options as
labels to the left of the description; or as a definition list, with
the options serving as the terms, and the descriptions in a paragraph
right below. For an option list with lenghty options, a definition
list may work better.
By default, the stylesheets process the options list as a list. If you wish to
format them as a definition list, use the following::
<xsl:stylesheet
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:fo="http://www.w3.org/1999/XSL/Format"
version="1.1"
>
<xsl:import href="xsl_fo/docutils_to_fo.xsl"/>
<xsl:import href="xsl_fo/custom/option_list_as_definition.xsl"/>
</xsl:stylesheet>
Default (as list)
------------------
Choosing the options separator
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
By default, the docutils to FO convertor uses a comma to separate
options. To change the default, use the ``'options-separator'``
parameter::
<xsl:param name="options-separator">| </xsl:param>
Formatting the option list
^^^^^^^^^^^^^^^^^^^^^^^^^^^
Use the ``'option-list-block'`` attribute-set to format the space after and
before, the left and right indent, and any other property you want to
set on the list, such as font for font-size::
<xsl:attribute-set name="option-list-block">
<xsl:attribute name="start-indent">0mm</xsl:attribute>
<xsl:attribute name="provisional-distance-between-starts">50mm</xsl:attribute>
<xsl:attribute name="space-before">12pt</xsl:attribute>
<xsl:attribute name="space-after">12pt</xsl:attribute>
</xsl:attribute-set>
To format space between option and text, chance the
``'provisional-distance-between-starts'`` attribute::
<xsl:attribute name="provisional-distance-between-starts">40mm</xsl:attribute>
Formating items
^^^^^^^^^^^^^^^^
Use the ``'option-list-item'`` attribute set.
::
<xsl:attribute-set name="option-list-item">
<xsl:attribute name="space-before">12pt</xsl:attribute>
</xsl:attribute-set>
Formatting the options without the argument
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Use the ``'option-inline'`` attribute-set to format only the option without the
arguments of the options. This identifier can take any inline
properties::
<xsl:attribute-set name="option-inline">
<xsl:attribute name="font-family">monospace</xsl:attribute>
</xsl:attribute-set>
.. option-group-block
Formatting the arguments of the options
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Use the ``'option-argument-inline'`` attribute-set to format just the option of
the arugment. This identifier can take any inline properties::
<xsl:attribute-set name="option-argument-inline">
<xsl:attribute name="font-family">monospace</xsl:attribute>
<xsl:attribute name="font-style">italic</xsl:attribute>
</xsl:attribute-set>
Formatting the description
^^^^^^^^^^^^^^^^^^^^^^^^^^^
Use the ``'option-list-item-body'`` attribue set to format the text of
the option list.
Formatting the paragraphs
^^^^^^^^^^^^^^^^^^^^^^^^^^
Use the ``'option-list-item-body-block'`` attribute-set to format the text of
the list. This identifier can take any block property::
<xsl:attribute-set name="option-list-item-body-block">
</xsl:attribute-set>
Note that using the ``'space-before'`` property has the same effect as
controlling the space between each paragraph, without putting unwated space
before the first paragraph.
As definition list
------------------
Formatting the option list
^^^^^^^^^^^^^^^^^^^^^^^^^^^
Use the ``'option-list-definition-block'`` to format the entire option list::
<xsl:attribute-set name="option-list-definition-block">
<xsl:attribute name="space-before">12pt</xsl:attribute>
<xsl:attribute name="space-after">12pt</xsl:attribute>
</xsl:attribute-set>
Formatting each item
^^^^^^^^^^^^^^^^^^^^^
Use the attribute-set ``'option-list-item-block'``.
::
<xsl:attribute-set name="option-list-item-block">
<xsl:attribute name="space-before">8pt</xsl:attribute>
</xsl:attribute-set>
Formatting the options
^^^^^^^^^^^^^^^^^^^^^^^^
Use the ``'option-group-block'`` attribute set::
<xsl:attribute-set name="option-group-block">
<xsl:attribute name="keep-with-next">always</xsl:attribute>
</xsl:attribute-set>
Formatting the description
^^^^^^^^^^^^^^^^^^^^^^^^^^^
The description contains one or more paragraphs. To format all of these at
once, use the ``'option-list-description-block'`` attribute set::
<xsl:attribute-set name="option-list-description-block">
<xsl:attribute name="start-indent">16pt</xsl:attribute>
<xsl:attribute name="space-before">8pt</xsl:attribute>
</xsl:attribute-set>
Fomratting the paragraphs in the description
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Use the ``'option-list-paragraph-block'``::
<xsl:attribute-set name="option-list-paragraph-block">
<xsl:attribute name="space-before">0pt</xsl:attribute>
</xsl:attribute-set>
Formatting the options without the argument
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Use the ``'option-inline'`` attribute-set. (See above for the default
section.)
Formatting the arguments of the options
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Use the ``'option-argument-inline'`` attribute-set. (See above in the default
section.)
=======
Inline
=======
emphasis
---------
Use the `emphasis-inline` attribute set to change the default behavior of the
emphsis element.
::
<xsl:template match="emphasis">
<fo:inline xsl:use-attribute-sets="emphasis-inline">
<xsl:apply-templates/>
</fo:inline>
</xsl:template>
strong
-------
::
<xsl:attribute-set name="strong-inline" >
<xsl:attribute name="font-weight">bold</xsl:attribute>
</xsl:attribute-set>
reference
----------
::
<xsl:attribute-set name="basic-link-inline" >
<xsl:attribute name="text-decoration">underline</xsl:attribute>
<xsl:attribute name="color">blue</xsl:attribute>
</xsl:attribute-set>
literal
--------
::
<xsl:attribute-set name="literal-inline">
<xsl:attribute name="font-family">monospace</xsl:attribute>
<xsl:attribute name="font-size">8</xsl:attribute>
<xsl:attribute name="white-space">pre</xsl:attribute>
</xsl:attribute-set>
title-reference
---------------
::
<xsl:attribute-set name="title-reference-inline" >
<xsl:attribute name="font-style">italic</xsl:attribute>
</xsl:attribute-set>
inline-links
------------
Change the parameter `internalo-link-type` to change the type of hyper link::
<!--whether to make internal links clickable ('link'),
refer to a page number ('page'), or both ('page-link')-->
<xsl:param name="internal-link-type">link</xsl:param>
============
Admonitions
============
Titles
-------
Each admonishment has its own title formed by the following parameters:
::
<xsl:param name="attention-title">Attention!</xsl:param>
<xsl:param name="caution-title">Caution!</xsl:param>
<xsl:param name="danger-title">!Danger!</xsl:param>
<xsl:param name="error-title">Error</xsl:param>
<xsl:param name="hint-title">Hint</xsl:param>
<xsl:param name="important-title">Important</xsl:param>
<xsl:param name="note-title">Note</xsl:param>
<xsl:param name="tip-title">Tip</xsl:param>
<xsl:param name="warning-title">Warning!</xsl:param>
To change the default titles, simply change the parameters.
Formating the the title blocks
------------------------------------
Each title block inherits its property from the `default-admonition-title-block`
attribute-set.
::
<xsl:attribute-set name="default-admonition-title-block">
<xsl:attribute name="space-after">10pt</xsl:attribute>
<xsl:attribute name="font-size">larger</xsl:attribute>
<xsl:attribute name="color">red</xsl:attribute>
</xsl:attribute-set>
The attribute sets for each admonition tite, are logically the name, followed
by the string 'title-block'.
::
<xsl:attribute-set name="attention-title-block" use-attribute-sets="default-admonition-title-block">
</xsl:attribute-set>
The exact names are:
- attention-title-block
- caution-title-block
- danger-title-block
- error-title-block
- hint-title-block
- important-title-block
- note-title-block
- tip-title-block
- admonition-custom-title-block
- warning-title-block
Formating the the admonition blocks
------------------------------------
Each admonition is wrapped in a block. Each block inherits its characteristics
from the default::
<xsl:attribute-set name="default-admonition-outer-block">
<xsl:attribute name="border-style">solid</xsl:attribute>
<xsl:attribute name="border-width">1px</xsl:attribute>
<xsl:attribute name="padding">6pt</xsl:attribute>
<xsl:attribute name="keep-together.within-page">always</xsl:attribute>
</xsl:attribute-set>
Changing the attributes in this attribute set changes them for all
admonitions.
Each admonition has its own attribute-set, the name of the admonition followed
by the string '-block.'::
<xsl:attribute-set name="attention-block" use-attribute-sets="default-admonition-outer-block">
</xsl:attribute-set>
<xsl:attribute-set name="caution-block" use-attribute-sets="default-admonition-outer-block">
</xsl:attribute-set>
<!--etc-->
The names of these blocks are:
- attention-block
- caution-block
- danger-block
- error-block
- hint-block
- important-block
- note-block
- tip-block
- admonition-custom-block
- warning-block
Formatting the paragraphs within the admonition block
-------------------------------------------------------
Use the attribute-set `admonition-paragraphs-block` to format paragraphs::
<xsl:attribute-set name="admonition-paragraph-block">
<xsl:attribute name="space-before">12pt</xsl:attribute>
</xsl:attribute-set>
================
Body Directives
================
topic
------
Formatting the complete block
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
::
<xsl:attribute-set name="topic-block">
<xsl:attribute name="space-after">12pt</xsl:attribute>
<xsl:attribute name="space-before">12pt</xsl:attribute>
</xsl:attribute-set>
Formatting the title
^^^^^^^^^^^^^^^^^^^^^
::
<xsl:attribute-set name="topic-title-block">
<xsl:attribute name="font-weight">bold</xsl:attribute>
<xsl:attribute name="space-after">12pt</xsl:attribute>
</xsl:attribute-set>
Formatting the paragraphs
^^^^^^^^^^^^^^^^^^^^^^^^^
sidebar
-------
Unfortunately, sidebars can't be produced in XSLFO, at least not easily with
the curren renderers. For that reason, the stylesheets render a sidebar
similar to a block quote, not on the side of the page.
Formatting the complete block
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
::
<xsl:attribute-set name="sidebar-block">
<xsl:attribute name="space-after">12pt</xsl:attribute>
<xsl:attribute name="space-before">12pt</xsl:attribute>
<xsl:attribute name="background-color">#FFFFF0</xsl:attribute>
<xsl:attribute name="padding">6pt</xsl:attribute>
<xsl:attribute name="start-indent">10mm</xsl:attribute>
<xsl:attribute name="end-indent">40mm</xsl:attribute>
</xsl:attribute-set>
Formatting the title
^^^^^^^^^^^^^^^^^^^^^
::
<xsl:attribute-set name="sidebar-title-block">
<xsl:attribute name="font-weight">bold</xsl:attribute>
<xsl:attribute name="space-after">12pt</xsl:attribute>
</xsl:attribute-set>
Formatting the subtitle
^^^^^^^^^^^^^^^^^^^^^^^^
::
<xsl:attribute-set name="sidebar-subtitle-block">
<xsl:attribute name="font-weight">bold</xsl:attribute>
<xsl:attribute name="space-after">12pt</xsl:attribute>
</xsl:attribute-set>
Formatting the paragraphs
^^^^^^^^^^^^^^^^^^^^^^^^^^
::
<xsl:attribute-set name="sidebar-paragraph-block">
<xsl:attribute name="space-before">12pt</xsl:attribute>
</xsl:attribute-set>
Rubric
------
::
<xsl:attribute-set name="rubric-block">
<xsl:attribute name="text-align">center</xsl:attribute>
<xsl:attribute name="font-size">larger</xsl:attribute>
<xsl:attribute name="color">red</xsl:attribute>
</xsl:attribute-set>
Epigraph
--------
Formatting the complete block
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
::
<xsl:attribute-set name="epigraph-outer-block">
<xsl:attribute name="start-indent">20mm</xsl:attribute>
<xsl:attribute name="end-indent">20mm</xsl:attribute>
<xsl:attribute name="space-after">12pt</xsl:attribute>
<xsl:attribute name="space-before">12pt</xsl:attribute>
<xsl:attribute name="text-align">right</xsl:attribute>
<xsl:attribute name="font-style">italic</xsl:attribute>
</xsl:attribute-set>
Formatting the paragraphs
^^^^^^^^^^^^^^^^^^^^^^^^^^
::
<xsl:attribute-set name="epigraph-paragraph-block">
<xsl:attribute name="start-indent">inherit</xsl:attribute>
<xsl:attribute name="end-indent">inherit</xsl:attribute>
<xsl:attribute name="space-before">12pt</xsl:attribute>
</xsl:attribute-set>
Formatting the attribution
^^^^^^^^^^^^^^^^^^^^^^^^^^^
::
<xsl:attribute-set name="epigraph-attribution-block">
<xsl:attribute name="text-align">right</xsl:attribute>
</xsl:attribute-set>
Highlights
-----------
Formatting the complete block
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
::
<xsl:attribute-set name="highlights-outer-block">
<xsl:attribute name="start-indent">20mm</xsl:attribute>
<xsl:attribute name="end-indent">20mm</xsl:attribute>
<xsl:attribute name="space-after">12pt</xsl:attribute>
<xsl:attribute name="space-before">12pt</xsl:attribute>
</xsl:attribute-set>
Formatting the paragraphs
^^^^^^^^^^^^^^^^^^^^^^^^^^
::
<xsl:attribute-set name="highlights-paragraph-block">
<xsl:attribute name="start-indent">inherit</xsl:attribute>
<xsl:attribute name="end-indent">inherit</xsl:attribute>
<xsl:attribute name="space-before">12pt</xsl:attribute>
</xsl:attribute-set>
Pull Quotes
------------
Formatting the complete block
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
::
<xsl:attribute-set name="pull-quote-paragraph-block">
<xsl:attribute name="start-indent">inherit</xsl:attribute>
<xsl:attribute name="end-indent">inherit</xsl:attribute>
<xsl:attribute name="space-before">12pt</xsl:attribute>
</xsl:attribute-set>
Formatting the paragraphs
^^^^^^^^^^^^^^^^^^^^^^^^^^
::
<xsl:attribute-set name="pull-quote-first-paragraph-block" use-attribute-sets="block-quote-paragraph-block">
<xsl:attribute name="space-before">0pt</xsl:attribute>
</xsl:attribute-set>
Formatting the attribution
^^^^^^^^^^^^^^^^^^^^^^^^^^^
::
<xsl:attribute-set name="pull-quote-attribution-block">
<xsl:attribute name="text-align">right</xsl:attribute>
</xsl:attribute-set>
Container
---------
Formatting the complete block
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
::
<xsl:attribute-set name="container-outer-block">
<xsl:attribute name="space-after">12pt</xsl:attribute>
<xsl:attribute name="space-before">12pt</xsl:attribute>
</xsl:attribute-set>
Formatting the paragraphs
^^^^^^^^^^^^^^^^^^^^^^^^^^^
::
<xsl:attribute-set name="container-paragraph-block">
<xsl:attribute name="space-before">12pt</xsl:attribute>
</xsl:attribute-set>
Math
-----
Formatting the complete block
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
The math block does not consist of paragraphs. It either consists of literal
text, or MathML markup. To format the contents in either case::
<xsl:attribute-set name="mathml-block">
<xsl:attribute name="space-before">12pt</xsl:attribute>
<xsl:attribute name="space-after">12pt</xsl:attribute>
</xsl:attribute-set>
====================
Images and Figures
====================
An image conssits of just the image. A figure consists of the image, with an
option for alternative text, a caption, and a legend. The legend can consist
of body elements, such as paragraphs or a table.
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.
Formatting the entire figure block
-----------------------------------
::
<xsl:attribute-set name="figure-block">
</xsl:attribute-set>
Formatting the entire caption block
------------------------------------
::
<xsl:attribute-set name="figure-caption-block">
<xsl:attribute name="space-before">12pt</xsl:attribute>
<xsl:attribute name="space-after">12pt</xsl:attribute>
<xsl:attribute name="font-weight">bold</xsl:attribute>
<xsl:attribute name="font-size">smaller</xsl:attribute>
<xsl:attribute name="text-align">center</xsl:attribute>
</xsl:attribute-set>
Formatting the entire legend block
-----------------------------------
::
<xsl:attribute-set name="figure-legend-block">
<xsl:attribute name="space-before">12pt</xsl:attribute>
<xsl:attribute name="space-after">12pt</xsl:attribute>
</xsl:attribute-set>
Formatting the paragraphs in the legend block
----------------------------------------------
::
<xsl:attribute-set name="legend-paragraph-block">
<xsl:attribute name="space-before">12pt</xsl:attribute>
</xsl:attribute-set>
Formatting the first paragraph in the legend block
---------------------------------------------------
::
<xsl:attribute-set name="legend-first-paragraph-block" use-attribute-sets="legend-paragraph-block">
<xsl:attribute name="space-before">0pt</xsl:attribute>
</xsl:attribute-set>
Formatting the entire image block
----------------------------------
The image block contains no text or othe elements. None-the-less, it is
wrapped in a block that allows formatting, including space before or after,
alignment, and borders.
::
<xsl:attribute-set name="image-block">
</xsl:attribute-set>
=======
Tables
=======
Use the attribute-set `table-block-container` to format all the
characteristics of a table.
::
<xsl:attribute-set name="table-block-container">
<xsl:attribute name="space-before">12pt</xsl:attribute>
<xsl:attribute name="space-after">12pt</xsl:attribute>
</xsl:attribute-set>
Changing the widths of the columns
------------------------------------
The formatter uses the columns values generated by the rst2xml.py
script to determine the width of the columns. In order to change this
default, re-write the table template::
<!--sets the second two columns to twice the first column-->
<xsl:template match="table[not(@classes)]/tgroup">
<fo:table-column column-number="1" column-width="proportional-column-width(5)"/>
<fo:table-column column-number="2" column-width="proportional-column-width(10)"/>
<fo:table-column column-number="3" column-width="proportional-column-width(10)"/>
<xsl:apply-templates/>
</xsl:template>
Formatting captions
----------------------
::
<xsl:attribute-set name="caption-block">
<xsl:attribute name="text-align">center</xsl:attribute>
<xsl:attribute name="space-before">6pt</xsl:attribute>
<xsl:attribute name="space-after">6pt</xsl:attribute>
</xsl:attribute-set>
Placement of the caption
--------------------------
Use the parameter to place the the caption either at the top or bottom of the
table::
<!--changes placement of caption to top of table-->
<xsl:param name="table-title-placement">bottom</xsl:param>
Formatting the table header
----------------------------
To format all of the cells in the header, use the `table-header`
attribute-set.
::
<xsl:attribute-set name="table-header">
<!--increases font size-->
<xsl:attribute name="font-size">14/xsl:attribute>
</xsl:attribute-set>
Formatting the table header cells
-----------------------------------
Use the ``'table-header-cell'`` attribute-set to format the cells in the
heading. Note that this attribute set inherits the propertis of the
default-cell attribute set (shown below).
::
<xsl:attribute-set name="table-header-cell" use-attribute-sets="default-cell">
<xsl:attribute name="border-bottom">solid black 2px</xsl:attribute>
</xsl:attribute-set>
Formatting the paragraphs in the table header
----------------------------------------------
.. you can probably do all the formatting in table-header-cell
::
<xsl:attribute-set name="table-header-block">
</xsl:attribute-set>
Formatting the table body
-------------------------
Use the `table-body` attribute-set to format all of the table body::
<xsl:attribute-set name="table-body">
</xsl:attribute-set>
Fromatting the rows
-------------------
The attribute-set `table-row` formats the table row. Note that the defaults
has the attribute "keep-together.within-page" set to "always" so that rows do
not split across pages.
::
<xsl:attribute-set name="table-row">
<xsl:attribute name="keep-together.within-page">always</xsl:attribute>
</xsl:attribute-set>
Formatting the cells in the body
---------------------------------
The cells are formatted with the `table-cell` attribute-set. This attribute
set inherits its properties from the `default-table-cell`.
::
<xsl:attribute-set name="table-cell" use-attribute-sets="default-cell">
</xsl:attribute-set>
<xsl:attribute-set name="default-cell">
<xsl:attribute name="border">solid black 1px</xsl:attribute>
<xsl:attribute name="padding">1em</xsl:attribute>
<xsl:attribute name="border-collapse">collapse</xsl:attribute>
</xsl:attribute-set>
.. |RST| replace:: reStructuredText
|