Hi Ornello,

On Fri, Mar 9, 2012 at 7:20 AM, ornello <dominik.hoer...@fun.de> wrote:

>
> What is the right way to write a grace note at the beginning of the score
> (or
> after a clef/time/key signature change)?
>
>
> But this issue does not mention a workaround? Does anybody know a trick?
>

The trick in this case is to add a grace note spacer to the other staff.

Notice that I changed << . . .  >> to { . . . } in your example to make it
work.

{
  \new PianoStaff <<
    \new Staff {  % changed from <<
    \key bes \major
    \time 4/4
    \clef violin
    \new Voice {
    \grace a'8 (
    a''1 )
    }
    } % from >>
    \new Staff { % from <<
    \clef bass
    \new Voice {
    \key bes \major
    \grace s8  % spacer grace
    c1
    }
    } % from >>
  >>
}

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

Reply via email to