lilypond-user
[Top][All Lists]
Advanced

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

Re: Strange behavior with grace notes


From: Carl Sorensen
Subject: Re: Strange behavior with grace notes
Date: Fri, 24 Jul 2020 19:05:18 +0000
User-agent: Microsoft-MacOutlook/10.10.18.200713

Please check the known issues in the notation reference:

 

https://lilypond.org/doc/v2.20/Documentation/notation/special-rhythmic-concerns

 

You must put grace skips in all staves when a grace note is at the start of a piece.

 

HTH,

Carl

 

 

From: lilypond-user <lilypond-user-bounces+carl.d.sorensen=gmail.com@gnu.org> on behalf of John Burt <burt@brandeis.edu>
Date: Friday, July 24, 2020 at 12:31 PM
To: lilypond-user <lilypond-user@gnu.org>
Subject: Strange behavior with grace notes

 

When the first notes of a piece are grace notes, if there are other voices, or other staves in the piece, the grace note is set in a separate bar, and then the time signature and key are printed again. I notice the same thing with appoggiatura and accacciatura. I tried to make this example as minimal as i could. 

 

\version "2.18.2"
global = {
  \key f \minor
  \time 3/4
}

tenorI = \relative c' {
  \global
  c2.
}

tenorII = \relative c' {
  \global
   \grace {c16  des16} c4 des8 des8 c8
}

baritone = \relative c {
   \global
  \dynamicUp
  c2.  
}

\score {
  \new ChoirStaff <<
    \new Staff \with {\clef "treble_8"
    } <<
      \new Voice = "tenorI" { \voiceOne \tenorI }
      \new Voice = "tenorII" { \voiceTwo \tenorII }
    >>
   
    \new Staff \with {
    } <<
      \clef bass
      \new Voice = "baritone" { \voiceOne \baritone }
     
    >>
  >>
  \layout { }
}

 

if I comment out the tenorI voice and the baritone voice the grace note works fine. But if I uncomment either the problem returns.

 

Any light anyone can cast on this would be much appreciated!

John


reply via email to

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