]> git.donarmstrong.com Git - lilypond.git/blob - scm/output-tex.scm
*** empty log message ***
[lilypond.git] / scm / output-tex.scm
1 ;;;; tex.scm -- implement Scheme output routines for TeX
2 ;;;;
3 ;;;;  source file of the GNU LilyPond music typesetter
4 ;;;; 
5 ;;;; (c)  1998--2004 Jan Nieuwenhuizen <janneke@gnu.org>
6 ;;;;                  Han-Wen Nienhuys <hanwen@cs.uu.nl>
7
8
9 ;; (debug-enable 'backtrace)
10
11 ;; the public interface is tight.
12 ;; It has to be, because user-code is evalled with this module.
13
14 (define-module (scm output-tex)
15   #:re-export (quote)
16   #:export (unknown
17              blank
18              dot
19              beam
20              bracket
21              dashed-slur
22              char
23              dashed-line
24              zigzag-line
25              symmetric-x-triangle
26              ez-ball
27              comment
28              repeat-slash
29              placebox
30              bezier-sandwich
31              horizontal-line
32              filledbox
33              round-filled-box
34              text
35              tuplet
36              polygon
37              draw-line
38              define-origin
39              no-origin
40              ))
41
42 (use-modules (ice-9 regex)
43              (ice-9 string-fun)
44              (ice-9 format)
45              (guile)
46              (srfi srfi-13)
47              (scm framework-tex)
48              (lily))
49
50 ;;;;;;;;
51 ;;;;;;;; DOCUMENT ME!
52 ;;;;;;;;
53
54
55
56 (define (unknown) 
57   "%\n\\unknown\n")
58
59
60
61 (define (blank)
62   "")
63
64 (define (dot x y radius)
65   (embedded-ps (list 'dot x y radius)))
66
67 (define (beam width slope thick blot)
68   (embedded-ps (list 'beam  width slope thick blot)))
69
70 (define (bracket arch_angle arch_width arch_height height arch_thick thick)
71   (embedded-ps (list 'bracket  arch_angle arch_width arch_height height arch_thick thick)))
72
73 (define (dashed-slur thick dash l)
74   (embedded-ps (list 'dashed-slur thick dash `(quote ,l))))
75
76 (define (char font i)
77   (string-append "\\" (tex-font-command font)
78                  "\\char" (ly:inexact->string i 10) " "))
79
80 (define (dashed-line thick on off dx dy)
81   (embedded-ps (list 'dashed-line  thick on off dx dy)))
82
83 (define (zigzag-line centre? zzw zzh thick dx dy)
84   (embedded-ps (list 'zigzag-line centre? zzw zzh thick dx dy)))
85
86 (define (symmetric-x-triangle t w h)
87   (embedded-ps (list 'symmetric-x-triangle t w h)))
88
89
90 (define (ez-ball c l b)
91   (embedded-ps (list 'ez-ball  c  l b)))
92
93
94
95 (define (embedded-ps expr)
96   (let ((ps-string
97          (with-output-to-string
98            (lambda () (ps-output-expression expr (current-output-port))))))
99     (string-append "\\embeddedps{" ps-string "}")))
100   
101
102 (define (repeat-slash w a t)
103   (embedded-ps (list 'repeat-slash  w a t)))
104
105
106
107 (define (number->dim x)
108   (string-append
109    ;;ugh ly:* in backend needs compatibility func for standalone output
110    (ly:number->string x) " \\outputscale "))
111
112 (define (placebox x y s) 
113   (string-append
114    "\\lyitem{" (ly:number->string x) "}{" (ly:number->string y) "}{" s "}%\n"))
115
116 (define (bezier-sandwich l thick)
117   (embedded-ps (list 'bezier-sandwich  `(quote ,l) thick)))
118
119 ;; WTF is this in every backend?
120 (define (horizontal-line x1 x2 th)
121   (filledbox (- x1) (- x2 x1) (* .5 th) (* .5 th)))
122
123 (define (filledbox breapth width depth height)
124   (if (and #f (defined? 'ps-testing))
125       (embedded-ps
126        (string-append (ly:numbers->string (list breapth width depth height))
127                       " draw_box" ))
128       (string-append "\\lyvrule{"
129                      (ly:number->string (- breapth)) "}{"
130                      (ly:number->string (+ breapth width)) "}{"
131                      (ly:number->string depth) "}{"
132                      (ly:number->string height) "}")))
133
134 (define (round-filled-box x y width height blotdiam)
135   (embedded-ps (list 'round-filled-box  x y width height blotdiam)))
136
137 (define (text font s)
138   (let*
139       ((mapping #f)       ;; (assoc-get  'char-mapping (ly:font-encoding-alist font))))
140
141
142        ;; TODO: we'd better do this for PS only
143        ;; LaTeX gets in the way, and we need to remap
144        ;; nonprintable chars.
145        
146        (input-enc-name #f) ;; (assoc-get 'input-name (ly:font-encoding-alist font) ))
147        )
148
149     (string-append "\\hbox{\\" (tex-font-command font)
150                    (if (string? input-enc-name)
151                        (string-append "\\inputencoding{" input-enc-name "}")
152                        "{}")
153                    (sanitize-tex-string
154                     (if (vector? mapping)
155                         (reencode-string mapping s)
156                         s))
157                    "}")))
158
159
160 (define (tuplet ht gapx dx dy thick dir)
161   (embedded-ps (list 'tuplet  ht gapx dx dy thick dir)))
162
163 (define (polygon points blotdiameter)
164   (embedded-ps (list 'polygon `(quote ,points) blotdiameter)))
165
166 (define (draw-line thick fx fy tx ty)
167   (embedded-ps (list 'draw-line thick fx fy tx ty)))
168
169 (define (define-origin file line col)
170   (if (procedure? point-and-click)
171       (string-append "\\special{src:" ;;; \\string ? 
172                      (point-and-click line col file)
173                      "}" )
174       ""))
175
176 ;; no-origin not yet supported by Xdvi
177 (define (no-origin) "")
178