現在、PDFファイルを生成するためのXSL-FOに取り組んでいます。実際、XML と XSL を分離するのではなく、FO オブジェクトを直接記述しています。それが現在の私たちの要件です。テキストを適切に配置できます。しかし、テーブルを作成しているときは、完全なテーブルを表示しないように中央に保持します。何が問題になる可能性があります。ここに私が試したコードを投稿しています:
<fo:block>
<fo:table width="80%"
border-style="solid"
border-width="1pt"
border-color="#69468D"
table-layout="fixed"
space-before="10px"
space-after="10px"
text-align="start">
<fo:table-header line-height="10pt"
font-size="6pt"
background-color="#69468D"
color="white"
padding-top="3pt">
<fo:table-row>
<fo:table-cell border-top-color="solid pruple" border-left-color="solid pruple" border="1pt solid white">
<fo:block>text</fo:block>
</fo:table-cell>
<fo:table-cell border="0.5pt solid pruple" padding="4pt">
<fo:block>text</fo:block>
</fo:table-cell>
<fo:table-cell border="0.5pt solid pruple" padding="4pt">
<fo:block>text</fo:block>
</fo:table-cell>
<fo:table-cell border="0.5pt solid pruple" padding="4pt">
<fo:block>text</fo:block>
</fo:table-cell>
<fo:table-cell border="0.5pt solid pruple" padding="4pt">
<fo:block>text</fo:block>
</fo:table-cell>
<fo:table-cell border="0.5pt solid pruple" padding="4pt">
<fo:block>Text</fo:block>
</fo:table-cell>
</fo:table-row>
</fo:table-header>
<fo:table-body line-height="5pt"
font-size="6pt">
<fo:table-row padding-top="3pt">
<fo:table-cell text-align="center">
<fo:block>
hi
</fo:block>
</fo:table-cell>
<fo:table-cell text-align="center">
<fo:block>
hi
</fo:block>
</fo:table-cell>
</fo:table-row>
</fo:table-body>
</fo:table>
</fo:block>