hgbook

view stylesheets/zh/fo.xsl @ 683:1a0a78e197c3

Incorporate feedback from Greg Lindahl.
author Bryan O'Sullivan <bos@serpentine.com>
date Fri Apr 24 00:27:05 2009 -0700 (2009-04-24)
parents 3c5e1c03cc3e
children 8a2b0994ccd9
line source
1 <?xml version="1.0"?>
2 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
3 xmlns:fo="http://www.w3.org/1999/XSL/Format"
4 version='1.0'>
6 <xsl:import href="../fo.xsl"/>
8 <xsl:param name="l10n.gentext.language" select="'zh'"/>
10 <!-- Chinese font related settings -->
11 <xsl:param name="body.font.master">12</xsl:param>
13 <xsl:attribute-set name="standard.para.spacing" use-attribute-sets="normal.para.spacing">
14 <xsl:attribute name="text-indent">24pt</xsl:attribute>
15 </xsl:attribute-set>
17 <xsl:template match="abstract/para|appendix/para|chapter/para|colophon/para|legalnotice/para|preface/para|section/para|sect1/para|sect2/para">
18 <fo:block xsl:use-attribute-sets="standard.para.spacing">
19 <xsl:call-template name="anchor"/>
20 <xsl:apply-templates/>
21 </fo:block>
22 </xsl:template>
24 <xsl:template match="section/para/*">
25 <fo:wrapper text-indent="0pt">
26 <xsl:apply-imports/>
27 </fo:wrapper>
28 </xsl:template>
30 </xsl:stylesheet>