-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathimages.xml
More file actions
106 lines (94 loc) · 3.51 KB
/
images.xml
File metadata and controls
106 lines (94 loc) · 3.51 KB
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
<?xml version="1.0"?>
<!DOCTYPE riscos-prm PUBLIC "-//Gerph//DTD PRM documentation 1.03//EN"
"http://gerph.org/dtd/103/prm.dtd">
<riscos-prm>
<chapter title="Images">
<section title="Introduction">
<p>
This document tests the use of image elements.
</p>
</section>
<section title="Inline images">
<p>This is what a cog looks like: <image src="cog.svg" type='svg' width="32"/>. Green isn't it?</p>
<p>It doesn't look good, so don't try doing that.</p>
</section>
<section title="Image types">
<category title="SVG">
<p><image src="cog.svg" type='svg' width="128"/></p>
</category>
<category title="PNG">
<p><image src="cog.png" type='png' width="128"/></p>
</category>
</section>
<section title="Image sizes">
<subsection title="SVG">
<category title="SVG: no width and height">
<p><image src="cog.svg" type='svg'/></p>
</category>
<category title="SVG: width set to 64 pixels">
<p><image src="cog.svg" type='svg' width="64"/></p>
</category>
<category title="SVG: height set to 64 pixels">
<p><image src="cog.svg" type='svg' height="64"/></p>
</category>
</subsection>
<subsection title="PNG">
<category title="PNG: no width or height">
<p><image src="cog.png" type='png'/></p>
</category>
<category title="PNG: width set to 64 pixels">
<p><image src="cog.png" type='png' width="64"/></p>
</category>
<category title="PNG: height set to 64 pixels">
<p><image src="cog.png" type='png' height="64"/></p>
</category>
</subsection>
</section>
<section title="Captions">
<category title="Caption present">
<p><image src="cog.png" type='png' width="128" caption="A cog image"/></p>
</category>
<category title="Long caption text">
<p><image src="cog.png" type='png' width="128" caption="Another image but with a longer caption"/></p>
</category>
<category title="Very long caption text">
<p><image src="cog.png" type='png' width="128" caption="Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Vestibulum lorem sed risus ultricies tristique. Malesuada fames ac turpis egestas integer eget aliquet nibh."/></p>
</category>
</section>
<section title="Multiple images">
<category title="Multiple in a single paragraph">
<p>
<image src="cog.png" type='png' width="64" caption="A cog image"/>
<image src="cog.png" type='png' width="64" caption="Another image but with a longer caption"/>
</p>
</category>
<category title="Separate paragraphs">
<p>
<image src="cog.png" type='png' width="64" caption="A cog image"/>
</p>
<p>
<image src="cog.png" type='png' width="64" caption="Another image but with a longer caption"/>
</p>
</category>
</section>
</chapter>
<!-- MetaData -->
<meta>
<maintainer>
<email name="Gerph" address="gerph@gerph.org" />
</maintainer>
<disclaimer>
<p>
© Gerph, 2022.
</p>
</disclaimer>
<history>
<revision number="1" author="Gerph" date="15 May 2022" title="Initial version">
<change>Some examples of image elements.</change>
</revision>
<revision number="2" author="Alan Robertson" date="20 Aug 2023" title="Small changes">
<change>Changed a couple of the image sizes to 64 pixels.</change>
</revision>
</history>
</meta>
</riscos-prm>