文字を均等配置

ファイル名 : str09.pxdx

textlength属性

<?xml version="1.0" encoding="utf-8"?>
<!-- 用紙サイズ「A4」用紙方向「縦」 -->
<pxd paper-type="a4" orientation="portrait" title="文字">
<page>
   <!-- 値10の時1mmになるように設定 -->
   <svg x="0" y="0" width="29.7cm" height="21cm" viewBox="0 0 2970 2100">
   
      <!-- 文の長さが12cmになるように設定 -->
      <text x="400" y="500" font-size="200" fill="black" stroke="none" textlength="1200">文字の例</text>
      
      <!-- 中心線 -->
      <line x1="400" y1="500" x2="1600" y2="500" stroke="black" stroke-width="1"/>

      
      <!-- 文の長さが12cmになるように設定 -->
      <text font-size="200" fill="black" stroke="none">
      <tspan x="400" y="1000" textlength="1200">文字の例</tspan>
      <tspan x="400" y="1300" textlength="1200">文字の例</tspan>
      </text>
      
      <!-- 下線 -->
      <line x1="400" y1="1000" x2="1600" y2="1000" stroke="black" stroke-width="1"/>
      <line x1="400" y1="1300" x2="1600" y2="1300" stroke="black" stroke-width="1"/>
   </svg>
</page>
</pxd>