Subject: RE: Include crop marks for the print manual in xsl
From: "Shailesh Shinde" <shailesh@xxxxxxxxxxxx>
Date: Fri, 21 Jul 2006 21:18:53 +0530
|
Thanks a lot!
I am using antenna house xsl-formatter.
I will work on possibility which you have mentioned.
Thanks,
Shailesh
-----Original Message-----
From: Ryan Lubben [mailto:ryanl@xxxxxxxxxxx]
Sent: Friday, July 21, 2006 8:24 PM
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject: RE: Include crop marks for the print manual in xsl
>>I have a requirement to include crop marks for the print manual in xsl.
>>Can anyone provide me related information how to introduce crop marks so
>>that the output pdf contains the same?
>>Is there any related example or references for the same?
If you aren't using XSL-Formatter or XEP you could create crop marks using a
background image.
<fo:simple-page-master master-name="Front_Cover" page-height="11.5in"
page-width="9.0in">
<fo:region-body background-image="Crop_Marks.svg"/>
</fo:simple-page-master>
Another possibility would be to embed the SVG code for your crop marks
directly in the stylesheet.
<fo:simple-page-master master-name="Front_Cover" page-height="11.5in"
page-width="9.0in">
<fo:region-body/>
<fo:region-start display-align="before" region-name="Crop_Marks"/>
</fo:simple-page-master>
<fo:static-content flow-name="Crop_Marks">
<fo:block-container z-index="-222" position="absolute">
<fo:block text-align="left">
<fo:instream-foreign-object content-width="9.0in">
<!--Add SVG Code-->
</fo:instream-foreign-object>
</fo:block>
</fo:block-container>
</fo:static-content>
Ryan Lubben
|