Dave Jarvis' Repositories

git clone https://repo.autonoma.ca/repo/recipe-books.git
xsl/latex.xsl
<xsl:param name="ebook" select="true()" />
-<!-- If true, no footer will appear on pages with full page photos. -->
-<xsl:param name="nofooter" select="true()" />
+<!-- If true, a footer (with page number) appears on full page photo pages. -->
+<xsl:param name="footer" select="false()" />
-<!-- Citation style format. Valid values are endcitations (default), footercitations and inlinecitations. -->
-<xsl:param name="citationstyle" select="''" />
+<!--
+ | Citation style format; valid values:
+ | endcitations (default)
+ | footercitations
+ | inlinecitations
+ +-->
+<xsl:param name="citation-style" select="''" />
<!-- These will come from the XML...
<xsl:text>print,</xsl:text>
</xsl:if>
- <xsl:if test="not($nofooter)">
+ <xsl:if test="$footer">
<xsl:text>fullpagefooter,</xsl:text>
</xsl:if>
- <xsl:value-of select="$citationstyle"/>
+ <xsl:value-of select="$citation-style"/>
<xsl:text>]</xsl:text>
<xsl:text>{recipe-book}&#xa;</xsl:text>

Switched nofooter to footer and reversed logic.

Author Dave Jarvis <email>
Date 2013-03-02 14:46:12 GMT-0800
Commit 8a42160b82809fe12c6c2eea791354b9a2425a1a
Parent a66f15f
Delta 11 lines added, 6 lines removed, 5-line increase