• Added amsmath package and switched to split environment for aligned equations (closes #11).
1 parent 6bc4e40 commit ed24a454bf13d99a189ac800c9c9940f82b220ff
Nigel Stanger authored on 12 Aug 2016
Showing 2 changed files
View
10
modules/maths.xml
<!-- Equation arrays -->
<template name="equation-array" match="equation-array">
<common formats="/latex/xelatex/">
<xsl:text>\begin{eqnarray*}</xsl:text>
<xsl:text>\begin{displaymath}\begin{split}</xsl:text>
<xsl:call-template name="newline-internal" />
<xsl:apply-templates />
<xsl:text>\end{eqnarray*}</xsl:text>
<xsl:text>\end{split}\end{displaymath}</xsl:text>
</common>
<common formats="/html/xhtml/">
<table class="equation" border="0" style="margin-left: auto; margin-right: auto;">
<xsl:apply-templates />
</common>
</template>
 
<!--
Hmm, LaTeX uses "&" as separators: how do we know if there's another cell coming? Ah, but the LaTeX eqnarray can have no more than three columns, so there's no need to generalise.
Hmm, LaTeX uses "&" as separators: how do we know if there's another cell coming? Ah, but the AMS split has only two column plus an optional operator at the alignment point, so there's no need to generalise.
-->
<template match="equation-array/row">
<common formats="/latex/xelatex/">
<xsl:apply-templates select="left" />
<!-- Fortunately, white space after the "&" doesn't affect alignment. -->
<xsl:text disable-output-escaping="yes"> &amp; </xsl:text>
<xsl:apply-templates select="middle" />
<xsl:text disable-output-escaping="yes"> &amp; </xsl:text>
<xsl:apply-templates select="right" />
<xsl:text> \\</xsl:text>
<xsl:call-template name="newline-internal" />
<xsl:text>\\</xsl:text>
<xsl:call-template name="newline-internal" />
</common>
<common formats="/html/xhtml/">
<tr>
View
1
■■■■
xml2xslt.xsl
\usepackage[normalem]{ulem} % fancy underlining, strikeout, etc.
\usepackage{boxedminipage}
\usepackage{parskip} % Space-separated rather than indented paragraphs.
\usepackage{rotating} % Rotate stuff.
\usepackage{amsmath} % For nicer maths.
 
</xsl-out:text>
 
<xsl-out:call-template name="latex-preamble" />