The following lilypond file results in two 4/4 time signatures, one after the
grace note.  If the bass clef is removed, the output is correct.

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%   LilyPond output generated by   %
%   (modified by Jim Sansing)      %
%       "NoteEdit" 2.8.1           %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

\version "2.10.5"

#(set-global-staff-size 20)

flat = \markup { \raise #0.4 \smaller \musicglyph #"accidentals--2" }
sharp = \markup { \raise #0.6 \smaller \musicglyph #"accidentals-2" }

\header {
        title = "Time Signature Change Error"
}

StaffA = \relative c' {
        \set Voice.autoBeaming = ##f
        \clef G
        \key g \major
        \time 3/4
        c4 e c \time 4/4 |
        \grace es!16 e!8 [ e e d ] c2
        \bar "|."
}

StaffB = \relative c {
        \set Voice.autoBeaming = ##f
        \clef bass
        \key g \major
        \time 3/4
        c2 c4 \time 4/4 |
        c1
        \bar "|."
}

\score {
        \relative <<
                \context Staff = cStaffAA <<
                        \context Voice = cStaffAA \StaffA
                >>
                \context Staff = cStaffBA <<
                        \context Voice = cStaffBA \StaffB
                >>
        >>
}




_______________________________________________
bug-lilypond mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/bug-lilypond

Reply via email to