lilypond-user
[Top][All Lists]
Advanced

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

Re: Vertical position of Tie and Script


From: Aaron Hill
Subject: Re: Vertical position of Tie and Script
Date: Sun, 26 Mar 2023 05:21:55 -0700

On 2023-03-26 4:45 am, Mark Mathias wrote:
Perhaps try:

%%%%%%%%

\version "2.24.0"
{
   \override Tie.outside-staff-priority = #1375
   c''1--~ c''
   c''1--~ c''
}

%%%%%%%%%

And, of course, add "\once" for a particular instance.

When you find you are doing \once \override, you should consider \tweak:

%%%%
{ c''1-- \tweak outside-staff-priority 12345 ~ c'' }
%%%%

If this is something you need to do a lot, you can define a cheeky shorthand:

%%%%
veryOutside = \tweak outside-staff-priority 8675309 \etc

{ c''1-- \veryOutside ~ c'' }
%%%%


-- Aaron Hill



reply via email to

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