Re: Resetting page counts in fop

2006-03-31 Thread Roberto Nunnari
What about marker and marker-retriver? I'm still a beginner with fo, but I believe you could use them to keep record of the current invoice page and reset it to 1 each time a new invoice starts and then increment at every invoice page. Hope that helps. -- Robi. Noll, Jeffrey T HS wrote: I'm

Thomas MACIEJEWSKI/us/socgen is out of the office.

2006-03-31 Thread thomas . maciejewski
I will be out of the office starting 03/31/2006 and will not return until 04/12/2006. * This message and any attachments (the message) are confidential and intended solely for the addressees. Any unauthorised use or

Re: postscript images missing in PDF output

2006-03-31 Thread Jeremias Maerki
On 30.03.2006 22:53:07 Jim Guerin wrote: As a follow-up, does the fact that Adobe has deprecated EPS embedding imply that one should only use SVG if vector graphics are desired for PDF output with FOP? Yes, exactly. Jeremias Maerki

Thomas MACIEJEWSKI/us/socgen is out of the office.

2006-03-31 Thread thomas . maciejewski
I will be out of the office starting 03/31/2006 and will not return until 04/12/2006. * This message and any attachments (the message) are confidential and intended solely for the addressees. Any unauthorised use or

Re: Resetting page counts in fop

2006-03-31 Thread Jeremias Maerki
You can use initial-page-number=1 on every fo:page-sequence. Your intuition about using position() to generate unique ids is good. HTH On 30.03.2006 22:50:29 Noll, Jeffrey T HS wrote: I'm generating a single PDF that contains multiple invoices. The invoices each have a separate page

Thomas MACIEJEWSKI/us/socgen is out of the office.

2006-03-31 Thread thomas . maciejewski
I will be out of the office starting 03/31/2006 and will not return until 04/12/2006. * This message and any attachments (the message) are confidential and intended solely for the addressees. Any unauthorised use or

problem to import TIFF to produce PDF doc

2006-03-31 Thread Olivier Mansour
Hey is it possible to import CMJN Tiff in PDF docs. I have this error while generating my PDF : java.lang.IllegalArgumentException: Raster ByteInterleavedRaster: width = 2600 height = 3628 #numDataElements 4 dataOff[0] = 0 is incompatible with ColorModel ColorModel: #pixelBits = 8

Thomas MACIEJEWSKI/us/socgen is out of the office.

2006-03-31 Thread thomas . maciejewski
I will be out of the office starting 03/31/2006 and will not return until 04/12/2006. * This message and any attachments (the message) are confidential and intended solely for the addressees. Any unauthorised use or

Re: problem to import TIFF to produce PDF doc

2006-03-31 Thread Jeremias Maerki
I assume that CMJN is the French equivalent of CMYK, right? I had to ask Google to find out. You don't say what FOP version you're working with. I've just done a little test using FOP Trunk and the same happens. The TIFF codec from Batik doesn't seem to properly support CMYK TIFFs. If I disable

AW: Resetting page counts in fop

2006-03-31 Thread Alexander Schwartz
Jeffrey, you may want to add force-page-count=no-force as well to avoid blank pages between invoices, otherwise a page 1 would always start on an odd page. Alex. Alexander Schwartz PLUS Finanzservice GmbH Otto-von-Guericke-Ring 15 65205 Wiesbaden T.: 06122 - 999 906 F.: 06122 -

Thomas MACIEJEWSKI/us/socgen is out of the office.

2006-03-31 Thread thomas . maciejewski
I will be out of the office starting 03/31/2006 and will not return until 04/12/2006. * This message and any attachments (the message) are confidential and intended solely for the addressees. Any unauthorised use or

Re: problem to import TIFF to produce PDF doc

2006-03-31 Thread Olivier Mansour
Le 31 mars 06 à 12:09, Jeremias Maerki a écrit : I assume that CMJN is the French equivalent of CMYK, right? I had to ask Google to find out. OMG ! so sorry for that You don't say what FOP version you're working with. 0.91 I've just done a little test using FOP Trunk and the same

RE: creating SVG from MathML

2006-03-31 Thread cknell
Since MathML is XML and SVG is XML, the natural way to convert one to another, as I see it, is with with XSLT. Are you looking for a ready-made Java package with classes to produce a variety of SVG formats, or are you looking for a general approach? -- Charles Knell [EMAIL PROTECTED] - email

Re: creating SVG from MathML

2006-03-31 Thread Dirk Bromberg
Hello, [EMAIL PROTECTED] wrote: Since MathML is XML and SVG is XML, the natural way to convert one to another, as I see it, is with with XSLT. Are you looking for a ready-made Java package with classes to produce a variety of SVG formats, or are you looking for a general approach? i'm

Re: creating SVG from MathML

2006-03-31 Thread Jeremias Maerki
http://sourceforge.net/projects/jeuclid FOP has a demo extension that uses JEuclid to convert MathML to SVG internally. On 31.03.2006 15:50:35 Dirk Bromberg wrote: Hello, [EMAIL PROTECTED] wrote: Since MathML is XML and SVG is XML, the natural way to convert one to another, as I see it,

RE: Resetting page counts in fop

2006-03-31 Thread Noll, Jeffrey T HS
Ok, so currently it is basically fo:page-sequence process each invoice /fo:page-sequence What I want is for each invoice fo:page-sequence start-count=1 /fo:page-sequence /for each ? I know the sytax is totally wrong, just looking for general idea.

Re: Resetting page counts in fop

2006-03-31 Thread Jeremias Maerki
Yes, but it's initial-page-number, not start-count. The split into multiple page-sequences helps you with memory-consumption as a nice side-effect. :-) On 31.03.2006 16:41:40 Noll, Jeffrey T HS wrote: Ok, so currently it is basically fo:page-sequence process each invoice

Page footnote prints on

2006-03-31 Thread Noll, Jeffrey T HS
Sorry for all these questions. I'm trying to really advocate FOP and want this first project to go over well. I have a PDF with several invoices. I'm trying to use a footnote to ensure that the invoice summary info and invoice nomenclature always prints at the same place on the last page of each

RE: Page footnote prints on

2006-03-31 Thread Noll, Jeffrey T HS
Sorry, my bad in what is actually happening. The problem is occuring when the table that makes up the body + the footer is larger than body size. Rather an a new page with just footnote it seems to just ignore the footnote all together. Any ideas? At least I think this is what is happening.

Re: creating SVG from MathML

2006-03-31 Thread J.Pietschmann
[EMAIL PROTECTED] wrote: Since MathML is XML and SVG is XML, the natural way to convert one to another, as I see it, is with with XSLT. Well, converting the structure of a mathematical expression, which is what MathML represents, into a 2D image involves some tricky computations. I'd expect an

RE: Browser hangs?

2006-03-31 Thread Joanne Mao
Thanks for the replies. Instead of asking every of my users to reinstall the plugin, I decide to set my response header to force download the pdf. Hopefully it will solve this issue. Joanne -Original Message- From: J.Pietschmann [mailto:[EMAIL PROTECTED] Sent: Friday, March 31, 2006