]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/manual/font-table.ly
Fix some bugs in the dynamic engraver and PostScript backend
[lilypond.git] / input / manual / font-table.ly
diff --git a/input/manual/font-table.ly b/input/manual/font-table.ly
deleted file mode 100644 (file)
index b665ed3..0000000
+++ /dev/null
@@ -1,72 +0,0 @@
-
-#(set-global-staff-size 16)
-
-\paper {
-  %% ugh. text on toplevel is a bit broken... .
-  
-  oddHeaderMarkup = \markup {}
-  evenHeaderMarkup = \markup {}
-  oddFooterMarkup = \markup {}
-  evenFooterMarkup = \markup {}
-  }
-
-\version "2.7.39"
-
-#(define (doc-char name)
-  (make-line-markup
-   (list
-    (make-pad-to-box-markup
-     '(0 . 30)
-     '(-2 . 2)
-     (make-typewriter-markup (make-small-markup name)))
-    (make-pad-to-box-markup
-     '(-2 . 2)
-     '(-2 . 2)
-     (make-musicglyph-markup name)))))
-
-#(define (min-length lst n)
-  "(min  (length lst) n)"
-  
-  (if (or (null? lst) (<= n 0))
-   0
-   (1+ (min-length (cdr lst) (1- n)) )))
-
-#(define (doc-chars names acc)
-  (let*
-   ((n (min-length names 2))
-    (head (take names n))
-    (tail (drop names n))
-    )
-
-   (if (null? head)
-    acc
-    (doc-chars  tail
-     (cons (make-line-markup (map doc-char head)) acc)))
-     ))
-
-#(define (group-lines lines)
-  (let*
-   ((n (min-length lines 25))
-    (head (take lines n))
-    (tail (drop lines n))
-    )
-
-   (cons
-    (make-column-markup head)
-    (if (null? tail)
-     '()
-     (group-lines tail)))))
-                       
-#(let*
-  ((lines (doc-chars
-          (ly:otf-glyph-list (ly:font-load "emmentaler-20"))
-        '()))
-   (pages (group-lines (reverse lines))))
-
-  (for-each 
-   (lambda (x)
-    (collect-scores-for-book parser
-     (make-override-markup '(word-space . 8) x)))
-                       pages))
-
-