- Add Simplified Chinese customization
This commit is contained in:
parent
bb135e40e0
commit
e2a83ede27
Notes:
svn2git
2020-12-08 03:00:23 +00:00
svn path=/projects/db5/; revision=42374
2 changed files with 49 additions and 0 deletions
20
zh_CN.GB2312/share/xsl/freebsd-dblatex.xsl
Normal file
20
zh_CN.GB2312/share/xsl/freebsd-dblatex.xsl
Normal file
|
@ -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>
|
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue