I'm trying to get an acciaccatura in a cue for a single staff on a two-stave 
score, and it's not working. Here's a shortish snippet. If you comment out the 
acciaccatura it works OK. If you comment out the second staff it works OK. 
There seems to be some unwanted interaction by which the acciaccatura occupies 
time when engraving the second staff, and it gets put before the barline.

Any ideas on how to make it work? I don't particularly want to have to put in a 
cue on the second staff as the players are playing from the same sheet.


\version "2.18.2"

\language "english"

WaltzThreePartOne = {
  \clef tenor
  \key bf \major
  \time 3/4
  \relative c' {
      <<
        r4
        \new CueVoice  {
          \cueClef "treble" {
            \stemUp
             \acciaccatura {<d' f>8 }
            \octaveCheck d''
            <d f>8[ <bf bf'>] \cueClefUnset
          }
        }
      >>
      \octaveCheck d'
      d4 d 
   }
}


WaltzThreePartTwo = {
  \clef bass
  \key bf \major
  \time 3/4
  \relative c' {
      r4 bf bf 
  }
}

\score {
  <<
    \new Staff 
      {
        \WaltzThreePartOne
      }
    \new Staff 
      {
        \WaltzThreePartTwo
      }
  >>
}



 
Regards,

Peter
mailto:[email protected]
www.ptoye.com
_______________________________________________
lilypond-user mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to