lilypond-user
[Top][All Lists]
Advanced

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

Re: Stacking two text lines


From: Aaron Hill
Subject: Re: Stacking two text lines
Date: Sat, 25 May 2019 23:36:52 -0700
User-agent: Roundcube Webmail/1.3.8

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

Attachment: multilinemarkup.cropped.png
Description: PNG image


reply via email to

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