lilypond-user
[Top][All Lists]
Advanced

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

Re: How to attach markup to several notes


From: Kaj
Subject: Re: How to attach markup to several notes
Date: Tue, 9 May 2017 12:36:49 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Icedove/45.3.0

On 2017-05-09 at 10:47, Ivanov Dmitry wrote:
Code:

\version "2.18.2"
\relative f'{
 f8_\markup {F} <a c f>
}

How can I attach the markup to several notes, so the text was put
between them?

Something like this:

\version "2.18.2"
\relative f'{
 {f8 <a c f>}_\markup {F}
}
Hi Ivanov!
I understand that you want a function which puts your text exact at the midpoint between the notes, but... Else is the simplest to just displace your text some distance. But of course, then you have to calculate the midpoint yourself.

\version "2.18.2"
\relative f'{
 f8_\markup { \translate #'(0.8 . 0) F} <a c f>
}
Kaj





reply via email to

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