lilypond-devel
[Top][All Lists]
Advanced

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

Re: balloonText and DoublePercentEngraver


From: Jean Abou Samra
Subject: Re: balloonText and DoublePercentEngraver
Date: Tue, 21 Dec 2021 23:27:38 +0100
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.3.1



Le 21/12/2021 à 23:07, Werner LEMBERG a écrit :
Please have a look at the following example.

```
\new Score \with {
   \consists "Balloon_engraver"
} \new Staff {
   \repeat "percent" 2 {
     e'4 e' e' e' |
     \balloonGrobText #'PercentRepeat #'(0 . 1) \markup "Repeat"
   }

   \repeat "percent" 2 {
     e'2 e' | e' e' |
     \balloonGrobText #'DoublePercentRepeat #'(0 . 1) \markup "DoubleRepeat"
   }
}
```

This shows a balloon help for `PercentRepeat` but not for
`DoublePercentRepeat`.  What am I doing wrong?


Seems like a timing issue. Try

\version "2.23.5"

\new Score \with {
  \consists "Balloon_engraver"
}
\new Staff {
  \repeat "percent" 2 {
    e'4 e' e' e' |
    \balloonGrobText PercentRepeat #'(0 . 1) \markup "Repeat"
  }
  <<
    \repeat "percent" 2 {
      e'2 e' |
      e' e' |
    }
    {
      s1*3
      \balloonGrobText DoublePercentRepeat #'(0 . 1) \markup "DoubleRepeat"
    }
  >>
}

Best,
Jean




reply via email to

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