]> pere.pagekite.me Git - text-angrefrist.git/blob - data/lulu.xsl
Juster manglende tegnsetting.
[text-angrefrist.git] / data / lulu.xsl
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
4 <!-- settings for LuLu PDF version -->
5 <!--
6 https://amyrhoda.wordpress.com/2012/05/25/latex-to-lulu-the-making-of-aosa-geometry-and-headers-and-footers/
7 http://connect.lulu.com/t5/ISBN-Distribution/Mandatory-Print-Book-Distribution-Requirements/ta-p/33632
8 http://www.lulu.com/create/books
9 -->
10
11 <xsl:param name="doc.collab.show">0</xsl:param>
12
13 <!-- See "Global Page Setup" in the dblatex PDF manual for details -->
14 <!-- FIXME change when page size changes -->
15 <xsl:param name="page.width">6in</xsl:param>
16 <xsl:param name="page.height">9in</xsl:param>
17 <xsl:param name="page.margin.inner">0.8in</xsl:param>
18 <xsl:param name="page.margin.outer">0.55in</xsl:param>
19
20 <!-- reduce from 0.55in, to ignore header and footer in margin calculation -->
21 <!-- FIXME figure out the proper number to use -->
22 <xsl:param name="page.margin.top">0.05in</xsl:param>
23 <xsl:param name="page.margin.bottom">0.15in</xsl:param>
24
25 <xsl:param name="body.start.indent">0pt</xsl:param>
26 <xsl:param name="double.sided">1</xsl:param>
27
28 <!-- used by dblatex -->
29 <!-- headinclude=on,footinclude=on - ? -->
30 <!-- openright,twoside - proper double sided printing -->
31 <xsl:param name="latex.class.options">openright,twoside</xsl:param>
32
33 <!--
34 Make final page blank, which is required for PDFs inteneded for
35 extended distribution with LuLu.
36 -->
37
38 <xsl:param name="latex.enddocument">
39 <xsl:text>\pagebreak
40 \thispagestyle{empty}
41 ~
42 \end{document}
43 </xsl:text>
44 </xsl:param>
45
46 </xsl:stylesheet>