forked from ianw/bottomupcs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
csbu-pdf.xsl
28 lines (22 loc) · 998 Bytes
/
csbu-pdf.xsl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?xml version='1.0'?>
<xsl:stylesheet
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:d="http://docbook.org/ns/docbook"
version="1.0">
<xsl:import href="docbook-xsl-ns-1.79.1/fo/docbook.xsl"/>
<xsl:import href="docbook-xsl-ns-1.79.1/fo/highlight.xsl"/>
<xsl:param name="highlight.source" select="1" />
<xsl:param name="body.font.family">Helvetica</xsl:param>
<xsl:param name="body.font.size">11pt</xsl:param>
<xsl:attribute-set name="monospace.verbatim.properties">
<xsl:attribute name="font-size">0.7em</xsl:attribute>
</xsl:attribute-set>
<xsl:param name="shade.verbatim" select="1" />
<xsl:attribute-set name="shade.verbatim.style">
<xsl:attribute name="background-color">#F8F8F8</xsl:attribute>
<xsl:attribute name="border-width">0.5pt</xsl:attribute>
<xsl:attribute name="border-style">solid</xsl:attribute>
<xsl:attribute name="border-color">#575757</xsl:attribute>
<xsl:attribute name="padding">2pt</xsl:attribute>
</xsl:attribute-set>
</xsl:stylesheet>