lilypond-auto
[Top][All Lists]
Advanced

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

Re: [Lilypond-auto] Issue 34 in lilypond: Grace synchronization


From: lilypond
Subject: Re: [Lilypond-auto] Issue 34 in lilypond: Grace synchronization
Date: Sat, 18 Aug 2012 09:42:09 +0000


Comment #28 on issue 34 by address@hidden: Grace synchronization
http://code.google.com/p/lilypond/issues/detail?id=34

A recent post to bug-lilypond by Štěpán Němec here:

http://lists.gnu.org/archive/html/bug-lilypond/2012-08/msg00083.html

entitled "Second staff beginning with an acciaccatura defeats "\override Staff.Timsignature" which showed the well-known problem of starting with a grace note:

---------------

% here, the first staff gets time signature, but shouldn't

\version "2.14.2"

\new PianoStaff <<
  \new Staff {
    \override Staff.TimeSignature #'stencil = ##f
    c
  }
  \new Staff {
    \override Staff.TimeSignature #'stencil = ##f
    \acciaccatura c c
  }


-------------


That post led to very concise presentation of the standard workaround from Reinhold Kainhofer here:

http://lists.gnu.org/archive/html/bug-lilypond/2012-08/msg00084.html

Quoting:

Same problem as we have in all cases when one voice starts with grace notes... You need to add spacer grace notes too all other staves, too:

\version "2.14.2"

\new PianoStaff <<
  \new Staff {
    \override Staff.TimeSignature #'stencil = ##f
    \acciaccatura s c
  }
  \new Staff {
    \override Staff.TimeSignature #'stencil = ##f
    \acciaccatura c c
  }


Cheers,
Reinhold




reply via email to

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