wireshark/docbook/custom_layer_pdf.xsl
Jörg Mayer 9ab5bc5713 Svn stuff:
- Add eol-style native to all text files
- Add Id attributes

Add $Id: $ to all text files

Makefile:
- add several files and directories to make clean
- Add comments for values on Suse 9.1

catalog.xml:
- Add comments for values on Suse 9.1

svn path=/trunk/; revision=11618
2004-08-06 21:06:27 +00:00

39 lines
1.3 KiB
XML

<?xml version='1.0'?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
<!-- $Id$ -->
<!-- import the main stylesheet -->
<xsl:import href="http://docbook.sourceforge.net/release/xsl/current/fo/docbook.xsl"/>
<!-- create pdf bookmarks -->
<xsl:param name="fop.extensions" select="1"/>
<!-- use graphics for admons (note, tip, ...) -->
<xsl:param name="admon.graphics" select="1"/>
<xsl:param name="admon.graphics.path">graphics/</xsl:param>
<!-- use numbering for sections (not only for chapters) -->
<xsl:param name="section.autolabel" select="1"/>
<xsl:param name="section.label.includes.component.label" select="1"/>
<!-- include page numbers in cross references -->
<!-- <xsl:param name="insert.xref.page.number" select="1"/> -->
<!-- don't show URL's, but only the text of it -->
<xsl:param name="ulink.show" select="0"/>
<!-- put a page break after each section -->
<xsl:attribute-set name="section.level1.properties">
<xsl:attribute name="break-after">page</xsl:attribute>
</xsl:attribute-set>
<!-- set link style to blue and underlined -->
<xsl:attribute-set name="xref.properties">
<xsl:attribute name="color">blue</xsl:attribute>
<xsl:attribute name="text-decoration">underline</xsl:attribute>
</xsl:attribute-set>
</xsl:stylesheet>