blob: 82252d877af7f34f9a0c9081b6a118f6f7e8a4b3 (
plain)
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
|
<?xml version="1.0" encoding="utf-8"?>
<!--
/=====================================================================\
| LaTeXML-bib-xhtml.xsl |
| Converting documents structure 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">
<!-- ======================================================================
Bibliography (AFTER conversion to presentation; ie only bibitem's)
====================================================================== -->
<!-- NOTE: bibentry (and all it's components) are converted by postprocessing. -->
<xsl:template match="ltx:biblist" xml:space="preserve">
<ul class="{f:classes(.)}"><xsl:call-template name="add_id"/>
<xsl:apply-templates/>
</ul>
</xsl:template>
<xsl:template match="ltx:bibitem" xml:space="preserve">
<li class="{f:classes(.)}"><xsl:call-template name="add_id"/>
<xsl:apply-templates/>
</li>
</xsl:template>
<xsl:template match="ltx:bibitem/ltx:bibtag[@role='refnum']">
<span class="{f:classes(.)}"><xsl:value-of select="@open"/><xsl:apply-templates/><xsl:value-of select="@close"/></span>
</xsl:template>
<xsl:template match="ltx:bibtag"/>
<xsl:template match="ltx:bibblock" xml:space="preserve">
<div class="bibblock"><xsl:call-template name="add_id"/>
<xsl:apply-templates/>
</div>
</xsl:template>
</xsl:stylesheet>
|