2015-07-02 19:42 GMT+02:00 Sam Bivens <sambiv...@gmail.com>:
> Hi everyone,
>
> I'm having some trouble beginning a phrase with a grace note. In correct.ly,
> everything looks fine. In incorrect.ly, I've simply erased the opening E in
> the upper staff. This makes the grace note D the first pitch, which for some
> reason creates a treble clef in the lower staff (see incorrect.png) and
> makes the actual bass clef smaller.
>
> Any tips? I'm on Fedora 22.
>
> Thanks,
>
> --Sam

It's issue 34
https://code.google.com/p/lilypond/issues/detail?id=34
One of our oldest bugs.

As workaround insert grace-note in the other voice as well:

\version "2.19.21"

upper = \relative c {
  \clef bass

  \grace { d16 } c4
}

lower = \relative c {
  \clef bass

  \grace s16 c
}

\score {
  \new PianoStaff <<
    \set PianoStaff.instrumentName = #"Piano"
    \new Staff = "upper" \upper
    \new Staff = "lower" \lower
  >>
}


HTH,
  Harm

_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to