DbkPack의 docbookto pdf로 그냥 뽑았을 때와 모습이 다른 부분들이 좀 있는데요. 일단 나눔고딕 코딩 글꼴 적용했고, 그 외에 다음 설정을 적용했습니다.
- 코드: 모두 선택
<!-- section level 1에서 페이지 새로 시작-->
<xsl:attribute-set name="section.level1.properties">
<xsl:attribute name="break-before">page</xsl:attribute>
</xsl:attribute-set>
<!-- section level 2 제목 글꼴 설정 -->
<xsl:attribute-set name="section.title.level2.properties">
<xsl:attribute name="font-family">UnGraphic</xsl:attribute>
<xsl:attribute name="start-indent">1.5em</xsl:attribute>
</xsl:attribute-set>
<!-- 그림 제목을 그림 아래에 -->
<xsl:param name="formal.title.placement">
figure after
example before
equation after
table before
procedure before
</xsl:param>
<!-- 고정폭 글꼴 너비 -->
<xsl:param name="monospace.verbatim.font.width">0.8em</xsl:param>
<!-- 코드 배경색 -->
<xsl:param name="shade.verbatim" select="1"></xsl:param>
<xsl:attribute-set name="shade.verbatim.style">
<xsl:attribute name="background-color">#F0F0F0</xsl:attribute>
</xsl:attribute-set>