lilypond-user
[Top][All Lists]
Advanced

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

Re: Grace notes on first bar of piano staff


From: Jethro Van Thuyne
Subject: Re: Grace notes on first bar of piano staff
Date: Sat, 26 Jan 2013 21:46:16 +0100
User-agent: Mutt/1.5.18 (2008-05-17)

Thank you for the work around, Nathan and Federico!

Jethro


Nathan (26 Jan 2013 @ 21:02)
On Sat, Jan 26, 2013 at 11:54 AM, Jethro Van Thuyne <address@hidden> wrote:

When trying to typeset grace notes on the first beat of a piano
staff, something odd happens with the left hand bass clef. First
there is a treble clef engraved, then a time signature, and only
after that a bass clef and key signature.
right = \relative c''   {
  \clef treble
  \key f \major
  \grace { c32[ d e] } f1
  }

left = \relative c   {
  \clef bass
  \key f \major
  f1
  }

I attached an image with the rendered result of this minimal
example. Any ideas on what I'm doing wrong?


This is an old and infamous problem with LilyPond. Add in an appropriately
placed skip of the same length as the grace notes.

right = \relative c''   {
 \clef treble
 \key f \major
 \grace { c32[ d e] } f1
 }

left = \relative c   {
 \clef bass
 \key f \major
 \grace s32*3
 f1
 }

\new PianoStaff <<
 \new Staff \right
 \new Staff \left


Regards,
Nathan



reply via email to

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