lilypond-user
[Top][All Lists]
Advanced

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

Re: lilypond-user Digest, Vol 246, Issue 40


From: Jean Abou Samra
Subject: Re: lilypond-user Digest, Vol 246, Issue 40
Date: Sun, 14 May 2023 01:49:38 +0200
User-agent: Evolution 3.48.1 (3.48.1-1.fc38)

Le dimanche 14 mai 2023 à 01:42 +0200, Jean Abou Samra a écrit :

You would have to use another grob, e.g.,

\version "2.24.1"

circleB = { \balloonGrobText NoteHead #'(0 . 0) \markup \with-color "#fcc" \draw-circle #3.5 #0.1 ##t \once \override BalloonText.annotation-balloon = ##f \once \override BalloonText.layer = -1 }

\new Voice \with { \consists Balloon_engraver } { \circleB e a d' \circleB g' b' e'' }

PS. In fact it's better like this (to avoid influencing other balloons at the same moment):

\version "2.24.1"

\layout {
  \context {
    \Voice
    \consists Balloon_engraver
  }
}

circleB =
  \tweak layer -1
  \tweak annotation-balloon ##f
  \balloonText #'(0 . 0)
    \markup \with-color "#fcc" \draw-circle #3.5 #0.1 ##t

{  <e\circleB> a d' <g'\circleB> b' e'' }

Attachment: signature.asc
Description: This is a digitally signed message part


reply via email to

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