Hi Nancy, nancy_b wrote: > Hi folks, > > I still can't understand what causes the following warning messages to > appear when I compile PDF docs using XSLTROC and FOP 0.94 in Debian Linux. > > WARNING: table-layout="fixed" and column-width unspecified => falling back > to proportional-column-width(1) > Apr 22, 2009 6:52:01 PM org.apache.fop.fo.flow.TableColumn bind
There are fo:table-column elements in your FO file for which the column-width property has not been set. There may be two origins: - the XSLT style sheets you are using are producing tables for some content (like running headers) and forget to set a column width. The corresponding templates must be fixed. - or you are yourself declaring a table in your source XML file in such a way that the XSLT style sheets can’t infer the width you wish for some columns. You have to somehow define that in your XML file. It’s difficult to be more precise without knowing the documentation framework you are using. You may want to ask on the corresponding mailing lists. You can also, from the line number FOP should give you when issuing the warning, have a look at the FO file and determine what XSLT template generated that part. And then figure out which of the two origins above it is. > Could anyone please help me?@@@ > > Thank you in advance! > Nancy HTH, Vincent --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
