lilypond-user
[Top][All Lists]
Advanced

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

Re: Grace at beginning of score


From: David Nalesnik
Subject: Re: Grace at beginning of score
Date: Fri, 9 Mar 2012 07:43:42 -0600

Hi Ornello,

On Fri, Mar 9, 2012 at 7:20 AM, ornello <address@hidden> 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

reply via email to

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