- Added support for calligraphic maths text.
1 parent 43b0203 commit ce1ae3f9a42c6791e49aede953c538a20ec58ac4
nstanger authored on 15 Oct 2004
Showing 1 changed file
View
8
format-master.xml
<latex>\textup{<xsl:apply-templates/>}</latex>
<html><xsl:apply-templates/></html>
</template>
<!--
Calligraphic letters (upper case only for LaTeX).
-->
<template name="calligraphic-text" match="calligraphic|cursive">
<latex>\ensuremath{\mathcal{<xsl:apply-templates/>}}</latex>
<html><FONT FACE="cursive"><xsl:apply-templates/></FONT></html>
</template>
<!-- Digit grouping separator character for large numbers. SI conventions say this should be a space (but we could make it a comma if desired). -->
<template name="digit-group-separator" match="digit-group-separator|digitsep">
<html><xsl:call-template name="non-breaking-space"/></html>
<latex><xsl:text>\,</xsl:text></latex>