-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathestilohtml.xsl
37 lines (26 loc) · 1.05 KB
/
estilohtml.xsl
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
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE xsl:stylesheet [
<!ENTITY % confv SYSTEM "confv.ent">
%confv;
]>
<!-- Detalles de estilo. Dominio público -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version='1.0'
xmlns="http://www.w3.org/TR/xhtml1/transitional"
exclude-result-prefixes="#default">
<xsl:import href="&DOCBOOK-XSL;/html/&DOCBOOK-XSL-HTML;"/>
<!-- No table of contents -->
<xsl:param name="generate.toc">book nop"</xsl:param>
<xsl:include href="&REPASA-DOCBOOK-XSL-HTML;"/>
<!-- Chapters are not numerated -->
<xsl:variable name="chapter.autolabel">0</xsl:variable>
<xsl:template match="article/title" mode="titlepage.mode" priority="2">
<hr/>
<xsl:call-template name="component.title">
<xsl:with-param name="node" select="ancestor::article[1]"/>
</xsl:call-template>
</xsl:template>
<!-- <xsl:variable name="html.stylesheet">evangelios_dp.css</xsl:variable>
<xsl:variable name="css.decoration">1</xsl:variable>
<xsl:variable name="emphasis.propagates.style">1</xsl:variable> -->
</xsl:stylesheet>