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