1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259
|
<?xml version="1.0" encoding="utf-8"?>
<!--
/=====================================================================\
| LaTeXML-misc-xhtml.xsl |
| Converting various inline/block-level elements to xhtml |
|=====================================================================|
| Part of LaTeXML: |
| Public domain software, produced as part of work done by the |
| United States Government & not subject to copyright in the US. |
|=====================================================================|
| Bruce Miller <bruce.miller@nist.gov> #_# |
| http://dlmf.nist.gov/LaTeXML/ (o o) |
\=========================================================ooo==U==ooo=/
-->
<xsl:stylesheet
version = "1.0"
xmlns:xsl = "http://www.w3.org/1999/XSL/Transform"
xmlns:ltx = "http://dlmf.nist.gov/LaTeXML"
xmlns:func = "http://exslt.org/functions"
xmlns:f = "http://dlmf.nist.gov/LaTeXML/functions"
extension-element-prefixes="func f"
exclude-result-prefixes = "ltx func f">
<!-- ======================================================================
Various things that aren't clearly inline or blocks, or can be both:
ltx:inline-block, ltx:verbatim, ltx:break, ltx:graphics, ltx:svg, ltx:rawhtml
====================================================================== -->
<!-- Only a few generated elements need $context switches.
See the CONTEXT discussion in LaTeXML-common -->
<xsl:strip-space elements="ltx:inline-block"/>
<!-- Note that html does NOT have an inline-block element; so we must
continue in an inline context (probably generating span's inside),
but CSS will hopefully set appropriate display properties.
BUT, let's only do that if we're actually in an inline context!
In block context, just make a div-->
<xsl:template match="ltx:inline-block">
<xsl:param name="context"/>
<!-- bug in libxslt!?!?!? putting these in the 'correct' place gives redefinition error! -->
<xsl:text>
</xsl:text>
<xsl:choose>
<xsl:when test="@angle | @xtranslate | @ytranslate | @xscale | @yscale ">
<xsl:element name="{f:blockelement($context,'div')}" namespace="{$html_ns}">
<!--<xsl:variable name="innercontext" select="'inline'"/>--><!-- override -->
<xsl:variable name="innercontext" select="$context"/><!-- override -->
<xsl:call-template name="add_id"/>
<xsl:call-template name="add_attributes">
<xsl:with-param name="extra_classes" select="'ltx_transformed_outer'"/>
</xsl:call-template>
<xsl:element name="span" namespace="{$html_ns}">
<xsl:attribute name="class">ltx_transformed_inner</xsl:attribute>
<xsl:call-template name="add_transformable_attributes"/>
<xsl:apply-templates select="." mode="begin">
<xsl:with-param name="context" select="$innercontext"/>
</xsl:apply-templates>
<xsl:apply-templates>
<xsl:with-param name="context" select="$innercontext"/>
</xsl:apply-templates>
<xsl:apply-templates select="." mode="end">
<xsl:with-param name="context" select="$innercontext"/>
</xsl:apply-templates>
<xsl:text>
</xsl:text>
</xsl:element>
</xsl:element>
</xsl:when>
<xsl:otherwise>
<xsl:element name="span" namespace="{$html_ns}">
<xsl:variable name="innercontext" select="'inline'"/><!-- override -->
<xsl:call-template name="add_id"/>
<xsl:call-template name="add_attributes"/>
<xsl:apply-templates select="." mode="begin">
<xsl:with-param name="context" select="$innercontext"/>
</xsl:apply-templates>
<xsl:apply-templates>
<xsl:with-param name="context" select="$innercontext"/>
</xsl:apply-templates>
<xsl:apply-templates select="." mode="end">
<xsl:with-param name="context" select="$innercontext"/>
</xsl:apply-templates>
<xsl:text>
</xsl:text>
</xsl:element>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<xsl:template match="ltx:verbatim">
<xsl:param name="context"/>
<xsl:choose>
<xsl:when test="contains(text(),'
')">
<xsl:element name="pre" namespace="{$html_ns}">
<xsl:call-template name="add_id"/>
<xsl:call-template name="add_attributes"/>
<xsl:apply-templates select="." mode="begin">
<xsl:with-param name="context" select="$context"/>
</xsl:apply-templates>
<xsl:apply-templates>
<xsl:with-param name="context" select="$context"/>
</xsl:apply-templates>
<xsl:apply-templates select="." mode="end">
<xsl:with-param name="context" select="$context"/>
</xsl:apply-templates>
</xsl:element>
</xsl:when>
<xsl:otherwise>
<xsl:element name="code" namespace="{$html_ns}">
<xsl:call-template name="add_id"/>
<xsl:call-template name="add_attributes"/>
<xsl:apply-templates select="." mode="begin">
<xsl:with-param name="context" select="$context"/>
</xsl:apply-templates>
<xsl:apply-templates>
<xsl:with-param name="context" select="$context"/>
</xsl:apply-templates>
<xsl:apply-templates select="." mode="end">
<xsl:with-param name="context" select="$context"/>
</xsl:apply-templates>
</xsl:element>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<xsl:template match="ltx:break">
<xsl:param name="context"/>
<xsl:text>
</xsl:text>
<xsl:element name="br" namespace="{$html_ns}">
<xsl:call-template name="add_attributes"/>
<xsl:apply-templates select="." mode="begin">
<xsl:with-param name="context" select="$context"/>
</xsl:apply-templates>
<xsl:apply-templates select="." mode="end">
<xsl:with-param name="context" select="$context"/>
</xsl:apply-templates>
</xsl:element>
</xsl:template>
<!-- ======================================================================
Graphics inclusions
====================================================================== -->
<xsl:template match="ltx:graphics">
<xsl:param name="context"/>
<xsl:element name="img" namespace="{$html_ns}">
<xsl:attribute name="src"><xsl:value-of select="f:url(@imagesrc)"/></xsl:attribute>
<xsl:call-template name="add_id"/>
<xsl:call-template name="add_attributes">
<xsl:with-param name="extra_style">
<xsl:if test="@imagedepth">
<xsl:value-of select="concat('vertical-align:-',@imagedepth,'px')"/>
</xsl:if>
</xsl:with-param>
</xsl:call-template>
<xsl:if test="@imagewidth">
<xsl:attribute name='width'>
<xsl:value-of select="@imagewidth"/>
</xsl:attribute>
</xsl:if>
<xsl:if test="@imageheight">
<xsl:attribute name='height'>
<xsl:value-of select="@imageheight"/>
</xsl:attribute>
</xsl:if>
<xsl:choose>
<xsl:when test="@description">
<xsl:attribute name='alt'>
<xsl:value-of select="@description"/>
</xsl:attribute>
</xsl:when>
<xsl:when test="ancestor::ltx:figure/ltx:caption">
<xsl:attribute name='alt'>
<xsl:value-of select="ancestor::ltx:figure/ltx:caption/text()"/>
</xsl:attribute>
</xsl:when>
<xsl:otherwise>
<xsl:attribute name='alt'></xsl:attribute> <!--required; what else? -->
</xsl:otherwise>
</xsl:choose>
<xsl:apply-templates select="." mode="begin">
<xsl:with-param name="context" select="$context"/>
</xsl:apply-templates>
<xsl:apply-templates select="." mode="end">
<xsl:with-param name="context" select="$context"/>
</xsl:apply-templates>
</xsl:element>
</xsl:template>
<!-- svg graphics should use the object tag, rather than img,
to preserve any interactivity. -->
<xsl:template match="ltx:graphics[f:ends-with(@imagesrc,'.svg')='true']">
<xsl:param name="context"/>
<xsl:element name="object" namespace="{$html_ns}">
<xsl:attribute name="type">image/svg+xml</xsl:attribute>
<xsl:attribute name="data"><xsl:value-of select="f:url(@imagesrc)"/></xsl:attribute>
<xsl:call-template name="add_id"/>
<xsl:call-template name="add_attributes">
<xsl:with-param name="extra_style">
<xsl:if test="@imagedepth">
<xsl:value-of select="concat('vertical-align:-',@imagedepth,'px')"/>
</xsl:if>
</xsl:with-param>
</xsl:call-template>
<xsl:if test="@imagewidth">
<xsl:attribute name='width'>
<xsl:value-of select="@imagewidth"/>
</xsl:attribute>
</xsl:if>
<xsl:if test="@imageheight">
<xsl:attribute name='height'>
<xsl:value-of select="@imageheight"/>
</xsl:attribute>
</xsl:if>
<xsl:choose>
<xsl:when test="@description">
<xsl:attribute name='alt'>
<xsl:value-of select="@description"/>
</xsl:attribute>
</xsl:when>
<xsl:when test="ancestor::ltx:figure/ltx:caption">
<xsl:attribute name='alt'>
<xsl:value-of select="ancestor::ltx:figure/ltx:caption/text()"/>
</xsl:attribute>
</xsl:when>
<xsl:otherwise>
<xsl:attribute name='alt'></xsl:attribute> <!--required; what else? -->
</xsl:otherwise>
</xsl:choose>
<xsl:apply-templates select="." mode="begin">
<xsl:with-param name="context" select="$context"/>
</xsl:apply-templates>
<xsl:apply-templates select="." mode="end">
<xsl:with-param name="context" select="$context"/>
</xsl:apply-templates>
</xsl:element>
</xsl:template>
<!-- ======================================================================
Passing Raw HTML thru
====================================================================== -->
<xsl:template match="ltx:rawhtml">
<xsl:apply-templates mode="copy-foreign"/>
</xsl:template>
<xsl:template match="ltx:rawliteral">
<xsl:text disable-output-escaping="yes"><</xsl:text>
<xsl:value-of select="@open"/>
<xsl:text> </xsl:text>
<xsl:value-of select="text()"/>
<xsl:text> </xsl:text>
<xsl:value-of select="@close"/>
<xsl:text disable-output-escaping="yes">></xsl:text>
</xsl:template>
<!-- ======================================================================
SVG Handled in its own module.
====================================================================== -->
</xsl:stylesheet>
|