removing RCS tags
[Samba.git] / docs / docbook / xslt / latex.xsl
blob8fafd5d140f0d10aa8ec5ad3084ec31d77e153ec
1 <?xml version="1.0" encoding="ISO-8859-1"?>
2 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version='1.0'>
3 <xsl:import href="db2latex/docbook.xsl"/>
4 <xsl:import href="table.mod.xsl"/>
5 <xsl:import href="lists.mod.xsl"/>
7 <xsl:output method="text" encoding="ISO-8859-1" indent="yes"/>
8 <xsl:variable name="latex.documentclass">xslt/latex/sambadoc</xsl:variable>
9 <xsl:variable name="latex.documentclass.common">english,final,titlepage,parskip</xsl:variable>
10 <xsl:variable name="latex.documentclass.book"></xsl:variable>
11 <xsl:variable name="latex.hyperref.param.pdftex">hyperfigures,hyperindex,citecolor=blue,urlcolor=blue</xsl:variable>
12 <xsl:variable name="latex.document.font">default</xsl:variable>
13 <xsl:variable name="latex.admonition.path">xslt/figures</xsl:variable>
14 <xsl:variable name="latex.hyphenation.tttricks">1</xsl:variable>
15 <xsl:variable name="latex.use.tabularx">1</xsl:variable>
16 <xsl:param name="latex.babel.language">english</xsl:param>
17 <xsl:param name="ulink.url">1</xsl:param>
19 <xsl:variable name="latex.book.preamble.post">\fancyhf{}
20 \fancyhead[RE]{\slshape \rightmark}
21 \fancyhead[LO]{\slshape \leftmark}
22 \fancyfoot[R]{\thepage}
23 </xsl:variable>
25 <xsl:template match="//title/filename|//title/command">
26 <xsl:variable name="content">
27 <xsl:apply-templates/>
28 </xsl:variable>
29 <xsl:if test="$content != ''">
30 <xsl:value-of select="$content" />
31 </xsl:if>
32 </xsl:template>
34 </xsl:stylesheet>