Adding extra fingering with Scheme: Difference between revisions
m Replace version="2.24.0" with version="2.24" now that the LilyWiki extension supports auto-selecting the latest release in a stable series |
mNo edit summary |
||
| (2 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
You can add additional elements to notes using <code>map-some-music</code>. In this example, an extra script is attached to a note. | You can add additional elements to notes using <code>map-some-music</code>. In this example, an extra script is attached to a note (or a chord). | ||
In general, first | In general, you should first apply <code>\displayMusic</code> to music similar to what you want to create so that you can see its structure. This can be then used as template for your Scheme code. | ||
<lilypond version="2.24"> | <lilypond version="2.24"> | ||
addScript = | addScript = | ||
#(define-music-function (script music) | #(define-music-function (script music) (ly:event? ly:music?) | ||
(map-some-music | (map-some-music | ||
(lambda (mus) | (lambda (mus) | ||
| Line 14: | Line 13: | ||
(list (ly:music-deep-copy script)))) | (list (ly:music-deep-copy script)))) | ||
mus) | mus) | ||
(case (ly:music-property mus 'name) | (case (ly:music-property mus 'name) | ||
((EventChord) | ((EventChord) | ||
| Line 22: | Line 22: | ||
music)) | music)) | ||
{ | |||
\addScript _6 { c'4-3 <c' e' g'> } | |||
} | } | ||
</lilypond> | </lilypond> | ||
[[Category:Scheme]] | [[Category:Scheme]] | ||
[[Category:Included in the official documentation]] | [[Category:Included in the official documentation]] | ||
[[Category:Snippet]] | |||