lilypond-user
[Top][All Lists]
Advanced

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

Re: attaching markup to time signature


From: dfro
Subject: Re: attaching markup to time signature
Date: Fri, 1 Jun 2018 00:37:27 -0400
User-agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.13; rv:52.0) Gecko/20100101 Thunderbird/52.8.0

Kieren,

I was playing with the code you shared on this thread, and I have a question. Is it possible to get the markup to attach to the clef or time signature only in the bass staff? I am getting the text to show, but it is attaching to both staves.

Thanks for any advice.

Peace,
David

Here is the code snippet I wrote based on yours:

%START OF CODE

\version "2.19.80"

\layout {
      \context {
            \Score
            \consists "Balloon_engraver"
            \override BalloonTextItem.annotation-balloon = ##f
            \override BalloonTextItem.annotation-line = ##f
            \override BalloonTextItem.font-size = #-2
            \override BalloonTextItem.font-series = #'bold
      }
}


melody = \relative c' {

      c4 c c c
}

stuff = {
      \balloonGrobText #'TimeSignature #'(0 . -1) \markup "test1"
      \balloonGrobText #'Clef #'(0 . -1) \markup "test2"
      \time 2/4

      c2 c
}

\score {
      \new StaffGroup
      <<
            \new Staff {
                  \clef "treble"
                  \melody }
            \new Staff {
                  \clef "bass"
                  \stuff }
      >>
}

%END OF CODE




On 4/12/18 10:21 AM, Kieren MacMillan wrote:
Hi David,

can't you achieve your goal with the various footnote/balloon mechanisms?
I just tried to — in order to give the OP an example — but my attempt didn’t 
work:

%%%  SNIPPET BEGINS
\version "2.19.80"

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

stuff = {
   \balloonGrobText #'TimeSignature #'(1 . 0) \markup "test" \time 2/4 s2
}

\score { \stuff }
%%%  SNIPPET ENDS

No error, though… What did I do wrong? (Note: using \new Voice \stuff also 
didn’t work as expected.)

Thanks,
Kieren.
________________________________

Kieren MacMillan, composer
‣ website: www.kierenmacmillan.info
‣ email: address@hidden


_______________________________________________
lilypond-user mailing list
address@hidden
https://lists.gnu.org/mailman/listinfo/lilypond-user





reply via email to

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