mirror of
https://github.com/Zeckmathederg/glfs.git
synced 2025-01-23 22:42:14 +08:00
21 lines
744 B
XML
21 lines
744 B
XML
<?xml version='1.0' encoding='UTF-8'?>
|
|
|
|
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
|
xmlns:fo="http://www.w3.org/1999/XSL/Format"
|
|
version="1.0">
|
|
|
|
<!-- LFS top-level pdf templates. -->
|
|
<xsl:import href="lfs-xsl/pdf.xsl"/>
|
|
|
|
<!-- The LFS book type to be processed (lfs, blfs, clfs, or hlfs) -->
|
|
<xsl:param name="book-type">blfs</xsl:param>
|
|
|
|
<!-- Are sections enumerated? 1 = yes, 0 = no
|
|
Note: Activating this will increase a lot rendering time. -->
|
|
<xsl:param name="section.autolabel" select="0"/>
|
|
|
|
<!-- Do section labels include the component label? 1 = yes, 0 = no -->
|
|
<xsl:param name="section.label.includes.component.label" select="0"/>
|
|
|
|
</xsl:stylesheet>
|