18 lines
510 B
XML
18 lines
510 B
XML
<svg width="1000" height="300" viewBox="0 0 1000 300"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
<defs>
|
|
<text id="ReferencedText">
|
|
Referenced character data
|
|
</text>
|
|
</defs>
|
|
<text x="100" y="100" font-size="45" >
|
|
Inline character data
|
|
</text>
|
|
<text x="100" y="200" font-size="45" fill="red" >
|
|
<tref xlink:href="#ReferencedText"/>
|
|
</text>
|
|
<rect x="1" y="1" width="998" height="298"
|
|
fill="none" stroke-width="2" />
|
|
</svg>
|