xsl-list
[Top] [All Lists]

Re: [xsl] XSLFO - create a special first page

2008-07-08 13:15:38
At 2008-07-08 13:08 -0700, Sarkup Sarkup wrote:
Suppose I have a parameter passed to the style sheet called test, if test='yes' only then I need to create this first page with wordings "Hello World". Can I do that?

<xsl:if test="$test='yes'">
  <page-sequence master-reference="whatever-page-geometry-you-have-set-up">
    <flow flow-name="whatever-the-name-of-your-region-body-is">
      <block text-align="center">Hello World</block>
    </flow>
  </page-sequence>
</xsl:if>

If you want that centred text to also be centred vertically, then be sure to have display-align="center" on the <region-body/> of your page geometry.

I hope this helps.

. . . . . . . . . . . . Ken

--
Upcoming XSLT/XSL-FO hands-on courses:      Wellington, NZ 2009-01
World-wide corporate, govt. & user group XML, XSL and UBL training
RSS feeds:     publicly-available developer resources and training
G. Ken Holman                 mailto:gkholman(_at_)CraneSoftwrights(_dot_)com
Crane Softwrights Ltd.          http://www.CraneSoftwrights.com/s/
Box 266, Kars, Ontario CANADA K0A-2E0    +1(613)489-0999 (F:-0995)
Male Cancer Awareness Nov'07  http://www.CraneSoftwrights.com/s/bc
Legal business disclaimers:  http://www.CraneSoftwrights.com/legal


--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--