/usr/share/perl5/LaTeXML/style/LaTeXML-para-xhtml.xsl is in latexml 0.7.0-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | <?xml version="1.0" encoding="utf-8"?>
<!--
/=====================================================================\
| LaTeXML-para-xhtml.xsl |
| Converting various (logical) para-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 = "http://www.w3.org/1999/xhtml"
xmlns:f = "http://dlmf.nist.gov/LaTeXML/functions"
extension-element-prefixes="f"
exclude-result-prefixes = "ltx f">
<!-- ======================================================================
Logical paragraphs
====================================================================== -->
<xsl:template match="ltx:para" xml:space="preserve">
<div class="{f:classes(.)}"><xsl:call-template name="add_id"/><xsl:apply-templates/></div>
</xsl:template>
<!-- ======================================================================
Theorems
====================================================================== -->
<xsl:template match="ltx:theorem | ltx:proof" xml:space="preserve">
<div class='{f:classes(.)}'><xsl:call-template name="add_id"/>
<xsl:apply-templates/>
</div>
</xsl:template>
<xsl:template match="ltx:theorem/ltx:title | ltx:proof/ltx:title" xml:space="preserve">
<h6 class='{f:classes(.)}'><xsl:apply-templates/></h6>
</xsl:template>
<!-- ======================================================================
Figures & Tables
====================================================================== -->
<xsl:template match="ltx:figure | ltx:table | ltx:listing" xml:space="preserve">
<div class='{f:classes(.)}'><xsl:call-template name="add_id"/><xsl:apply-templates/></div>
</xsl:template>
<xsl:template match="ltx:figure/ltx:caption" xml:space="preserve">
<div class='{f:classes(.)}'>
<xsl:if test="../@refnum">
Figure <xsl:apply-templates select="../@refnum"/><xsl:text>. </xsl:text>
</xsl:if>
<xsl:apply-templates/>
</div>
</xsl:template>
<xsl:template match="ltx:table/ltx:caption" xml:space="preserve">
<div class='{f:classes(.)}'>
<xsl:if test="../@refnum">
Table <xsl:apply-templates select="../@refnum"/><xsl:text>. </xsl:text>
</xsl:if>
<xsl:apply-templates/>
</div>
</xsl:template>
<xsl:template match="ltx:listing/ltx:caption" xml:space="preserve">
<div class='{f:classes(.)}'>
<xsl:if test="../@refnum">
Listing <xsl:apply-templates select="../@refnum"/><xsl:text>. </xsl:text>
</xsl:if>
<xsl:apply-templates/>
</div>
</xsl:template>
<xsl:template match="ltx:listing/ltx:tabular" xml:space="preserve">
<table class="{f:classes(.)}">
<xsl:apply-templates/>
</table>
</xsl:template>
<xsl:template match="ltx:toccaption"/>
</xsl:stylesheet>
|