root/tags/lgt2211/xml/pdf.bat

Revision 650, 404 bytes (checked in by pmoura, 5 years ago)

Added references to US letter paper output.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
1@ECHO off
2
3SET FOP_PATH=c:\Fop-0.20.5
4
5SET XSLT="lgtpdfa4.xsl"
6REM SET XSLT="lgtpdfus.xsl"
7
8ECHO This script converts all .xml files in the current directory to .pdf
9ECHO files applying the XSLT transformation defined in the $XSLT file
10ECHO using the Apache FOP processor
11
12FOR %%f IN (*.xml) DO %FOP_PATH%\fop.bat -q -xsl %XSLT% -xml %%f -pdf %%f.pdf
13
14REN *.xml.pdf *.pdf
15
16ECHO conversion done
17
18@ECHO on
Note: See TracBrowser for help on using the browser.