xsl-foを使用して、テキストの割り当てをPDFにロードしています。しかし、ロードすると、境界線から境界線までページが完全に埋められます。テキストが前、後、開始、および終了ブロックを超えないようにする方法はありますか?それとも、テキストを含むブロックにマージンを設定する必要がありますか?
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0" xmlns:fo="http://www.w3.org/1999/XSL/Format">
<xsl:output method="xml" indent="yes" />
<xsl:template match="/">
<fo:root>
<!-- overall layout -->
<fo:layout-master-set>
<fo:simple-page-master master-name="forSalePage">
<fo:region-body/>
<fo:region-before extent="1in" background-color="#0000FF" />
<fo:region-after extent="1in" background-color="#0000FF" />
<fo:region-start/>
<fo:region-end/>
</fo:simple-page-master>
</fo:layout-master-set>
<!-- page content -->
<xsl:for-each select="ovgs/forSale/game">
<fo:page-sequence master-reference="forSalePage">
<fo:flow flow-name="xsl-region-body">
<fo:block text-align="center" margin-top="0.1in">Pros:</fo:block>
<xsl:for-each select="review/pros/pro">
<fo:block text-align="center">-<xsl:value-of select="." /></fo:block>
</xsl:for-each>
<fo:block text-align="center" margin-top="0.1in">Cons:</fo:block>
<xsl:for-each select="review/cons/con">
<fo:block text-align="center">-<xsl:value-of select="." /></fo:block>
</xsl:for-each>
<fo:block page-break-before="always" margin-top="1.1in" margin-right="1in" margin-left="1in">Content:</fo:block>
<xsl:for-each select="review/content/*">
<xsl:choose>
<xsl:when test=". = not(node())">
<fo:block margin-top="0.1in" margin-right="1in" margin-left="1in"><xsl:value-of select="./preceding::text()[1]" /></fo:block>
</xsl:when>
<xsl:when test=". = text()">
<fo:block text-align="center" margin-top="0.1in"><fo:external-graphic content-height="scale-to-fit" height="1in"><xsl:attribute name="src">url('<xsl:value-of select="./@url" />')</xsl:attribute></fo:external-graphic></fo:block>
<fo:block text-align="center" margin-right="1in" margin-left="1in"><xsl:value-of select="." /></fo:block>
</xsl:when>
<xsl:otherwise/>
</xsl:choose>
</xsl:for-each>
<fo:block margin-right="1in" margin-left="1in" margin-top="0.1in"><xsl:value-of select="review/content/p[last()]/following::text()[1]" /></fo:block>
</fo:flow>
</fo:page-sequence>
</xsl:for-each>
</fo:root>
</xsl:template>
それは、xml ファイルの長所、短所、およびレビューの内容を表示するためのコードです。すべての情報と写真を正しく表示し、必要に応じて短所の後に改ページを挿入します。しかし、Review コンテンツが 1 ページだけでは多すぎて、after 領域と before 領域にまたがって表示される場合に問題が発生します。
What I get: What I want:
______________ ______________
| | | |
| Pros | | Pros |
| Blabla | | Blabla |
| | | |
| Cons | | Cons |
| Blabla | | Blabla |
| | | |
| | | |
|______________| |______________|
______________ ______________
| | | |
| Content | | Content |
| | | |
| ~~~~~~~~~~ | | ~~~~~~~~~~ |
| ~~~~~~~~~~ | | ~~~~~~~~~~ |
| ~~~~~~~~~~ | | ~~~~~~~~~~ |
| ~~~~~~~~~~ | | ~~~~~~~~~~ |
| ~~~~~~~~~~ | | ~~~~~~~~~~ |
|__~~~~~~~~~~__| |______________|
______________ ______________
| ~~~~~~~~~~ | | |
| ~~~~~~~~~~ | | ~~~~~~~~~~ |
| ~~~~~~~~~~ | | ~~~~~~~~~~ |
| ~~~~~~~~~~ | | ~~~~~~~~~~ |
| | | ~~~~~~~~~~ |
| | | ~~~~~~~~~~ |
| | | |
| | | |
|______________| |______________|
地域とその名前は次のとおりです。
______________
| Before |
|______________|
| S| | |
| t| |E |
| a| Body |n |
| r| |d |
| t| | |
|__|________|__|
| After |
|______________|
(PS本体は、他の領域だけでなく、ページの境界線まで伸びます)