XSLT/XSL-FO/MathML TechnicsMargin / Indent |
|
Q. |
I specified start-indent="0pt" to a child element of fo:block-container , and fo:block-container is a child element of fo:list-item-body .
[No.2003081503]
|
---|---|
A. |
Sample FO: <fo:list-item> <fo:list-item-label text-align="end" end-indent="label-end()"> <fo:block>1.</fo:block> </fo:list-item-label> <fo:list-item-body start-indent="body-start()"> <fo:block-container> <fo:table start-indent="0pt"> <fo:table-body> <fo:table-row> <fo:table-cell> <fo:block>fo:table start-indent="0pt"</fo:block> </fo:table-cell> </fo:table-row> </fo:table-body> </fo:table> </fo:block-container> </fo:list-item-body> </fo:list-item> In this case,
When |