how can I do to keep always two words together

2004-06-04 Thread jfselber
hello,

I have a document fo witch is dymanamic generate
sample:

text dynamic generate + hello alfred junior



how can I do to keep alfred and junior always togehter?
In fact fop can have the place to write alfred at the end of the line but not 
the place for junior. Then junior is written on the next line. 
How can I do to force fop to write both alfred junior.

thanks
jf

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



Re: how can I do to keep always two words together

2004-06-04 Thread Chris Bowditch
[EMAIL PROTECTED] wrote:
snip/
how can I do to keep alfred and junior always togehter?
In fact fop can have the place to write alfred at the end of the line but not 
the place for junior. Then junior is written on the next line. 
How can I do to force fop to write both alfred junior.
The mechanism for achieving this effect in XSL-FO is 
keep-together=always, e.g.
fo:inline keep-together=alwaysalfred junior/fo:inline
Sadly, keep-* properties are not implemented in FOP 0.20.5
Chris

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


Re: how can I do to keep always two words together

2004-06-04 Thread Clay Leeds
On Jun 4, 2004, at 7:40 AM, Chris Bowditch wrote:
[EMAIL PROTECTED] wrote:
snip/
how can I do to keep alfred and junior always togehter?
In fact fop can have the place to write alfred at the end of the 
line but not the place for junior. Then junior is written on the 
next line. How can I do to force fop to write both alfred junior.
You could place the non-breaking space between them: #160;
Like this:
alfred#160;junior
Hope this helps!
Web Maestro Clay
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: how can I do to keep always two words together

2004-06-04 Thread Chris Bowditch
Clay Leeds wrote:
how can I do to keep alfred and junior always togehter?
In fact fop can have the place to write alfred at the end of the 
line but not the place for junior. Then junior is written on the 
next line. How can I do to force fop to write both alfred junior.

You could place the non-breaking space between them: #160;
Like this:
alfred#160;junior
Yes that should work. Good thinking Clay!
Chris

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