aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--zh_CN.GB2312/share/xsl/freebsd-dblatex.xsl20
-rw-r--r--zh_CN.GB2312/share/xsl/freebsd-fo.xsl29
2 files changed, 49 insertions, 0 deletions
diff --git a/zh_CN.GB2312/share/xsl/freebsd-dblatex.xsl b/zh_CN.GB2312/share/xsl/freebsd-dblatex.xsl
new file mode 100644
index 0000000000..9e33394187
--- /dev/null
+++ b/zh_CN.GB2312/share/xsl/freebsd-dblatex.xsl
@@ -0,0 +1,20 @@
+<?xml version='1.0'?>
+
+<!-- $FreeBSD$ -->
+
+<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
+ version='1.0'>
+
+ <!-- Pull in the language-independent stylesheet -->
+ <xsl:import href="../../../share/xsl/freebsd-dblatex.xsl"/>
+
+ <xsl:param name="xetex.font">
+ <xsl:text>\setmainfont{AR PL SungtiL GB}
+ </xsl:text>
+ <xsl:text>\setsansfont{AR PL KaitiM GB}
+ </xsl:text>
+ <xsl:text>\setmonofont{DejaVu Sans Mono}
+ </xsl:text>
+ </xsl:param>
+
+</xsl:stylesheet>
diff --git a/zh_CN.GB2312/share/xsl/freebsd-fo.xsl b/zh_CN.GB2312/share/xsl/freebsd-fo.xsl
index cbc743b04b..682cc2be1a 100644
--- a/zh_CN.GB2312/share/xsl/freebsd-fo.xsl
+++ b/zh_CN.GB2312/share/xsl/freebsd-fo.xsl
@@ -12,4 +12,33 @@
<!-- Language-specific general customizations -->
<xsl:import href="freebsd-common.xsl"/>
+
+ <!--
+ CHINESE-SPECIFIC PARAMETERS
+ -->
+
+ <!-- Base fonts -->
+ <xsl:param name="body.font.family">AR PL SungtiL GB</xsl:param>
+ <xsl:param name="sans.font.family">AR PL KaitiM GB</xsl:param>
+ <xsl:param name="title.font.family">AR PL KaitiM GB</xsl:param>
+
+ <!-- Slightly reduce header font-size to make headers fit -->
+ <xsl:attribute-set name="header.content.properties">
+ <xsl:attribute name="font-size">8pt</xsl:attribute>
+ <xsl:attribute name="font-family">
+ <xsl:value-of select="$body.fontset"></xsl:value-of>
+ </xsl:attribute>
+ <xsl:attribute name="margin-left">
+ <xsl:value-of select="$title.margin.left"></xsl:value-of>
+ </xsl:attribute>
+ </xsl:attribute-set>
+
+ <!-- Increase inline monospace fonts to better fit the Chinese font-size -->
+ <xsl:attribute-set name="monospace.properties">
+ <xsl:attribute name="font-family">
+ <xsl:value-of select="$monospace.font.family"></xsl:value-of>
+ </xsl:attribute>
+ <xsl:attribute name="font-size">10pt</xsl:attribute>
+ </xsl:attribute-set>
+
</xsl:stylesheet>