2017-09-05 5 views
2

fo : 테이블의 행 사이의 줄 간격을 줄이고 싶습니다. 나는 각각의 행과 공간에 대해 top, bottom, fo : block 다음에 공백을 사용하고 아무런 효과가 없었습니다.PDF를 생성하는 동안 fo : table의 테이블 행 사이의 기본 간격을 제거/축소하는 방법

<xsl:template match="region1"> 
 
    \t <fo:static-content flow-name="xsl-region-before" > 
 
\t \t <fo:table table-layout="fixed" width="100%"> 
 
\t \t \t <fo:table-column column-width="100%"/> 
 
\t \t \t <!-- <fo:table-column column-width="20%"/> --> 
 
\t \t \t <fo:table-body> 
 
\t \t \t \t <fo:table-row><fo:table-cell><fo:block font-family="Courier" font-style="normal" font-weight="bold" white-space="pre" font-size="12pt"><xsl:value-of select="lines[1]/line"/></fo:block></fo:table-cell></fo:table-row> 
 
\t \t \t \t <fo:table-row><fo:table-cell><fo:block font-family="Courier" font-style="normal" font-weight="bold" white-space="pre" font-size="12pt"><xsl:value-of select="lines[2]/line"/></fo:block></fo:table-cell></fo:table-row> 
 
\t \t \t \t <fo:table-row><fo:table-cell><fo:block font-family="Courier" font-style="normal" font-weight="bold" white-space="pre" font-size="12pt"><xsl:value-of select="lines[3]/line"/></fo:block></fo:table-cell></fo:table-row> 
 
\t \t \t \t <fo:table-row><fo:table-cell><fo:block font-family="Courier" font-style="normal" font-weight="bold" white-space="pre" font-size="12pt"><xsl:value-of select="lines[4]/line"/></fo:block></fo:table-cell></fo:table-row> 
 
\t \t \t \t <fo:table-row><fo:table-cell><fo:block font-family="Courier" font-style="normal" font-weight="bold" white-space="pre" font-size="12pt"><xsl:value-of select="lines[5]/line"/></fo:block></fo:table-cell></fo:table-row> 
 
\t \t \t </fo:table-body> 
 
\t \t </fo:table> 
 
    </fo:static-content> 
 
</xsl:template>

내가 얻고 것은 : 예상된다 무엇 enter image description here

은 다음과 같습니다 이 enter image description here

답변

1

선도적 인 기본 라인의 높이가 아마 1.2 배 글꼴 크기입니다 . 어쩌면 line-height = 0과 같이 선의 높이를 더 적절하게 설정하십시오.

+0

감사합니다. 이것은 도움이되었습니다. 필자는 글꼴 크기보다 2pt 줄 높이를 설정했습니다. Madhu 일하고있을 것 같습니다 – Madhu

+0

대답이 효과가 있다면 그것을 받아 들여야합니다. –

+0

죄송합니다. 동의 할만한 링크 나 버튼이 보이지 않습니다. 나는 체크 링크를 클릭했다. 나는 이것이 이것이 받아 들일 수있는 방법이되기를 희망한다. – Madhu