~ubuntu-branches/ubuntu/wily/xubuntu-docs/wily-proposed

« back to all changes in this revision

Viewing changes to desktop-guide/libs/pdf/ubuntu-pdf-lulu.xsl

  • Committer: Package Import Robot
  • Author(s): Matthew East, Matthew East, Jeremy Bicha
  • Date: 2012-09-19 20:38:04 UTC
  • Revision ID: package-import@ubuntu.com-20120919203804-1t50gcb1xi8xbyzo
Tags: 12.10.1
[ Matthew East ]
* Complete rewrite of desktop-guide by Pasi Lallinaho
* Change to folder structure of desktop-guide to allow translations

[ Jeremy Bicha ]
* debian/control:
  - Bump Standards-Version to 3.9.3 and debhelper to 8
  - Don't build-depend on ubuntu-docs
* debian/preinst: Dropped, not needed after 12.04 LTS

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<?xml version="1.0" encoding="ISO-8859-1"?>
2
 
<!-- Customization layer for PDF output 
3
 
     License: CC-BY-SA. see http://creativecommons.org/licenses/by-sa/2.0/
4
 
-->
5
 
 
6
 
<xsl:stylesheet version="1.0"
7
 
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
8
 
xmlns:fo="http://www.w3.org/1999/XSL/Format">
9
 
 
10
 
<!-- Import our general pdf customisations -->
11
 
<xsl:import href="ubuntu-pdf.xsl"/>
12
 
 
13
 
<!-- ***************  Lulu tweaks  *********************  -->
14
 
<!-- ***************************************************  -->
15
 
 
16
 
<!-- Change the font, if you like, default is 11 -->
17
 
<xsl:param name="body.font.master">11</xsl:param>
18
 
 
19
 
<!-- Define the page width/height -->
20
 
<xsl:param name="page.width">18.9cm</xsl:param>
21
 
<xsl:param name="page.height">24.6cm</xsl:param>
22
 
 
23
 
<!-- It's a book, so this takes account for the binding  -->
24
 
<xsl:param name="double.sided" select="1"></xsl:param>
25
 
 
26
 
<!-- This causes some blank pages on the left hand side, so don't draw headers on those pages -->
27
 
<xsl:param name="headers.on.blank.pages" select="0"></xsl:param>
28
 
 
29
 
<!-- Split words across lines -->
30
 
<xsl:param name="hyphenate">true</xsl:param>
31
 
 
32
 
</xsl:stylesheet>
33