]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-1.1.2
authorfred <fred>
Tue, 26 Mar 2002 21:28:43 +0000 (21:28 +0000)
committerfred <fred>
Tue, 26 Mar 2002 21:28:43 +0000 (21:28 +0000)
Documentation/tex/fonts.doc
Documentation/topdocs/index.yo
init/lily.scm [new file with mode: 0644]
init/scm.ly
lily/GNUmakefile
stepmake/stepmake/tex-rules.make

index bc5bce86401f65961b747b39130ba9d48ce8b0af..9248bb815c456a690b11cb1cc975fdd6c38e50ba 100644 (file)
@@ -28,9 +28,10 @@ typography of all.
 % stupid test to check convert-mudela.py.
 %
 % (so sue me)
-\begin{mudela}[fragment,center]
-  \clef bass; c1 \clef alto; c'2  \clef treble; c''4
-\end{mudela}
+% well, make website breaks...
+% \begin{mudela}[fragment,center]
+%   \clef bass; c1 \clef alto; c'2  \clef treble; c''4
+% \end{mudela}
 
 
 \section{Bezier curves for slurs}
index 1307c60e3bc888c29ac3c615e2c30e74cd3baf72..efbd28a923ea2c0f063a91dde5d487b0f0742e68 100644 (file)
@@ -39,6 +39,7 @@ nsect(Sites)
 
 description(
 dit(lurl(http://www.cs.uu.nl/people/hanwen/lilypond/))Han-Wen's site.
+dit(lurl(http://www.xs4all.nl/jantien/lilypond/))Jan's site.
 dit(lurl(http://www.realtime.net/~daboys/lilypond/))Jeff's Windows NT Distribution site.
 )
 
diff --git a/init/lily.scm b/init/lily.scm
new file mode 100644 (file)
index 0000000..ce384d2
--- /dev/null
@@ -0,0 +1,395 @@
+; lily.scm -- implement Scheme output routines for TeX and PostScript
+;
+;  source file of the GNU LilyPond music typesetter
+; 
+; (c) 1998 Jan Nieuwenhuizen <janneke@gnu.org>
+
+;;; graphical lisp element
+(define (add-column p) (display "adding column (in guile): ") (display p) (newline))
+
+;;; library funtions
+(define
+  (numbers->string l)
+  (apply string-append 
+  (map (lambda (n) (string-append (number->string n) " ")) l)))
+
+(define (number->octal-string x)
+  (let* ((n (inexact->exact x))
+         (n64 (quotient n 64))
+         (n8 (quotient (- n (* n64 64)) 8)))
+        (string-append
+         (number->string n64)
+         (number->string n8)
+         (number->string (remainder (- n (+ (* n64 64) (* n8 8))) 8)))))
+
+(define (inexact->string x radix)
+  (let ((n (inexact->exact x)))
+       (number->string n radix)))
+
+(define 
+  (number->dim-tex x)
+  (string-append 
+   (number->string x) "pt "))
+
+(define
+  (control->string c)
+  (string-append
+    (string-append (number->string (car c)) " ")
+    (string-append (number->string (cadr c)) " ")))
+
+(define
+  (invoke-output o s)
+   (eval-string (string-append s "-" o)))
+
+;;; output definitions
+
+(define 
+  (beam o width slope thick) 
+  ((invoke-output o "beam") width slope thick))
+
+(define 
+  (beam-ps width slope thick)
+  (string-append
+   (numbers->string (list width slope thick)) " draw_beam " ))
+
+(define 
+  (beam-tex width slope thick)
+  (string-append 
+    "\\embeddedps{"
+    (beam-ps width slope thick)
+   "}"))
+
+(define 
+  (bracket o h) (empty o))
+
+(define 
+  (char o n) 
+  ((invoke-output o "char") n))
+
+(define 
+  (char-ps n) 
+  (string-append 
+   "(\\" (inexact->string n 8) ") show"))
+
+(define 
+  (char-tex n) 
+  (string-append 
+   "\\char" (inexact->string n 10)))
+
+(define 
+  (dashed-slur o thick dash l) 
+  ((invoke-output o "dashed-slur") thick dash l))
+
+(define 
+  (dashed-slur-ps thick dash l)
+  (string-append 
+    (apply string-append (map control->string l)) 
+    (number->string thick) 
+   " [ "
+   (if (> 1 dash) (number->string (- (* thick dash) thick)) "0") " "
+   (number->string (* 2 thick))
+   " ] 0 draw_dashed_slur"))
+
+(define 
+  (dashed-slur-tex thick dash l)
+  (string-append 
+    "\\embeddedps{"
+    (dashed-slur-ps thick dash l)
+   "}"))
+
+(define 
+  (empty o) 
+  ((invoke-output o "empty")))
+
+(define 
+  (empty-ps) 
+  "\n empty\n")
+
+(define 
+  (empty-tex) 
+  "%\n\\empty%\n")
+
+(define 
+  (end-output o) 
+  ((invoke-output o "end-output")))
+
+(define 
+  (end-output-ps)
+  "\nshowpage\n")
+
+(define 
+  (end-output-tex) 
+  "\n\\EndLilyPondOutput")
+
+(define 
+  (experimental-on o) 
+  ((invoke-output o "experimental-on")))
+
+(define
+  (experimental-on-ps) "")
+
+(define
+  (experimental-on-tex) "\\turnOnExperimentalFeatures")
+
+(define
+  (finishbar o h) (empty o))
+
+(define
+  (font i)
+  (string-append
+   "font"
+   (make-string 1 (integer->char (+ (char->integer #\A) i)))
+   ))
+
+(define 
+  (font-def o i s) 
+  (empty o))
+;  ((invoke-output o "font-def") i s))
+
+(define 
+  (font-def-ps i s)
+  (string-append
+   "\n/" (font i) " {/" 
+   (substring s 0 (- (string-length s) 3))
+   " findfont 12 scalefont setfont} bind def\n"))
+
+(define 
+  (font-def-tex i s)
+  (string-append
+   "\\font" (font-switch-tex i) "=" s "\n"))
+
+(define 
+  (font-switch o i) 
+  ((invoke-output o "font-switch") i))
+
+(define 
+  (font-switch-ps i)
+  (string-append (font i) " "))
+
+(define 
+  (font-switch-tex i)
+  (string-append
+   "\\" (font i) "\n"))
+
+(define 
+  (generalmeter o num den)
+   ((invoke-output o "generalmeter") num den))
+
+(define 
+  (generalmeter-ps num den)
+  (string-append (number->string (inexact->exact num)) " " (number->string (inexact->exact den)) " generalmeter "))
+
+(define 
+  (generalmeter-tex num den)
+  (string-append 
+   "\\generalmeter{" (number->string (inexact->exact num)) "}{" (number->string (inexact->exact den)) "}"))
+
+(define 
+  (header o creator generate) 
+  ((invoke-output o "header") creator generate))
+
+(define 
+  (header-ps creator generate) 
+  (string-append
+   "%!PS-Adobe-3.0\n"
+   "%%Creator: " creator generate "\n"))
+
+(define 
+  (header-tex creator generate) 
+  (string-append
+   "%created by: " creator generate "\n"))
+
+(define 
+  (header-end o) 
+  ((invoke-output o "header-end")))
+
+(define
+  (header-end-ps) "")
+
+(define
+  (header-end-tex) "\\turnOnPostScript")
+
+(define
+  (lily-def o key val)
+  ((invoke-output o "lily-def") key val))
+
+(define
+  (lily-def-ps key val)
+  (string-append
+   "/" key " {" val "} bind def\n"))
+
+(define
+  (lily-def-tex key val)
+  (string-append
+   "\\def\\" key "{" val "}\n"))
+
+(define 
+  (maatstreep o h) 
+  ((invoke-output o "maatstreep") h))
+
+(define 
+  (maatstreep-ps h)
+  (string-append
+   (number->string h) " maatstreep " ))
+
+(define 
+  (maatstreep-tex h)
+  (string-append
+   "\n\\maatstreep{" (number->dim-tex h) "}"))
+
+(define 
+  (pianobrace o h) (empty o))
+
+(define 
+  (placebox o x y b) 
+  ((invoke-output o "placebox") x y (b o)))
+
+(define 
+  (placebox-ps x y s) 
+  (string-append 
+   (number->string x) " " (number->string y) " {" s "} placebox "))
+
+(define 
+  (placebox-tex x y s) 
+  (string-append 
+   "\\placebox{"
+   (number->dim-tex y) "}{" (number->dim-tex x) "}{" s "}"))
+
+(define
+  (repeatbar o h) (empty o))
+
+(define 
+  (rulesym o x y) 
+  ((invoke-output o "rulesym") x y))
+
+(define 
+  (rulesym-ps x y) 
+  (string-append 
+   (number->string x) " "
+   (number->string y) " "
+   "rulesym"))
+
+(define 
+  (rulesym-tex x y) 
+  (string-append 
+   "\\rulesym{" (number->dim-tex x) "}{" (number->dim-tex y) "}"))
+
+(define 
+  (setbold o s) 
+  ((invoke-output o "text") "bold" s))
+
+(define
+  (setdynamic o s) (empty o))
+
+(define 
+  (setfinger o s) 
+  ((invoke-output o "text") "finger" s))
+
+(define 
+  (sethuge o s) 
+  ((invoke-output o "text") "huge" s))
+
+(define 
+  (setitalic o s) 
+  ((invoke-output o "text") "italic" s))
+
+(define 
+  (setlarge o s) 
+  ((invoke-output o "text") "large" s))
+
+(define 
+  (setLarge o s) 
+  ((invoke-output o "text") "Large" s))
+
+(define 
+  (settext o s) 
+  ((invoke-output o "text") "text" s))
+
+(define 
+  (slur o l) 
+  ((invoke-output o "slur") l))
+
+(define 
+  (slur-ps l)
+  (string-append 
+   (apply string-append (map control->string l)) 
+   " draw_slur"))
+
+(define 
+  (slur-tex l)
+  (string-append 
+   "\\embeddedps{"
+   (slur-ps l)
+   "}"))
+
+(define 
+  (stem o kern width height depth) 
+  ((invoke-output o "stem") kern width height depth))
+
+(define 
+  (stem-ps kern width height depth) 
+  (string-append (numbers->string (list kern width height depth))
+                "draw_stem" ))
+
+(define 
+  (stem-tex kern width height depth) 
+  (string-append 
+   "\\kern" (number->dim-tex kern)
+   "\\vrule width " (number->dim-tex width)
+   "depth " (number->dim-tex depth)
+   "height " (number->dim-tex height) " "))
+
+(define 
+  (start-line o) 
+  ((invoke-output o "start-line")))
+
+(define 
+  (start-line-ps) 
+  (string-append
+   (urg-fix-font-ps)
+   "\nstart_line {\n"))
+
+(define 
+  (start-line-tex) 
+  (string-append 
+   (urg-fix-font-tex)
+   "\\hbox{%\n"))
+
+(define
+  (startrepeat o h) (empty o))
+
+(define 
+  (stop-line o) 
+  ((invoke-output o "stop-line")))
+
+(define 
+  (stop-line-ps) 
+  "}\nstop_line\n")
+
+(define 
+  (stop-line-tex) 
+  "}\\interscoreline")
+
+(define
+  (stoprepeat o h) (empty o))
+
+(define
+  (text-ps f s)
+  (string-append "(" s ") set" f " "))
+
+(define
+  (text-tex f s)
+  (string-append "\\set" f "{" s "}"))
+
+(define
+  (urg-fix-font-ps)
+  "/fontA { /feta20 findfont 12 scalefont setfont} bind def fontA\n")
+
+(define
+  (urg-fix-font-tex)
+  "\\font\\fontA=feta20.afm\\fontA\n")
+
+(define 
+  (urg-font-switch-ps i)
+  "\n/feta20 findfont 12 scalefont setfont \n")
+
index f576ea8875e94cdb225d4ee78febe839d1edeb49..1d455482954d4391e7309aaa99dc677453e881af 100644 (file)
@@ -5,384 +5,5 @@
 % (c) 1998 Jan Nieuwenhuizen <janneke@gnu.org>
 
 \scm "
-
-;;; graphical lisp element
-(define (add-column p) (display \"adding column (in guile): \") (display p) (newline))
-
-;;; library funtions
-(define
-  (numbers->string l)
-  (apply string-append 
-  (map (lambda (n) (string-append (number->string n) \" \")) l)))
-
-(define (number->octal-string x)
-  (let* ((n (inexact->exact x))
-         (n64 (quotient n 64))
-         (n8 (quotient (- n (* n64 64)) 8)))
-        (string-append
-         (number->string n64)
-         (number->string n8)
-         (number->string (remainder (- n (+ (* n64 64) (* n8 8))) 8)))))
-
-(define (inexact->string x radix)
-  (let ((n (inexact->exact x)))
-       (number->string n radix)))
-
-(define 
-  (number->dim-tex x)
-  (string-append 
-   (number->string x) \"pt \"))
-
-(define
-  (control->string c)
-  (string-append
-    (string-append (number->string (car c)) \" \")
-    (string-append (number->string (cadr c)) \" \")))
-
-(define
-  (invoke-output o s)
-   (eval-string (string-append s \"-\" o)))
-
-;;; output definitions
-
-(define 
-  (beam o width slope thick) 
-  ((invoke-output o \"beam\") width slope thick))
-
-(define 
-  (beam-ps width slope thick)
-  (string-append
-   (numbers->string (list width slope thick)) \" draw_beam \" ))
-
-(define 
-  (beam-tex width slope thick)
-  (string-append 
-    \"\\\\embeddedps{\"
-    (beam-ps width slope thick)
-   \"}\"))
-
-(define 
-  (char o n) 
-  ((invoke-output o \"char\") n))
-
-(define 
-  (char-ps n) 
-  (string-append 
-   \"(\\\\\" (inexact->string n 8) \") show\"))
-
-(define 
-  (char-tex n) 
-  (string-append 
-   \"\\\\char\" (inexact->string n 10)))
-
-(define 
-  (dashed-slur o thick dash l) 
-  ((invoke-output o \"dashed-slur\") thick dash l))
-
-(define 
-  (dashed-slur-ps thick dash l)
-  (string-append 
-    (apply string-append (map control->string l)) 
-    (number->string thick) 
-   \" [ \"
-   (if (> 1 dash) (number->string (- (* thick dash) thick)) \"0\") \" \"
-   (number->string (* 2 thick))
-   \" ] 0 draw_dashed_slur\"))
-
-(define 
-  (dashed-slur-tex thick dash l)
-  (string-append 
-    \"\\\\embeddedps{\"
-    (dashed-slur-ps thick dash l)
-   \"}\"))
-
-(define 
-  (empty o) 
-  ((invoke-output o \"empty\")))
-
-(define 
-  (empty-ps) 
-  \"\n empty\n\")
-
-(define 
-  (empty-tex) 
-  \"%\n\\\\empty%\n\")
-
-(define 
-  (end-output o) 
-  ((invoke-output o \"end-output\")))
-
-(define 
-  (end-output-ps)
-  \"\nshowpage\n\")
-
-(define 
-  (end-output-tex) 
-  \"\n\\\\EndLilyPondOutput\")
-
-(define 
-  (experimental-on o) 
-  ((invoke-output o \"experimental-on\")))
-
-(define
-  (experimental-on-ps) \"\")
-
-(define
-  (experimental-on-tex) \"\\\\turnOnExperimentalFeatures\")
-
-(define
-  (finishbar o h) (empty o))
-
-(define
-  (font i)
-  (string-append
-   \"font\"
-   (make-string 1 (integer->char (+ (char->integer #\\A) i)))
-   ))
-
-(define 
-  (font-def o i s) 
-  (empty o))
-;  ((invoke-output o \"font-def\") i s))
-
-(define 
-  (font-def-ps i s)
-  (string-append
-   \"\n/\" (font i) \" {/\" 
-   (substring s 0 (- (string-length s) 3))
-   \" findfont 12 scalefont setfont} bind def\n\"))
-
-(define 
-  (font-def-tex i s)
-  (string-append
-   \"\\\\font\" (font-switch-tex i) \"=\" s \"\n\"))
-
-(define 
-  (font-switch o i) 
-  ((invoke-output o \"font-switch\") i))
-
-(define 
-  (font-switch-ps i)
-  (string-append (font i) \" \"))
-
-(define 
-  (font-switch-tex i)
-  (string-append
-   \"\\\\\" (font i) \"\n\"))
-
-(define 
-  (generalmeter o num den)
-   ((invoke-output o \"generalmeter\") num den))
-
-(define 
-  (generalmeter-ps num den)
-  (string-append (number->string (inexact->exact num)) \" \" (number->string (inexact->exact den)) \" generalmeter \"))
-
-(define 
-  (generalmeter-tex num den)
-  (string-append 
-   \"\\\\generalmeter{\" (number->string (inexact->exact num)) \"}{\" (number->string (inexact->exact den)) \"}\"))
-
-(define 
-  (header o creator generate) 
-  ((invoke-output o \"header\") creator generate))
-
-(define 
-  (header-ps creator generate) 
-  (string-append
-   \"%!PS-Adobe-3.0\n\"
-   \"%%Creator: \" creator generate \"\n\"))
-
-(define 
-  (header-tex creator generate) 
-  (string-append
-   \"%created by: \" creator generate \"\n\"))
-
-(define 
-  (header-end o) 
-  ((invoke-output o \"header-end\")))
-
-(define
-  (header-end-ps) \"\")
-
-(define
-  (header-end-tex) \"\\\\turnOnPostScript\")
-
-(define
-  (lily-def o key val)
-  ((invoke-output o \"lily-def\") key val))
-
-(define
-  (lily-def-ps key val)
-  (string-append
-   \"/\" key \" {\" val \"} bind def\n\"))
-
-(define
-  (lily-def-tex key val)
-  (string-append
-   \"\\\\def\\\\\" key \"{\" val \"}\n\"))
-
-(define 
-  (maatstreep o h) 
-  ((invoke-output o \"maatstreep\") h))
-
-(define 
-  (maatstreep-ps h)
-  (string-append
-   (number->string h) \" maatstreep \" ))
-
-(define 
-  (maatstreep-tex h)
-  (string-append
-   \"\n\\\\maatstreep{\" (number->dim-tex h) \"}\"))
-
-(define 
-  (pianobrace o h) (empty o))
-
-(define 
-  (placebox o x y b) 
-  ((invoke-output o \"placebox\") x y (b o)))
-
-(define 
-  (placebox-ps x y s) 
-  (string-append 
-   (number->string x) \" \" (number->string y) \" {\" s \"} placebox \"))
-
-(define 
-  (placebox-tex x y s) 
-  (string-append 
-   \"\\\\placebox{\"
-   (number->dim-tex y) \"}{\" (number->dim-tex x) \"}{\" s \"}\"))
-
-(define
-  (repeatbar o h) (empty o))
-
-(define 
-  (rulesym o x y) 
-  ((invoke-output o \"rulesym\") x y))
-
-(define 
-  (rulesym-ps x y) 
-  (string-append 
-   (number->string x) \" \"
-   (number->string y) \" \"
-   \"rulesym\"))
-
-(define 
-  (rulesym-tex x y) 
-  (string-append 
-   \"\\\\rulesym{\" (number->dim-tex x) \"}{\" (number->dim-tex y) \"}\"))
-
-(define 
-  (setbold o s) 
-  ((invoke-output o \"text\") \"bold\" s))
-
-(define 
-  (setfinger o s) 
-  ((invoke-output o \"text\") \"finger\" s))
-
-(define 
-  (sethuge o s) 
-  ((invoke-output o \"text\") \"huge\" s))
-
-(define 
-  (setitalic o s) 
-  ((invoke-output o \"text\") \"italic\" s))
-
-(define 
-  (setlarge o s) 
-  ((invoke-output o \"text\") \"large\" s))
-
-(define 
-  (setLarge o s) 
-  ((invoke-output o \"text\") \"Large\" s))
-
-(define 
-  (settext o s) 
-  ((invoke-output o \"text\") \"text\" s))
-
-(define 
-  (slur o l) 
-  ((invoke-output o \"slur\") l))
-
-(define 
-  (slur-ps l)
-  (string-append 
-   (apply string-append (map control->string l)) 
-   \" draw_slur\"))
-
-(define 
-  (slur-tex l)
-  (string-append 
-   \"\\\\embeddedps{\"
-   (slur-ps l)
-   \"}\"))
-
-(define 
-  (stem o kern width height depth) 
-  ((invoke-output o \"stem\") kern width height depth))
-
-(define 
-  (stem-ps kern width height depth) 
-  (string-append (numbers->string (list kern width height depth))
-                \"draw_stem\" ))
-
-(define 
-  (stem-tex kern width height depth) 
-  (string-append 
-   \"\\\\kern\" (number->dim-tex kern)
-   \"\\\\vrule width \" (number->dim-tex width)
-   \"depth \" (number->dim-tex depth)
-   \"height \" (number->dim-tex height) \" \"))
-
-(define 
-  (start-line o) 
-  ((invoke-output o \"start-line\")))
-
-(define 
-  (start-line-ps) 
-  (string-append
-   (urg-fix-font-ps)
-   \"\nstart_line {\n\"))
-
-(define 
-  (start-line-tex) 
-  (string-append 
-   (urg-fix-font-tex)
-   \"\\\\hbox{%\n\"))
-
-(define 
-  (stop-line o) 
-  ((invoke-output o \"stop-line\")))
-
-(define 
-  (stop-line-ps) 
-  \"}\nstop_line\n\")
-
-(define 
-  (stop-line-tex) 
-  \"}\\\\interscoreline\")
-
-(define
-  (text-ps f s)
-  (string-append \"(\" s \") set\" f \" \"))
-
-(define
-  (text-tex f s)
-  (string-append \"\\\\set\" f \"{\" s \"}\"))
-
-(define
-  (urg-fix-font-ps)
-  \"/fontA { /feta20 findfont 12 scalefont setfont} bind def fontA\n\")
-
-(define
-  (urg-fix-font-tex)
-  \"\\\\font\\\\fontA=feta20.afm\\\\fontA\n\")
-
-(define 
-  (urg-font-switch-ps i)
-  \"\n/feta20 findfont 12 scalefont setfont \n\")
-
+(primitive-load-path 'lily)
 ";
-
-
index e04d9f6476111913be48f36e9e91260d76d83a77..9dae2238bdb150d79b98b35e8575a87ded199e68 100644 (file)
@@ -11,11 +11,6 @@ MODULE_INCLUDES=$(depth)/lib/include $(depth)/flower/include
 
 STEPMAKE_TEMPLATES= c++ executable
 
-MODULE_LIBES=-lguile 
-
-# for the RedHat GUILE 1.3 RPM 
-MODULE_LIBES+= -lreadline -ldl 
-
 include $(depth)/make/stepmake.make 
 
 # force these: Make can't know these have to be generated in advance
index fa98675682aaca8208f24a7131517e66d89615fa..da6762647faf4f4134b69bcefcda4592af72a098 100644 (file)
@@ -1,4 +1,6 @@
 
+$(outdir)/%.tex: %.tex
+       $(LN) $< $@
 
 $(outdir)/%.dvi: $(outdir)/%.tex
        (cd $(outdir); tex \\nonstopmode \\input $(<F))