equal
deleted
inserted
replaced
|
1 <?xml version="1.0"?> |
|
2 <svg width="10cm" height="3cm" viewBox="0 0 1000 300" |
|
3 xmlns="http://www.w3.org/2000/svg" version="1.2" baseProfile="tiny" |
|
4 xmlns:xlink="http://www.w3.org/1999/xlink"> |
|
5 <defs> |
|
6 <text xml:id="ReferencedText"> |
|
7 Referenced character data |
|
8 </text> |
|
9 </defs> |
|
10 <desc>Example tref01 - inline vs reference text content</desc> |
|
11 <text x="100" y="100" font-size="45" fill="blue" > |
|
12 Inline character data |
|
13 </text> |
|
14 <text x="100" y="200" font-size="45" fill="red" > |
|
15 <tref xlink:href="#ReferencedText"/> |
|
16 </text> |
|
17 <!-- Show outline of canvas using 'rect' element --> |
|
18 <rect x="1" y="1" width="998" height="298" |
|
19 fill="none" stroke="blue" stroke-width="2" /> |
|
20 </svg> |