lilypond-user
[Top][All Lists]
Advanced

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

Re: Problems with acciaccatura in cue voice


From: Richard Shann
Subject: Re: Problems with acciaccatura in cue voice
Date: Thu, 24 Nov 2016 13:43:10 +0000

You have to put a dummy grace note in the other parts:


\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' {
     \acciaccatura s8 r4 bf bf 
 }
}

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


On Thu, 2016-11-24 at 12:38 +0000, Peter Toye wrote:
> 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:address@hidden
> www.ptoye.com
> _______________________________________________
> lilypond-user mailing list
> address@hidden
> https://lists.gnu.org/mailman/listinfo/lilypond-user





reply via email to

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