OLD | NEW |
1 \version "2.19.22" | 1 \version "2.19.22" |
2 | 2 |
3 \header { | 3 \header { |
4 texidoc ="@cindex Feta scripts | 4 texidoc ="@cindex Feta scripts |
5 This chart shows all articulations, or scripts, that the feta font contains. | 5 This chart shows all articulations, or scripts, that the feta font contains. |
6 " | 6 " |
7 } | 7 } |
8 | 8 |
9 #(begin | 9 #(begin |
10 | 10 |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 "open" | 56 "open" |
57 "halfopen" | 57 "halfopen" |
58 "halfopenvertical" | 58 "halfopenvertical" |
59 "stopped" | 59 "stopped" |
60 "lheel" | 60 "lheel" |
61 "rheel" | 61 "rheel" |
62 "ltoe" | 62 "ltoe" |
63 "rtoe")) | 63 "rtoe")) |
64 | 64 |
65 (define fermatas | 65 (define fermatas |
66 '("shortfermata" | 66 '("veryshortfermata" |
| 67 "shortfermata" |
67 "fermata" | 68 "fermata" |
68 "longfermata" | 69 "longfermata" |
69 "verylongfermata")) | 70 "verylongfermata" |
| 71 "henzeshortfermata" |
| 72 "henzelongfermata")) |
70 | 73 |
71 (define repeats | 74 (define repeats |
72 '("segno" | 75 '("segno" |
73 "coda" | 76 "coda" |
74 "varcoda")) | 77 "varcoda")) |
75 | 78 |
76 | 79 |
77 ;; remove all remaining groups from the script-list | 80 ;; remove all remaining groups from the script-list |
78 (for-each | 81 (for-each |
79 (lambda (x) (set! script-list (delete x script-list))) | 82 (lambda (x) (set! script-list (delete x script-list))) |
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
187 } | 190 } |
188 | 191 |
189 | 192 |
190 scriptStaff = | 193 scriptStaff = |
191 #(define-music-function (scripts) (list?) | 194 #(define-music-function (scripts) (list?) |
192 (make-scripts-staff scripts)) | 195 (make-scripts-staff scripts)) |
193 | 196 |
194 scriptStaffAncient = | 197 scriptStaffAncient = |
195 #(define-music-function (scripts) (list?) | 198 #(define-music-function (scripts) (list?) |
196 (make-scripts-staff-ancient scripts)) | 199 (make-scripts-staff-ancient scripts)) |
OLD | NEW |