Re: fingering of a grace note overlaps with beam

2022-05-24 Thread Soo Lee
Thank you!

On Mon, May 23, 2022 at 12:51 AM Martín Rincón Botero <
martinrinconbot...@gmail.com> wrote:

> Hi Soo,
>
> this seems to be caused by the fact that there's no outside-staff-priority
> set for Fingerings (see https://gitlab.com/lilypond/lilypond/-/issues/6346).
> Setting it apparently to whatever value fixes your problem for now.
>
> \relative c'' {
>
>
> \override Fingering.outside-staff-priority = 0
>
>
> g8[ \acciaccatura b-5 a g]
>
> }
>
>
>
>
> Cheers,
>
> Martín.
>
> www.martinrinconbotero.com
>
>
> On May 22, 2022 at 3:17 PM, > wrote:
>
> Hi,
>
> In the example below, the fingering on the grace note B does not show well
> because it overlaps with the beam. I do want to keep the stems up and the
> fingering up because there will be another voice. What is the best way to
> avoid this overlap? Thank you!
>
> \relative c'' {
> g8[ \acciaccatura b-5 a g]
> }
>
> Best,
> Soo
>
>


Re: fingering of a grace note overlaps with beam

2022-05-22 Thread Martín Rincón Botero
  
  

  Hi Soo,
  

  
this seems to be caused by the fact that there's no outside-staff-priority set 
for Fingerings (see https://gitlab.com/lilypond/lilypond/-/issues/6346). 
Setting it apparently to whatever value fixes your problem for now.
  

  
  
  \relative c'' {
  
  
  
  \override Fingering.outside-staff-priority = 0
  
  
  
 g8[ \acciaccatura b-5 a g]
  
  }
  
  
  
  

  
  
 Cheers,
  
 Martín.
  
  
  
  
 www.martinrinconbotero.com
  
  
  

  
  
>   
> On May 22, 2022 at 3:17 PM,  mailto:dupl...@gmail.com)>  wrote:
>   
>   
>   
>   
> Hi,
>   
>
>   
> In the example below, the fingering on the grace note B does not show well 
> because it overlaps with the beam. I do want to keep the stems up and the 
> fingering up because there will be another voice. What is the best way to 
> avoid this overlap? Thank you!
>   
>
>  \relative c'' {
>  g8[ \acciaccatura b-5 a g]
>  }  
>
>   
> Best,
>   
> Soo
>   
>   
>   
  
  
 

Re: fingering of a grace note overlaps with beam

2022-05-22 Thread Knute Snortum
On Sun, May 22, 2022 at 6:16 AM Soo Lee  wrote:
>
> Hi,
>
> In the example below, the fingering on the grace note B does not show well 
> because it overlaps with the beam. I do want to keep the stems up and the 
> fingering up because there will be another voice. What is the best way to 
> avoid this overlap? Thank you!
>
> \relative c'' {
> g8[ \acciaccatura b-5 a g]
> }

You could try two strategies: raise the beams or raise the fingering.

%%%
\version "2.22.2"

\relative c'' {
\once \override Beam.positions = #'(4 . 4)
g8[ \acciaccatura b-5 a g]
}

\relative c'' {
g8[ \acciaccatura b-\tweak Y-offset 4.5 -5 a g]
}
%%%

--
Knute Snortum



fingering of a grace note overlaps with beam

2022-05-22 Thread Soo Lee
Hi,

In the example below, the fingering on the grace note B does not show well
because it overlaps with the beam. I do want to keep the stems up and the
fingering up because there will be another voice. What is the best way to
avoid this overlap? Thank you!

\relative c'' {
g8[ \acciaccatura b-5 a g]
}

Best,
Soo