1 | <?xml version='1.0'?>
|
---|
2 | <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
---|
3 | version='1.0'>
|
---|
4 |
|
---|
5 | <xsl:import href="http://docbook.sourceforge.net/release/xsl/1.61.2/fo/docbook.xsl" />
|
---|
6 |
|
---|
7 | <!-- don't display ulink targets in main text -->
|
---|
8 | <xsl:param name="ulink.show">0</xsl:param>
|
---|
9 |
|
---|
10 | <!-- don't use graphics for callouts -->
|
---|
11 | <xsl:param name="callout.unicode">1</xsl:param>
|
---|
12 | <xsl:param name="callout.graphics">0</xsl:param>
|
---|
13 |
|
---|
14 | <!-- tighter margins -->
|
---|
15 | <xsl:param name="page.margin.inner">2in</xsl:param>
|
---|
16 | <xsl:param name="page.margin.outer">2in</xsl:param>
|
---|
17 |
|
---|
18 | <!-- enable pdf bookmarks -->
|
---|
19 | <xsl:param name="fop.extensions">1</xsl:param>
|
---|
20 |
|
---|
21 |
|
---|
22 | </xsl:stylesheet>
|
---|