- Altered default page break caption text slightly.
1 parent 1f9292f commit 808f85982fe349017721637ea51f1cb9965cd597
nstanger authored on 15 Sep 2011
Showing 1 changed file
View
4
modules/basic-page-elements.xml
@print-caption: Whether or not to print a caption before the page break.
'yes' => display the caption
otherwise => display nothing [default]
@caption-text: The text to be printed before the page break. The default is "continued over...".
@caption-text: The text to be printed before the page break. The default is "continues over...".
-->
<template name="page-break" match="page-break|new-page|newpage|pagebreak">
<common formats="/latex/xelatex/">
<xsl:when test="@caption-text">
<xsl:value-of select="@caption-text" />
</xsl:when>
<xsl:otherwise>
<xsl:text>continued over\ldots</xsl:text>
<xsl:text>continues over\ldots</xsl:text>
</xsl:otherwise>
</xsl:choose>
<xsl:text>}\end{flushright}</xsl:text>
</xsl:if>