-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathlayout.xml
65 lines (57 loc) · 2.13 KB
/
layout.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<Layout
xmlns="urn:speedata.de:2009/publisher/en"
xmlns:sd="urn:speedata:2009/publisher/functions/en">
<Options ignoreeol="yes" crop="3mm"/>
<LoadFontfile name="CrimsonPro-Regular" filename="CrimsonPro-Regular.ttf" />
<LoadFontfile name="CrimsonPro-Bold" filename="CrimsonPro-Bold.ttf" />
<LoadFontfile name="CrimsonPro-Italic" filename="CrimsonPro-Italic.ttf" />
<DefineFontalias existing="CrimsonPro-Regular" alias="regular"/>
<DefineFontalias existing="CrimsonPro-Italic" alias="italic"/>
<DefineFontalias existing="CrimsonPro-Bold" alias="bold"/>
<!-- text is the default font face -->
<DefineFontfamily name="text" fontsize="10" leading="12">
<Regular fontface="regular"/>
<Italic fontface="italic"/>
<Bold fontface="bold"/>
</DefineFontfamily>
<DefineFontfamily name="title" fontsize="14" leading="16">
<Regular fontface="bold"/>
</DefineFontfamily>
<Record element="data">
<PlaceObject>
<Textblock>
<Paragraph fontfamily="title">
<Value>Text and markup from the CDATA section:</Value>
</Paragraph>
<Paragraph><Value select="sd:decode-html(html)"/></Paragraph>
</Textblock>
</PlaceObject>
<PlaceObject>
<Textblock>
<Paragraph fontfamily="title">
<Value>Text and markup from the data file:</Value>
</Paragraph>
<ForAll select="text">
<Paragraph><Value select="."/></Paragraph>
</ForAll>
</Textblock>
</PlaceObject>
<PlaceObject>
<Textblock>
<Paragraph fontfamily="title">
<Value>Text and markup from the layout file:</Value>
</Paragraph>
<Paragraph><Value>A </Value><I><Value>wonderful</Value></I><Value> serenity has </Value><B><Value>taken possession</Value></B><Value> of my entire soul,</Value></Paragraph>
<Ul>
<Li><Value>like these</Value></Li>
<Li><Value>of spring</Value></Li>
<Li><Value>which I enjoy</Value></Li>
</Ul>
<Paragraph>
<Value>& # \ { } %</Value>
</Paragraph>
</Textblock>
</PlaceObject>
</Record>
</Layout>