Re: fermata inside staff with textScript

2022-05-27 Thread Ahanu Banerjee
Thank you!

-Ahanu

On Fri, May 27, 2022, 18:32 Jean Abou Samra  wrote:

>
>
> 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
>
>


Re: fermata inside staff with textScript

2022-05-27 Thread Jean Abou Samra




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




fermata inside staff with textScript

2022-05-27 Thread Ahanu Banerjee
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