If by "footer area" you mean the region-after of the page's page-master, remember that the region-after overlays the region-body; you need to define a margin-bottom for the region-body that is at least as large as the extent of the region-after. With keeps, I have found that specifying the particular kind of keep usually works much better; try keep-together.within-page instead of keep-together.
Eric Amick Systems Engineer II Legislative Computer Systems > -----Original Message----- > From: Rita Greenberg [mailto:[email protected]] > Sent: Wednesday, October 5, 2011 18:55 > To: [email protected] > Subject: Table Printing On Two Pages Issue > > Hello. > > I have a PDF document which has many tables. > One of the tables (which has multiple rows) is printing on two pages. > The problem is that part of the table on the first page is printing in > the > footer area so it's being overwritten with the page footer information. > > What can I do to cause the table to print correctly on the second page > and not > in the footer area of the first page. > > Also, I'm trying to keep several rows together in this table with no > success. > There are hundreds of lines of code so I can't include it here. > > Is there a link to a good example that I can check out? > I've searched the web for several hours and so far am unable to resolve > my > issue. > > I'm using FOP 0.20.5. > > Here's the start of the table: > <xsl:template match="PAYER"> > <!-- PAYER NAME --> > <fo:block> > <fo:table table-layout="fixed"> > <fo:table-column column-width="0.7cm"/> > <fo:table-column column-width="4.5cm"/> > <fo:table-body> > <fo:table-row keep-together="always"> > .... > <!-- PAYER ADDRESS1 --> > <fo:table-row keep-together="always"> > .... > <fo:table-row padding="1pt"> > <fo:table-cell> > <fo:block> </fo:block> > </fo:table-cell> > <fo:table-cell number-columns-spanned="2"> > <fo:block display-align="before"> > <fo:inline font-weight="bold" font-style="italic"> > <fo:marker marker-class-name="table-continued">Continued on > next > page...</fo:marker> > </fo:inline> > </fo:block> > </fo:table-cell> > </fo:table-row> > </fo:table-body> > </fo:table> > </fo:block> > > Any suggestions will be greatly appreciated! > > Thanks, > Rita > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
