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



_______________________________________________
lilypond-user mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to