Fixed issue #938: *Backlash* between user name and domain name is incorrectly replace...
[TortoiseGit.git] / doc / xsl / zh_CN / pdfdoc.xsl
blobdd3b8857615aa0682fd255e5940fe17ab49e8e96
1 <xsl:stylesheet
2 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="../pdfdoc.xsl"/>
8 <xsl:param name="l10n.gentext.language" select="'zh_cn'"/>
10 <xsl:param name="body.font.family" select="'simsun'"></xsl:param>
11 <xsl:param name="dingbat.font.family" select="'simhei'"></xsl:param>
12 <xsl:param name="monospace.font.family" select="'simsun'"></xsl:param>
13 <xsl:param name="title.font.family" select="'simhei'"></xsl:param>
15 <xsl:param name="paper.type" select="'A4'"></xsl:param>
16 <xsl:param name="hyphenate">false</xsl:param>
18 <xsl:param name="draft.mode" select="no"/>
20 <xsl:param name="variablelist.as.blocks" select="1" />
21 <xsl:param name="admon.textlabel" select="0" />
22 <xsl:param name="admon.graphics" select="1" />
23 <xsl:param name="admon.graphics.path">images/</xsl:param>
24 <xsl:param name="admon.graphics.extension">.png</xsl:param>
25 <xsl:param name="section.autolabel" select="1" />
26 <xsl:attribute-set name="sidebar.properties" use-attribute-sets="formal.object.properties">
27 <xsl:attribute name="border-style">solid</xsl:attribute>
28 <xsl:attribute name="border-width">.1mm</xsl:attribute>
29 <xsl:attribute name="background-color">#EEEEEE</xsl:attribute>
30 </xsl:attribute-set>
32 <!-- Prevent blank pages in output -->
33 <xsl:template name="book.titlepage.before.verso">
34 </xsl:template>
35 <xsl:template name="book.titlepage.verso">
36 </xsl:template>
37 <xsl:template name="book.titlepage.separator">
38 </xsl:template>
40 <xsl:template match="menuchoice">
41 <fo:inline font-family="simsun">
42 <xsl:call-template name="process.menuchoice"/>
43 </fo:inline>
44 </xsl:template>
46 <xsl:template match="guilabel">
47 <fo:inline font-family="simsun">
48 <xsl:call-template name="inline.charseq"/>
49 </fo:inline>
50 </xsl:template>
52 <xsl:template match="guibutton">
53 <fo:inline font-family="simsun">
54 <xsl:call-template name="inline.charseq"/>
55 </fo:inline>
56 </xsl:template>
58 <xsl:template match="keysym">
59 <fo:inline font-family="Symbol">
60 <xsl:call-template name="inline.charseq"/>
61 </fo:inline>
62 </xsl:template>
64 </xsl:stylesheet>