-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathestilo.dsl
120 lines (88 loc) · 2.48 KB
/
estilo.dsl
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
<!DOCTYPE style-sheet PUBLIC "-//James Clark//DTD DSSSL Style Sheet//EN" [
<!ENTITY % html "IGNORE">
<![%html;[
<!ENTITY % print "INCLUDE">
<!ENTITY docbook.dsl PUBLIC "-//Norman Walsh//DOCUMENT DocBook HTML Stylesheet//EN" CDATA dsssl>
]]>
<!ENTITY % print "INCLUDE">
<![%print;[
<!ENTITY docbook.dsl PUBLIC "-//Norman Walsh//DOCUMENT DocBook Print Stylesheet//EN" CDATA dsssl>
]]>
<!ENTITY docbookrep-html.dsl SYSTEM "docbookrep_html.dsl">
<!ENTITY docbookrep-tex.dsl SYSTEM "docbookrep_tex.dsl">
]>
<!-- Detalles de estilo. Dominio público -->
<style-sheet>
<style-specification id="print" use="docbook">
<style-specification-body>
;; printing:
<![%print;[
&docbookrep-tex.dsl;
(define (article-titlepage-recto-elements)
(list (normalize "title")
(normalize "subtitle")
(normalize "corpauthor")
(normalize "authorgroup")
(normalize "author")
(normalize "edition")
(normalize "pubdate")
(normalize "legalnotice")
(normalize "revhistory")
(normalize "abstract")))
(define bop-footnotes
;; Make "bottom-of-page" footnotes?
#t)
(define tex-backend #t)
(define %graphic-default-extension%
;; Default extension for graphic FILEREFs
"eps")
(define %generate-article-titlepage%
;; Should an article title page be produced?
#t)
(define %article-titlepage-legalnotice%
;; Legal notice in article
#t)
(define %chapter-autolabel%
;; Default extension for graphic FILEREFs
#f)
(define %section-autolabel%
;; Default extension for graphic FILEREFs
#f)
(define %generate-book-toc%
;; Sin tabla de contenido
#f)
(define $generate-chapter-toc$
;; Sin tabla de contenido en capitulo
(lambda () #f))
]]>
</style-specification-body>
</style-specification>
<style-specification id="html" use="docbook">
<style-specification-body>
;; HTML
<![%html;[
&docbookrep-html.dsl;
(define use-id-as-filename
#t)
(define citerefentry-link
#t)
(define %graphic-default-extension%
;; Default extension for graphic FILEREFs
"png")
(define %chapter-autolabel%
;; Default extension for graphic FILEREFs
#t)
(define %section-autolabel%
;; Default extension for graphic FILEREFs
#t)
(define %html-ext%
;; when producing HTML files, use this extension
".html")
(define %root-filename%
;; when producing HTML files, use this extension
"index")
]]>
</style-specification-body>
</style-specification>
<external-specification id="docbook" document="docbook.dsl">
</style-sheet>