lilypond-user
[Top][All Lists]
Advanced

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

Re: fermata inside staff with textScript


From: Jean Abou Samra
Subject: Re: fermata inside staff with textScript
Date: Sat, 28 May 2022 00:32:01 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.9.1



Le 27/05/2022 à 23:45, Ahanu Banerjee a écrit :
Hello,

I am having trouble getting a fermata to appear inside the staff when textScript (markup) is specified on the same side of the staff as the fermata. (This is needed for a multi-voice context with tight spacing.) Changing outside-staff-priority did not help. Is there an easy fix?


    \version "2.23.8"
    \relative c'' { \stemDown
        % inverted fermata appears below textScript
        a'_\markup "text" -\tweak Y-offset #0 _\fermata s4
        %expected fermata placement
        a -\tweak Y-offset #0 _\fermata }


Thanks,
-Ahanu


You need to remove the script-priority in order to turn off the collision resolution between the two scripts.

\version "2.23.9"

\relative c'' {
  \stemDown
  a'_\markup "text" -\tweak script-priority ##f \tweak Y-offset 0 _\fermata
}


Best,
Jean




reply via email to

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