Left: | ||
Right: |
OLD | NEW |
---|---|
1 ;;;; This file is part of LilyPond, the GNU music typesetter. | 1 ;;;; This file is part of LilyPond, the GNU music typesetter. |
2 ;;;; | 2 ;;;; |
3 ;;;; Copyright (C) 1998--2012 Han-Wen Nienhuys <hanwen@xs4all.nl> | 3 ;;;; Copyright (C) 1998--2012 Han-Wen Nienhuys <hanwen@xs4all.nl> |
4 ;;;; Jan Nieuwenhuizen <janneke@gnu.org> | 4 ;;;; Jan Nieuwenhuizen <janneke@gnu.org> |
5 ;;;; | 5 ;;;; |
6 ;;;; LilyPond is free software: you can redistribute it and/or modify | 6 ;;;; LilyPond is free software: you can redistribute it and/or modify |
7 ;;;; it under the terms of the GNU General Public License as published by | 7 ;;;; it under the terms of the GNU General Public License as published by |
8 ;;;; the Free Software Foundation, either version 3 of the License, or | 8 ;;;; the Free Software Foundation, either version 3 of the License, or |
9 ;;;; (at your option) any later version. | 9 ;;;; (at your option) any later version. |
10 ;;;; | 10 ;;;; |
(...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
209 'multi-measure-interface | 209 'multi-measure-interface |
210 "Multi measure rest, and the text or number that is printed over it." | 210 "Multi measure rest, and the text or number that is printed over it." |
211 '(bound-padding)) | 211 '(bound-padding)) |
212 | 212 |
213 (ly:add-interface | 213 (ly:add-interface |
214 'note-name-interface | 214 'note-name-interface |
215 "Note names." | 215 "Note names." |
216 '()) | 216 '()) |
217 | 217 |
218 (ly:add-interface | 218 (ly:add-interface |
219 'octavate-eight-interface | |
220 "Interface that permits the nominal identification of the octavian | |
221 annotation that multiplies by two the freqency of the pitches present | |
222 in a given staff were they played on a clef that lacked said octavian | |
223 annotation." | |
dak
2012/08/29 14:13:47
What about \clef "bass_8" or \clef "treble_15" ?
janek
2012/08/30 08:37:12
I don't quite understand what this description mea
| |
224 '()) | |
225 | |
226 (ly:add-interface | |
219 'only-prebreak-interface | 227 'only-prebreak-interface |
220 "Kill this grob after the line breaking process." | 228 "Kill this grob after the line breaking process." |
221 '()) | 229 '()) |
222 | 230 |
223 (ly:add-interface | 231 (ly:add-interface |
224 'parentheses-interface | 232 'parentheses-interface |
225 "Parentheses for other objects." | 233 "Parentheses for other objects." |
226 '(padding stencils)) | 234 '(padding stencils)) |
227 | 235 |
228 (ly:add-interface | 236 (ly:add-interface |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
302 (ly:add-interface | 310 (ly:add-interface |
303 'unbreakable-spanner-interface | 311 'unbreakable-spanner-interface |
304 "A spanner that should not be broken across line breaks. Override | 312 "A spanner that should not be broken across line breaks. Override |
305 with @code{breakable=##t}." | 313 with @code{breakable=##t}." |
306 '(breakable)) | 314 '(breakable)) |
307 | 315 |
308 (ly:add-interface | 316 (ly:add-interface |
309 'volta-interface | 317 'volta-interface |
310 "A volta repeat." | 318 "A volta repeat." |
311 '()) | 319 '()) |
OLD | NEW |