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
|
#copyright ReportLab Inc. 2000
#see rllicense.txt for license details
#history http://cvs.sourceforge.net/cgi-bin/cvsweb.cgi/docs/tools/stylesheet.py?cvsroot=reportlab
#$Header$
#standard stylesheet for our manuals
from reportlab.lib.styles import StyleSheet1, ParagraphStyle
from reportlab.lib.enums import TA_CENTER, TA_LEFT, TA_RIGHT, TA_JUSTIFY
from reportlab.lib import colors
def getStyleSheet():
"""Returns a stylesheet object"""
stylesheet = StyleSheet1()
stylesheet.add(ParagraphStyle(name='Normal',
fontName='Times-Roman',
fontSize=10,
leading=12,
spaceBefore=6)
)
stylesheet.add(ParagraphStyle(name='Comment',
fontName='Times-Italic')
)
stylesheet.add(ParagraphStyle(name='Indent1',
leftIndent=36,
firstLineIndent=0)
)
stylesheet.add(ParagraphStyle(name='BodyText',
parent=stylesheet['Normal'],
spaceBefore=6)
)
stylesheet.add(ParagraphStyle(name='Italic',
parent=stylesheet['BodyText'],
fontName = 'Times-Italic')
)
stylesheet.add(ParagraphStyle(name='Heading1',
parent=stylesheet['Normal'],
fontName = 'Times-Bold',
alignment=TA_CENTER,
fontSize=18,
leading=22,
spaceAfter=6),
alias='h1')
stylesheet.add(ParagraphStyle(name='Heading2',
parent=stylesheet['Normal'],
fontName = 'Times-Bold',
fontSize=14,
leading=17,
spaceBefore=12,
spaceAfter=6),
alias='h2')
stylesheet.add(ParagraphStyle(name='Heading3',
parent=stylesheet['Normal'],
fontName = 'Times-BoldItalic',
fontSize=12,
leading=14,
spaceBefore=12,
spaceAfter=6),
alias='h3')
stylesheet.add(ParagraphStyle(name='Heading4',
parent=stylesheet['Normal'],
fontName = 'Times-BoldItalic',
spaceBefore=10,
spaceAfter=4),
alias='h4')
stylesheet.add(ParagraphStyle(name='Title',
parent=stylesheet['Normal'],
fontName = 'Times-Bold',
fontSize=48,
leading=56,
spaceAfter=72,
alignment=TA_CENTER
),
alias='t')
stylesheet.add(ParagraphStyle(name='Subtitle',
parent=stylesheet['Normal'],
fontName = 'Times-Bold',
fontSize=32,
leading=56,
spaceAfter=72,
alignment=TA_CENTER
),
alias='subtitle')
stylesheet.add(ParagraphStyle(name='Bullet',
parent=stylesheet['Normal'],
firstLineIndent=0,
leftIndent=36,
bulletIndent=18,
spaceBefore=0,
bulletFontName='Symbol'),
alias='bu')
stylesheet.add(ParagraphStyle(name='Definition',
parent=stylesheet['Normal'],
firstLineIndent=0,
leftIndent=36,
bulletIndent=0,
spaceBefore=6,
bulletFontName='Times-BoldItalic'),
alias='df')
stylesheet.add(ParagraphStyle(name='Code',
parent=stylesheet['Normal'],
fontName='Courier',
textColor=colors.navy,
fontSize=8,
leading=8.8,
leftIndent=36,
firstLineIndent=0))
stylesheet.add(ParagraphStyle(name='FunctionHeader',
parent=stylesheet['Normal'],
fontName='Courier-Bold',
fontSize=8,
leading=8.8))
stylesheet.add(ParagraphStyle(name='DocString',
parent=stylesheet['Normal'],
fontName='Courier',
fontSize=8,
leftIndent=18,
leading=8.8))
stylesheet.add(ParagraphStyle(name='DocStringIndent',
parent=stylesheet['Normal'],
fontName='Courier',
fontSize=8,
leftIndent=36,
leading=8.8))
stylesheet.add(ParagraphStyle(name='URL',
parent=stylesheet['Normal'],
fontName='Courier',
textColor=colors.navy,
alignment=TA_CENTER),
alias='u')
stylesheet.add(ParagraphStyle(name='Centred',
parent=stylesheet['Normal'],
alignment=TA_CENTER
))
stylesheet.add(ParagraphStyle(name='Caption',
parent=stylesheet['Centred'],
fontName='Times-Italic'
))
return stylesheet
|