スペースを埋める 2 つの個別のテンプレートを作成する必要があります。1 つは 49 のスペースを占有し、もう 1 つは 549 のスペースを占有します。うまくいくかもしれないと思うテンプレートを見つけましたが、それが何をしているのか本当にわかりません.xmlは初めてです。
<!-- Template Filler-->
<xsl:template name="Filler">
<xsl:param name="fillercount" select="1"/>
<xsl:if test="$fillercount > 0">
<table class="tabledetails">
<tr>
<td>
<xsl:value-of select="translate(' ', ' ', ' ')"/>
</td>
</tr>
</table>
<xsl:call-template name="Filler">
<xsl:with-param name="fillercount" select="$fillercount - 1"/>
</xsl:call-template>
</xsl:if>
</xsl:template>
これは私が必要とするものですか、それを呼び出すか、select="49"
それとも間違って読んでいますか。これが今必要なものである場合、どうすればこれを達成できますか?