lilypond-user
[Top][All Lists]
Advanced

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

Re: Forced down-stem grace notes


From: Thomas Morley
Subject: Re: Forced down-stem grace notes
Date: Mon, 12 Nov 2012 22:28:04 +0100



2012/11/12 james <address@hidden>

On Nov 12, 2012, at 7:58 PM, Keehun Nam wrote:

Dear LilyPond community,

I've been trying unsuccessfully for about an hour try to force grace notes to have down-ward stems when the pitch placement would dictate upward stems.

The code is:

a8[ \grace { a16[ a]} a8 ]

Inline image 1

I've tried several things, first to turn off automatic beaming, then to $(remove-grace-property 'Voice 'Stem 'direction) and then set the brackets within the grace note command as _[].

What else can I try? Why doesn't the _[] work as it should in grace note command?

The reason why I'm trying to make the grace notes downward is to minimize any possible confusion of how it might look like it's part of the regular notes.

Thank you,
Keehun

NR 1.2.6 implies that \grace { \stemDown a16[ a] } should work. 


 \stemDown works as expected.

$(remove-grace-property 'Voice 'Stem 'direction) works, too, but if Stem-direction is removed from GraceSettings the default is used.

See:
  \relative c'' {
          $(remove-grace-property 'Voice 'Stem 'direction)
          a8[ \grace {  a16[ a]} a8 ]
          a'8[ \grace {  a16[ a]} a8 ]
  }

You could use $(add-grace-property 'Voice 'Stem 'direction DOWN)

  \relative c'' {
          $(add-grace-property 'Voice 'Stem 'direction DOWN)
          a8[ \grace {  a16[ a]} a8 ]

          $(add-grace-property 'Voice 'Stem 'direction UP)
          a'8[ \grace {  a16[ a]} a8 ]
  }

-Harm




reply via email to

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