-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
estilo.dsl
86 lines (62 loc) · 1.74 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
<!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 éstilo. Cedido al dominio público. -->
<style-sheet>
<style-specification id="print" use="docbook">
<style-specification-body>
;; printing:
<![%print;[
&docbookrep-tex.dsl;
(define bop-footnotes
;; Make "bottom-of-page" footnotes?
#t)
(define tex-backend #t)
(define %graphic-default-extension%
;; Default extension for graphic FILEREFs
"eps")
(define %chapter-autolabel%
;; Default extension for graphic FILEREFs
#t)
(define %section-autolabel%
;; Default extension for graphic FILEREFs
#t)
]]>
</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%
"index")
]]>
</style-specification-body>
</style-specification>
<external-specification id="docbook" document="docbook.dsl">
</style-sheet>