|
Q. |
When I apply the XML and XSL in the formatter, it renders without error. In the middle of a dataset it renders a page its width is narrow. Why it happens?
[No.2002053103]
|
| A. |
In your file, fo:character is used in the wrong way. According to the W3C Recommendation for XSL-FO, you can specify only one character to fo:character.
<fo:character character="Glossary "/>
<fo:character character=", "/>
(Two characters, comma and space, are specified)
In order to avoid this, use another property for plural characters instead of fo:character.
|