lilypond-user
[Top][All Lists]
Advanced

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

Re: Spacing Priority


From: Neil Puttock
Subject: Re: Spacing Priority
Date: Tue, 16 Nov 2010 20:49:13 +0000

On 16 November 2010 20:27, Stephan Elliot Perez
<address@hidden> wrote:
> Excuse me again! A tuplet bracket is colliding with the numbers from nested
> tuplets, so I want to move it away from the staff, I have tried
>
> \override TupletBracket #'outside-staff-priority = ##f  \override
> TupletBracket #'outside-staff-padding = #7
>
> as well as the \tweak variants (due to the nesting), but nothing happens.
> Why is this?

TupletBracket isn't considered an outside-staff object (it has no
setting for outside-staff-priority).

Use a tweak on 'padding instead:

\version "2.13.39"

\relative c' {
  \tweak #'padding #2
  \times 2/3 {
    c2 d
    \times 4/5 {
      e8 f g a b
    }
  }
}

Cheers,
Neil



reply via email to

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