文字に下線を引く、取り消し線を引く

ファイル名 : str11.pxdx

<?xml version="1.0" encoding="utf-8"?>
<!-- 用紙サイズ「A4」用紙方向「縦」 -->
<pxd paper-type="a4" orientation="portrait" title="文字">
<page>
   <!-- 値10の時1mmになるように設定 -->
   <svg x="0" y="0" width="21cm" height="29.7cm" viewBox="0 0 2100 2970">
      <!-- 下線 -->
      <text x="400" y="500" font-size="200" fill="black" stroke="none" text-decoration="underline">文字の例</text>
      <!-- 取り消し線 -->
      <text x="400" y="800" font-size="200" fill="red" stroke="none" text-decoration="line-through">文字の例</text>

      <!-- 下線 -->
      <text x="400" y="1700" font-size="200" fill="black" stroke="none" text-decoration="underline" textlength="1000" rotate="45">文字の例</text>
      <!-- 取り消し線 -->
      <text x="400" y="1400" font-size="200" fill="red" stroke="none" text-decoration="line-through" textlength="1000">文字の例</text>

      <!-- 下線 -->
      <text x="400" y="1000" font-size="200" fill="black" stroke="none"><tspan text-decoration="underline">文字の例</tspan></text>
   </svg>
</page>
</pxd>