| |
---|
| | @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> |
---|
| |
---|
|