Re: Table footers and headers

2002-11-12 Thread Oleg Tkachenko
Nwilan Glirt wrote: Can I define table-headers and table-footers that are only visualized when the table is segmented into several pages? If the table spans 3 pages, is the effect that I want that page 1 has a footer but no header, page 2 has both header and footer, and page 3 has header but no

Re: Table and first/last page

2002-11-11 Thread Jeremias Maerki
Here's a sample of a layout-master-set that has different page headers for the first and other pages. The important hint is the region-name that is overridden in fo:region-before. fo:layout-master-set fo:simple-page-master master-name=IS-11 page-height=29.7cm page-width=21cm

RE: table-layout=fixed

2002-06-13 Thread vinod . nayak
use table . table-layout=fixed this may help you.. and abt % column-width, use proportional-column-width property of the column -Vinod -Original Message- From: gabor [mailto:[EMAIL PROTECTED] Sent: Thursday, June 13, 2002 1:40 AM To: fop-user Subject: table-layout=fixed hi,

Re: table-layout=fixed

2002-06-12 Thread Chuck Paussa
Gabor, Here's some sample code. Notice the use of proportional-column-width() That allows you to do your percentage column widths. proportional-column-width allows you to proportion the widths of those columns not defined by a fixed width. You also need to designate the width of the table in

Re: Table alignment

2002-06-06 Thread J.Pietschmann
Ismaeil, Sameh Z wrote: I want to align a table, whose width is smaller than the body width, to be in the center of the page body I think I read a solution before on this list, suggesting to put the table inside the cell of another one-cell table, but I don't know which attribute to use and on

RE: Table and end of page ( region-after )

2002-05-31 Thread Roland Neilands
Stephane, I use the 0.20.3 version but I found from which the problem came. In fact, before each table i have a block-container with a absolute-position equals to auto and the evaluation of the height of the table on the first page doesn't fit with the body's height. Try experimenting with the

Re: Table and end of page ( region-after )

2002-05-29 Thread J.Pietschmann
stephane suisse wrote: I encounter the following problem : on each pages where a table begins ( table with a footer and a great number of pages ), the table overlaps the page's footer ( region-after ) , however the parameters of the simple-page-master seem to be good. ... Does anyone know why

RE: table-footer at foot of table problem

2002-04-30 Thread Scott Moore
My guess is table-footer is working exactly as intended. Are you sure you don't want to use a page footer? Something that always gets placed at the bottom of a page? If so, look into using xsl-region-after fo:root xmlns:fo=http://www.w3.org/1999/XSL/Format; fo:layout-master-set

RE: table-footer at foot of table problem

2002-04-30 Thread Steve Pitchford
: 30 April 2002 18:12 To: '[EMAIL PROTECTED]' Subject: RE: table-footer at foot of table problem My guess is table-footer is working exactly as intended. Are you sure you don't want to use a page footer? Something that always gets placed at the bottom of a page? If so, look into using xsl-region

Re: table-footer at foot of table problem

2002-04-30 Thread Chuck Paussa
Message- From: Scott Moore [mailto:[EMAIL PROTECTED] Sent: 30 April 2002 18:12 To: '[EMAIL PROTECTED]' Subject: RE: table-footer at foot of table problem My guess is table-footer is working exactly as intended. Are you sure you don't want to use a page footer? Something that always gets placed

Re: table error

2002-04-09 Thread J.Pietschmann
Arved Sandstrom wrote: IPD is the handy abbreviation for inline-progression-dimension (well, it could also be for inline-progression-direction, but in this case it's the dimension. :-)) It's not mandatory to specify this on tables, as there is a default, so I don't know _why_ you are getting this

RE: table error

2002-04-05 Thread Arved Sandstrom
IPD is the handy abbreviation for inline-progression-dimension (well, it could also be for inline-progression-direction, but in this case it's the dimension. :-)) It's not mandatory to specify this on tables, as there is a default, so I don't know _why_ you are getting this message. Can you post

RE: table: column-width

2002-03-15 Thread Rob Smith
Chuck Paussa wrote: xsl:for-each select=1 to $numcols !-- xsl 2 structure implemented in Saxon v7 -- xsl:for-each select=saxon:range(1, $numcols) !-- extension function -- fo:table-column column-width=10mm/ /xsl:for-each (presumably only one of the xsl:for-each elements should be

Re: Table-cell vertical-align problem

2002-03-15 Thread Costantino Sertorio
Solved! Yes, the answer is to set display-align=after. Thanks Costantino Costantino

Re: table: column-width

2002-03-14 Thread Mathy V Arumugam
Apologies for the previous request! A better looking table is attached! The number of columns is not a fixed number. I am able to create the table but, having trouble with the column-width. The table should expand to fit the page. The total-column-number is defined in TABLE attribute.

Re: table: column-width

2002-03-14 Thread Chuck Paussa
Mathy, To do the variable number of columns, you'll have to use a range function like this fo:table xsl:variable name=numcols select=./table/@numcols/ xsl:for-each select=1 to $numcols !-- xsl 2 structure i,plemented in Saxon v7 -- xsl:for-each select=saxon:range(1, $numcols) !-- extension

RE: table-cell vertical-align=bottom?

2002-03-12 Thread Rob Smith
Put the vertical-align=bottom attribute on the table-cell element, not the block -- Rob Smith As it appears from the template below, I'm desperately trying to align a table cell's content to the bottom. It seems to me that the vertical-align=bottom property does not work?

RE: table-cell vertical-align=bottom?

2002-03-12 Thread Costantino Sertorio
] Subject: RE: table-cell vertical-align=bottom? 12.03.2002 14:40

Re: Table inside a cell.

2002-03-10 Thread Peter B. West
Olivier, At a guess, you have your mozilla EditPreferencesMail NewsgroupsSend Format Convert the message to plain text option set, and you left your message composer in the default Variable Width, a condition to which it will stubbornly return itself at every opportunity. ASCII art can be

Re: Table inside a cell.

2002-03-09 Thread Olivier Rossel
Well, for Ascii art, Vim is probably better :-) Rendered by FOP: -- The text |A1 |1| | big | |2| * | big |-|-|---| big | A2 | 1 |* | big | | 2 |** | big

Re: Table header.

2002-03-08 Thread Chuck Paussa
Olivier, The quick answer is No. But there are people wanting to write an extension function to do this. What you can do is return the page number that the table sits on within the page sequence in which the table sits. So, if you can do without page numbers on your output, you can create a

<    1   2