• Added support for inline images that are the same height as the line height (automatically scale based on font size).
1 parent 93d8f3b commit c2f4a5b910ee91c3eb7a1273d32dbbc4c8cf5f2b
Nigel Stanger authored on 26 Mar 2018
Showing 1 changed file
View
56
modules/images.xml
<!--
"Standard" scale image. For LaTeX, we simply pass off to the "latex-image" template above.
-->
<template name="normal-image" match="image[count(provide-large-version) = 0]">
<template name="normal-image" match="image[count(provide-large-version) = 0 and not(@inline)]">
<common>
<!--
Check for obsolete child elements. We need to do this explicitly, as there isn't an apply-templates inside this template to pick them up automatically.
-->
<xsl:text>(Larger version)</xsl:text>
</a>
</common>
</template>
<!--
"Inline" image. These shouldn't be padded and should be about the same height as the text. 0.85em seems about right for (Xe)LaTeX, 1em with vertical-align middle for (X)HTML. Ideally only used for icons and the like.
-->
<template name="inline-image" match="image[@inline = 'yes']">
<common>
<!--
Check for obsolete child elements. We need to do this explicitly, as there isn't an apply-templates inside this template to pick them up automatically.
-->
<xsl:apply-templates select="basename|format|latex-scaling" />
<!--
Check for existence of required attributes. For example, it doesn't really make sense for @basename to be missing.
-->
<xsl:if test="not( @basename )">
<xsl:message terminate="yes">
<xsl:text>ERROR: image element "</xsl:text>
<!-- Note that the description may be missing, which would make the error message less helpful :). -->
<xsl:value-of select="description" />
<xsl:text>" missing required @basename attribute.</xsl:text>
</xsl:message>
</xsl:if>
</common>
<common formats="/latex/xelatex/">
<xsl:text>\includegraphics</xsl:text>
<!--
General-purpose latex pass-through arguments for \includegraphics. If providing multiple arguments, these should be comma-separated in the source XML, but do not need the enclosing square brackets.
-->
<xsl:text>[height=0.85em,keepaspectratio</xsl:text>
<xsl:if test="@latex-options">
<xsl:text>,</xsl:text>
<xsl:value-of select="@latex-options" />
</xsl:if>
<xsl:text>]</xsl:text>
<xsl:text>{</xsl:text>
<xsl:value-of select="infosci:build-image-path( @location, @basename, 'print', @format )" />
<xsl:text>}</xsl:text>
</common>
<common formats="/html/xhtml/">
<img style="padding: 0px; border-style: none; height: 1em; vertical-align: middle;">
<xsl:attribute name="src">
<xsl:value-of select="infosci:build-image-path( @location, @basename, 'web', @format )" />
</xsl:attribute>
<xsl:attribute name="alt">
<xsl:apply-templates select="description" />
<xsl:if test="not( description )">
<xsl:value-of select="@basename" />
</xsl:if>
</xsl:attribute>
</img>
</common>
</template>
<!--
Work out the full path specification for an image file to be included = base-path + location (if specified) + basename + suffix + format. With all arguments provided (see example values below), the result will look something like this: