Latest web development tutorials

XSL-FO 목록 항목 객체

XSL-FO 참조 설명서 XSL-FO 참조 설명서

정의 및 사용

<FO : 목록 항목> 각 항목에 대한 개체의 목록입니다.

여기에 목록을 작성하는 데 사용되는 네 XSL-FO 개체는 다음과 같습니다

  • fo를 : 목록 블록 (전체 목록이 포함되어 있습니다)
  • fo를 : 목록 항목 (각 항목의 목록을 포함)
  • fo를 : 목록 항목 레이블 (라벨 목록 항목을 포함 - 정상적인 상황에서, <FO : 블록> 등 숫자, 문자를 포함)
  • FO : 목록 항목-몸 (목록 항목 / 몸의 내용 포함 - 일반적으로 하나 <FO : 블록> 더 많은 개체)

문법

<fo:list-item>
<!--
Contents:(list-item-label,list-item-body)
-->
</fo:list-item>

재산

属性 [A-J] 属性 [K-Z]
azimuth keep-together
background-attachment keep-with-next
background-color keep-with-previous
background-image left
background-repeat margin-bottom
background-position-horizontal margin-left
background-position-vertical margin-right
border-after-color margin-top
border-after-style padding-after
border-after-width padding-before
border-before-color padding-bottom
border-before-style padding-end
border-before-width padding-left
border-bottom-color padding-right
border-bottom-style padding-start
border-bottom-width padding-top
border-end-color pause-after
border-end-style pause-before
border-end-width pitch
border-left-color pitch-range
border-left-style play-during
border-left-width relative-align
border-right-color relative-position
border-right-style richness
border-right-width right
border-start-color role
border-start-style source-document
border-start-width space-after
border-top-color space-before
border-top-style speak
border-top-width speak-header
bottom speak-numeral
break-after speak-punctuation
break-before speech-rate
cue-after start-indent
cue-before stress
elevation top
end-indent voice-family
id volume
intrusion-displace

예 1

XSL-FO 예제 목록 :

<fo:list-block>

<fo:list-item>
<fo:list-item-label>
<fo:block>*</fo:block>
</fo:list-item-label>
<fo:list-item-body>
<fo:block>Volvo</fo:block>
</fo:list-item-body>
</fo:list-item>

<fo:list-item>
<fo:list-item-label>
<fo:block>*</fo:block>
</fo:list-item-label>
<fo:list-item-body>
<fo:block>Saab</fo:block>
</fo:list-item-body>
</fo:list-item>

</fo:list-block>

위의 코드가 출력 :


* 볼보
* 사브


XSL-FO 참조 설명서 XSL-FO 참조 설명서