<?xml version="1.0"?>

<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 400 400">
  <defs>
    <path id="p" d="m 5 200 l 100 -20 s 50 50 100 0 s 50 50 100 0" fill="none" stroke="red" stroke-width="1"/>
  </defs>
  <rect x="0" y="0" width="400" height="400" stroke="blue" stroke-width="1" fill="none"/>
  <use xlink:href="#p"/>
  <use y="100" xlink:href="#p"/>
  <g font-size="20pt">
    <text x="370" y="5" font-size="36pt" font-family="'Arial Unicode MS'" writing-mode="tb">我真喜欢SVG！</text>
    <text>
      <textPath xlink:href="#p">See my text flow along a path</textPath>
    </text>
    <text transform="translate(0 100)">
      <textPath xlink:href="#p" startOffset="50%">Short text</textPath>
    </text>
  </g>
</svg>

