[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] 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
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|