lilypond-user
[Top][All Lists]
Advanced

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

Re: Access (order) overlapping markups in a system


From: David Nalesnik
Subject: Re: Access (order) overlapping markups in a system
Date: Mon, 12 Sep 2016 10:04:55 -0500

Hi Urs,

On Mon, Sep 12, 2016 at 9:18 AM, Urs Liska <address@hidden> wrote:
> In this sample:
>
> \version "2.19.48"
>
> {
>   c2 ^\markup "First markup"
>   c2 ^\markup "Second markup"
>   c2 ^\markup "Third markup"
> }
>
> The markups are starting at the staff and when overlapping are printed
> above the preceding one.
>
> Is there a way to have this behaviour reversed so that  they are
> starting at the top and go to the bottom?
>
> I know how to achive the attached result with overriding
> outside-staff-priority, but is there an automatic way that works line by
> line? Or something that can be built with reasonable effort?
>

Try the following:

\version "2.19"

{
  \override Staff.VerticalAxisGroup.outside-staff-placement-directive
= #'right-to-left-greedy
  c2 ^\markup "First markup"
  c2 ^\markup "Second markup"
  c2 ^\markup "Third markup"
}

Best,
David



reply via email to

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