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: Masaki, Akikazu
Subject: Re: Vertical position of Tie and Script
Date: Mon, 27 Mar 2023 16:11:36 +0900
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.9.0

Thanks a lot.  I didn't know outside-staff-priority is available with Tie.
However, a tenuto is distant a bit from a note with this way.
(Script position seems to be calculated closer to tie than note.)

I think modifying the priority is conceptually more appropriate, but forcing 
the offset will be fit for desirable output.


Akikazu



On 2023/03/26 21:21, Aaron Hill wrote:
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]