- Made use of newline-internal template.
1 parent 6015fe7 commit 6a78bd88e2f6bb0379e851b2bbe1578bf6ed747a
nstanger authored on 7 Oct 2011
Showing 2 changed files
View
1
■■■■
modules/inclusions.xml
</xsl:if>
<xsl:text>input{</xsl:text>
<xsl:value-of select="$file" />
<xsl:text>}</xsl:text>
<xsl:call-template name="newline-internal" />
</common>
</template>
View
18
modules/latex.xml
</xsl:if>
<xsl:text>{</xsl:text>
<xsl:value-of select="." />
<xsl:text>}</xsl:text>
<xsl:call-template name="newline-internal" />
</common>
</template>
<!--
Execute a preamble LaTeX command. Use to set up things like counters, fonts, hyperref options, etc.
-->
<template name="latex-command" match="latex-commands/command">
<common formats="/latex/xelatex/"><xsl:value-of select="." /></common>
<common formats="/latex/xelatex/">
<xsl:value-of select="." />
<xsl:call-template name="newline-internal" />
</common>
</template>
<!-- LaTeX hyphenation. A space-delimited list of hyphenated words. -->
<common formats="/latex/xelatex/">
<xsl:text>\hyphenation{</xsl:text>
<xsl:value-of select="." />
<xsl:text>}</xsl:text>
<xsl:call-template name="newline-internal" />
</common>
</template>
 
<xsl:value-of select="@options" />
<xsl:text>]{</xsl:text>
<xsl:value-of select="." />
<xsl:text>}</xsl:text>
<xsl:call-template name="newline-internal" />
</common>
</template>
<!-- Durr, this is identical to the previous one??? -->
<xsl:value-of select="@options" />
<xsl:text>]{</xsl:text>
<xsl:value-of select="." />
<xsl:text>}</xsl:text>
<xsl:call-template name="newline-internal" />
</common>
</template>
<!--
Specify additional LaTeX document class options (i.e., in addition to the defaults). These should be a comma-separated list of the required options. These will be appended to the standard defaults (a4paper, 12pt).
-->
<template name="latex-document-options" match="latex-document-options">
<common formats="/latex/xelatex/"><xsl:apply-templates /></common>
<common formats="/latex/xelatex/">
<xsl:apply-templates />
</common>
</template>
 
 
</stylesheet>