lilypond-user
[Top][All Lists]
Advanced

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

Programming error with change staff


From: Knute Snortum
Subject: Programming error with change staff
Date: Thu, 16 Feb 2023 10:08:59 -0800

I have run into a situation where LilyPond produces a programming error.  It involves changing staff, voice one, accent fingering and avoid-slur.  It's best to just look at the MWE:

\version "2.25.1"

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

rightHand = {
  \new Voice {
    \voiceOne \staffDown g16->-1( \staffUp c' c' \staffDown g)
  }
}

leftHand = { \new Voice { \clef bass s4 } }

\score {
  \new PianoStaff \with { \override Fingering.avoid-slur = #'inside } <<
    \new Staff = "upper" \rightHand
    \new Staff = "lower" \leftHand
  >>
}


There may be a way to get this smaller, but I couldn't find it.  Is there a way around this bug as it is affecting my current project?

--
Knute Snortum

reply via email to

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