The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

<?xml version="1.0" encoding="utf-8"?>
<!--
/=====================================================================\
| LaTeXML-epub3.xsl |
| Stylesheet for converting LaTeXML documents to ePub3 |
|=====================================================================|
| 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> #_# |
\=========================================================ooo==U==ooo=/
-->
<xsl:stylesheet
version = "1.0"
exclude-result-prefixes="ltx">
<!-- Include all LaTeXML to xhtml modules -->
<xsl:import href="LaTeXML-all-xhtml.xsl"/>
<!-- Override the output method & parameters -->
<xsl:output
method = "xml"
encoding = 'utf-8'
media-type = 'application/xhtml+xml'/>
<!-- No namespaces; DO use HTML5 elements (include MathML & SVG) -->
<xsl:param name="USE_NAMESPACES" >true</xsl:param>
<xsl:param name="USE_HTML5" >true</xsl:param>
<!-- Do not copy the RDFa prefix, but proceed as usual -->
<xsl:template match="/">
<xsl:apply-templates select="." mode="doctype"/>
<xsl:element name="html" namespace="{$html_ns}">
<xsl:apply-templates select="." mode="begin"/>
<xsl:apply-templates select="." mode="head"/>
<xsl:apply-templates select="." mode="body"/>
<xsl:apply-templates select="." mode="end"/>
<xsl:text>&#x0A;</xsl:text>
</xsl:element>
</xsl:template>
<!-- Generate a meta -->
<xsl:template match="/" mode="head-content-type">
<xsl:text>&#x0A;</xsl:text>
<xsl:element name="meta" namespace="{$html_ns}">
<xsl:attribute name="charset">
<xsl:text>utf-8</xsl:text>
</xsl:attribute>
</xsl:element>
</xsl:template>
<!-- RDFa is invalid in EPUB3, so just skip over it -->
<xsl:template match="ltx:rdf">
</xsl:template>
</xsl:stylesheet>