LEFT | RIGHT |
(no file at all) | |
1 \version "2.16.0" | 1 \version "2.17.6" |
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 |
11 (define script-list (map car default-script-alist)) | 11 (define script-list (map car default-script-alist)) |
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
157 | 157 |
158 ) % end of (begin ...) | 158 ) % end of (begin ...) |
159 | 159 |
160 \layout { | 160 \layout { |
161 line-width = 5.1\in | 161 line-width = 5.1\in |
162 indent = 0.0\mm | 162 indent = 0.0\mm |
163 \context { | 163 \context { |
164 \Score | 164 \Score |
165 timing = ##f | 165 timing = ##f |
166 barAlways = ##t | 166 barAlways = ##t |
167 \override NonMusicalPaperColumn #'padding = #2.5 | 167 \override NonMusicalPaperColumn.padding = #2.5 |
168 \override PaperColumn #'keep-inside-line = ##t | 168 \override PaperColumn.keep-inside-line = ##t |
169 } | 169 } |
170 \context { | 170 \context { |
171 \RhythmicStaff | 171 \RhythmicStaff |
172 \remove "Time_signature_engraver" | 172 \remove "Time_signature_engraver" |
173 \override BarLine #'transparent = ##t | 173 \override BarLine.transparent = ##t |
174 \override Stem #'direction = #down | 174 \override Stem.direction = #down |
175 } | 175 } |
176 \context { | 176 \context { |
177 \Lyrics | 177 \Lyrics |
178 \override LyricText #'font-family = #'typewriter | 178 \override LyricText.font-family = #'typewriter |
179 \override LyricText #'font-shape = #'upright | 179 \override LyricText.font-shape = #'upright |
180 } | 180 } |
181 \context { | 181 \context { |
182 \VaticanaVoice | 182 \VaticanaVoice |
183 \override Script #'padding = #0 | 183 \override Script.padding = #0 |
184 } | 184 } |
185 } | 185 } |
186 | 186 |
187 | 187 |
188 scriptStaff = | 188 scriptStaff = |
189 #(define-music-function (parser location scripts) (list?) | 189 #(define-music-function (parser location scripts) (list?) |
190 (make-scripts-staff scripts)) | 190 (make-scripts-staff scripts)) |
191 | 191 |
192 scriptStaffAncient = | 192 scriptStaffAncient = |
193 #(define-music-function (parser location scripts) (list?) | 193 #(define-music-function (parser location scripts) (list?) |
194 (make-scripts-staff-ancient scripts)) | 194 (make-scripts-staff-ancient scripts)) |
LEFT | RIGHT |