1 ;;;; tex.scm -- implement Scheme output routines for TeX
3 ;;;; source file of the GNU LilyPond music typesetter
5 ;;;; (c) 1998--2004 Jan Nieuwenhuizen <janneke@gnu.org>
6 ;;;; Han-Wen Nienhuys <hanwen@cs.uu.nl>
9 ;; (debug-enable 'backtrace)
11 ;; The public interface is tight.
12 ;; It has to be, because user-code is evalled with this module.
14 ;; ***It should also be clean, well defined, documented and reviewed***
16 ;; To be reasonably safe, you probably do not want to use the TeX
17 ;; backend anyway, but rather the PostScript backend. You may want
18 ;; to run gs in a uml sandbox too.
21 (define-module (scm output-tex)
24 ;; JUNK this -- see lily.scm: ly:all-output-backend-commands
53 (use-modules (ice-9 regex)
75 (define (dot x y radius)
76 (embedded-ps (list 'dot x y radius)))
78 (define (white-dot x y radius)
79 (embedded-ps (list 'white-dot x y radius)))
81 (define (beam width slope thick blot)
82 (embedded-ps (list 'beam width slope thick blot)))
84 (define (bracket arch_angle arch_width arch_height height arch_thick thick)
85 (embedded-ps (list 'bracket arch_angle arch_width arch_height height arch_thick thick)))
87 (define (dashed-slur thick dash l)
88 (embedded-ps (list 'dashed-slur thick dash `(quote ,l))))
91 (string-append "\\" (tex-font-command font)
92 "\\char" (ly:inexact->string i 10) " "))
94 (define (dashed-line thick on off dx dy)
95 (embedded-ps (list 'dashed-line thick on off dx dy)))
97 (define (zigzag-line centre? zzw zzh thick dx dy)
98 (embedded-ps (list 'zigzag-line centre? zzw zzh thick dx dy)))
100 (define (symmetric-x-triangle t w h)
101 (embedded-ps (list 'symmetric-x-triangle t w h)))
104 (define (ez-ball c l b)
105 (embedded-ps (list 'ez-ball c l b)))
109 (define (embedded-ps expr)
111 (with-output-to-string
112 (lambda () (ps-output-expression expr (current-output-port))))))
113 (string-append "\\embeddedps{" ps-string "}")))
116 (define (repeat-slash w a t)
117 (embedded-ps (list 'repeat-slash w a t)))
121 (define (number->dim x)
123 ;;ugh ly:* in backend needs compatibility func for standalone output
124 (ly:number->string x) " \\outputscale "))
126 (define (placebox x y s)
128 "\\lyitem{" (ly:number->string x) "}{" (ly:number->string y) "}{" s "}%\n"))
130 (define (bezier-sandwich l thick)
131 (embedded-ps (list 'bezier-sandwich `(quote ,l) thick)))
133 ;; WTF is this in every backend?
134 (define (horizontal-line x1 x2 th)
135 (filledbox (- x1) (- x2 x1) (* .5 th) (* .5 th)))
137 (define (filledbox breapth width depth height)
138 (if (and #f (defined? 'ps-testing))
140 (string-append (ly:numbers->string (list breapth width depth height))
142 (string-append "\\lyvrule{"
143 (ly:number->string (- breapth)) "}{"
144 (ly:number->string (+ breapth width)) "}{"
145 (ly:number->string depth) "}{"
146 (ly:number->string height) "}")))
148 (define (round-filled-box x y width height blotdiam)
149 (embedded-ps (list 'round-filled-box x y width height blotdiam)))
151 (define (text font s)
153 ((mapping #f) ;; (assoc-get 'char-mapping (ly:font-encoding-alist font))))
156 ;; TODO: we'd better do this for PS only
157 ;; LaTeX gets in the way, and we need to remap
158 ;; nonprintable chars.
160 (input-enc-name #f) ;; (assoc-get 'input-name (ly:font-encoding-alist font) ))
163 (string-append "\\hbox{\\" (tex-font-command font)
164 (if (string? input-enc-name)
165 (string-append "\\inputencoding{" input-enc-name "}")
168 (if (vector? mapping)
169 (reencode-string mapping s)
173 (define (white-text scale s)
174 (embedded-ps (list 'white-text scale s)))
176 (define (tuplet ht gapx dx dy thick dir)
177 (embedded-ps (list 'tuplet ht gapx dx dy thick dir)))
179 (define (polygon points blotdiameter)
180 (embedded-ps (list 'polygon `(quote ,points) blotdiameter)))
182 (define (draw-line thick fx fy tx ty)
183 (embedded-ps (list 'draw-line thick fx fy tx ty)))
185 ;; no-origin not yet supported by Xdvi
186 (define (no-origin) "")
188 (define (grob-cause grob)
189 (if (procedure? point-and-click)
190 (let* ((cause (ly:grob-property grob 'cause))
191 (music-origin (if (ly:music? cause)
192 (ly:music-property cause 'origin)))
193 (location (if (ly:input-location? music-origin)
194 (ly:input-location music-origin))))
197 (string-append "\\special{src:"
198 (apply point-and-click location) "}")