On Fri, Apr 26, 2024 at 7:07 AM Robert Garrigos <rob...@garrigos.cat> wrote:

> How about moving the grace notes of the lower staff to the left? I’m
> trying with GraceSpacing but cannot make it work just for the lower staff.
> It is applied to the Score, not the Staff.
>

It's nice to show what you have tried, so people have a starting point on
which to proceed.  Here's what I did; there may be other ways to do it:

\version "2.24.3"

staffUp = \change Staff = "upper"
staffDown = \change Staff = "lower"

rightHand = \relative {
  \set tieWaitForNote = ##t
  \grace { c'4~ g'~ c~ } <c, g' c>1
}

leftHand = \relative {
  \clef bass
  \set tieWaitForNote = ##t
  \grace { f,4~ c'~ a'~ \staffUp \hideNotes \shiftOff c g' c }
  \unHideNotes \staffDown <f,,, c' a'>1
}

\score {
  \new PianoStaff <<
    \new Staff = "upper" \rightHand
    \new Staff = "lower" \leftHand
  >>
}


--
Knute Snortum

Reply via email to