|
Q. |
I specified keep-with-next.within-page="always" for fo:block, but the page broke during the following description "xxxxx ...". Why isn't the specification keep-with-next.within-page effective?
<fo:block keep-with-next.within-page="always">
<fo:block >xxxxx ...</fo:block>
</fo:block>
<fo:block >
<fo:block >yyyyy ...</fo:block>
</fo:block>
[No.2005061001]
|
| A. |
It is not because the specification of keep-with-next.within-page is ineffective. If you do not want page to break in fo:block including "xxxxx ...", please specify keep-together.within-page="always" as follows:
<fo:block keep-with-next.within-page="always">
<fo:block keep-together.within-page="always">xxxxx ...
|