On 2019-05-25 9:52 pm, Mike Dean wrote:
Hi group:
I am extracting a solo line from Gavotte II (Cello Sonata #6, J.S. Bach)
and at the end of Gavotte II are these instructions:

2nd time poco rall.
Gavotte I D.C.

I am struggling with how to attach that to the final measure (and a half):

a, a\p-. b-. cs-. | d2

\markup is quite powerful in LilyPond; and you can use it just about anywhere. But more important to your scenario, you can use it for TextScripts and RehearsalMarks. See the following:

%%%%
\version "2.19.82"

someText = \markup
  \abs-fontsize #8 \override #'(baseline-skip . 1.5)
  \right-column { A BB CCC }

\fixed c' {
  | c'4 \tuplet 3/2 { b8 a g } e2^\markup \someText
  | f4 \tuplet 3/2 { g8 a b } c'2
    \once \override Score.RehearsalMark.self-alignment-X = #RIGHT
    \mark \markup \someText
}
%%%%


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

Reply via email to