Re: Having trouble removing linefeeds

2004-08-20 Thread Glen Mazza
Thanks, Chris, that solved it.

Glen

--- Chris Bowditch [EMAIL PROTECTED] wrote:

 Glen Mazza wrote:
 
 snip/
 
  fo:table-cell
fo:block text-align=end 
   System Codes 
   fo:retrieve-marker
  retrieve-position=first-starting-within-page
  retrieve-boundary=page
 retrieve-class-name=code/
   fo:block-/fo:block
 
 Glen, I think this is your problem. Try placing the
 minus inside a fo:inline 
 instead of a fo:block.
 


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Having trouble removing linefeeds

2004-08-18 Thread Chris Bowditch
Glen Mazza wrote:
snip/
fo:table-cell
  fo:block text-align=end 
 System Codes 
 fo:retrieve-marker
retrieve-position=first-starting-within-page
retrieve-boundary=page retrieve-class-name=code/
 fo:block-/fo:block
Glen, I think this is your problem. Try placing the minus inside a fo:inline 
instead of a fo:block.

 fo:retrieve-marker
retrieve-position=last-ending-within-page
retrieve-boundary=page retrieve-class-name=code/
  /fo:block
/fo:table-cell
snip/
Question:  What is the combination of
white-space-collapse, white-space-treatment, and/or
linefeed-treatment I need to use, and where should I
specify them in the snippet above, in order to get the
output as desired?
linefeeds are discarded by default, playing with these properties will only 
introduce extra linefeeds into your output.

Chris
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Having trouble removing linefeeds

2004-08-17 Thread Glen Mazza
Hello,

Within an fo:table-cell, I wish to have an output
similar to the following:

System Codes 25-30

Where 25 and 30 are calculated using fo:markers.

The FO snippet is as follows:

fo:table-cell
  fo:block text-align=end 
 System Codes 
 fo:retrieve-marker
retrieve-position=first-starting-within-page
retrieve-boundary=page retrieve-class-name=code/
 fo:block-/fo:block
 fo:retrieve-marker
retrieve-position=last-ending-within-page
retrieve-boundary=page retrieve-class-name=code/
  /fo:block
/fo:table-cell

When running this, however, I'm getting this output:

System Codes 25
-
30

I.e., without the linefeeds being removed.

Question:  What is the combination of
white-space-collapse, white-space-treatment, and/or
linefeed-treatment I need to use, and where should I
specify them in the snippet above, in order to get the
output as desired?

Thanks,
Glen

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]