lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Batch-apply tremolo markings? (Frescobaldi)


From: Aaron Hill
Subject: Re: Batch-apply tremolo markings? (Frescobaldi)
Date: Mon, 04 Jun 2018 13:55:47 -0700
User-agent: Roundcube Webmail/1.3.6

On 2018-06-04 12:09, Ben wrote:
Wow. Um, this is awesome. Yes it works beautifully. How difficult
would it be to allow this function to accept chords? Or would that
simply be best served as creating another function like \addTremChords
or something?

Not that hard.  You just need to accept both NoteEvent and EventChord:

%%%%
  \version "2.19.81"
  addTremolos =
  #(define-music-function (number music) (integer? ly:music?)
     (music-map
      (lambda (mus)
        (if (or (eq? 'NoteEvent (ly:music-property mus 'name))
                (eq? 'EventChord (ly:music-property mus 'name)))
            (let ((art (ly:music-property mus 'articulations '())))
              (ly:music-set-property!
               mus
               'articulations
               (cons
                (make-music
                 'TremoloEvent
                 'tremolo-type number)
                art))))
        mus)
      music))
  \addTremolos 16 { b' r a' <e' g'> }
%%%%

-- Aaron Hill



reply via email to

[Prev in Thread] Current Thread [Next in Thread]