0
由於我在使用一些基本的XSLT而苦苦掙扎,因此我需要一些幫助。我已經使用的變量在許多之前的方式,但我需要能夠設置我的佈局屬性值條件:XSLT有條件地設置屬性值
<xsl:variable name="VAR_pagewidth" select="'21cm'"/>
<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">
<fo:layout-master-set>
<fo:simple-page-master master-name="first-page" page-height="29.7cm" page-width="$VAR_pagewidth" margin-top="0.5cm" margin-bottom="1cm">
<fo:region-body margin-top="15mm" margin-left="16mm" margin-right="26mm" margin-bottom="45mm"/>
<fo:region-before region-name="header-first" extent="0mm" margin-left="1mm" margin-right="0mm" />
<fo:region-after region-name="footer-normal" extent="42mm" />
<fo:region-end border-top-width="5pt" region-name="right-sidebar" writing-mode="tb-rl" extent="10mm" />
</fo:simple-page-master>
</fo:layout-master-set>
我已經設置頁面寬度可變,但這個例子中是行不通的。我在網上看了如何做,但找不到任何東西。有人能告訴我正確的方法嗎?
謝謝。
謝謝!很簡單,當你知道如何。我看看你將來提供的參考URL。 – Wingmiester