lilypond-user
[Top][All Lists]
Advanced

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

Re: arbitrary repeat counter


From: Simon Bailey
Subject: Re: arbitrary repeat counter
Date: Wed, 1 Jun 2022 11:25:34 +0100

Hi,

with a little bit of digging through your manual, i have solved some
of my questions:

#(define (counter-stencil grob)
   (let* ((counter (ly:grob-property grob 'text)))  ; get the value of
the counter
     (ly:stencil-aligned-to
       (grob-interpret-markup grob
         (markup counter "!")) ; print the counter back with !
       Y
       CENTER)))

This basically replicates the behaviour of the regular percent counter
and adds an exclamation mark. so now i can just add some if/mod/div
magic and it should do what I want. Getting thereā€¦ ;)

Kind regards,
sb



reply via email to

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