lilypond-user
[Top][All Lists]
Advanced

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

Re: Grace Notes size


From: David Kastrup
Subject: Re: Grace Notes size
Date: Fri, 25 May 2018 14:53:15 +0200
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/26.0.50 (gnu/linux)

foxfanfare <address@hidden> writes:

> Hi everyone,
>
> Is there a way to define the size of the small notes (\grace \appoggiatura
> \acciaccatura)?
>
> It seems the default size is something like 0.6% of the full size

That would be a challenge to play.

> but I wonder if it is possible to set something different? I can't see
> any property in the internal references for that!

The graceSettings context property.

Cf.

\new Voice \with
{
  #@(map
      (lambda (grob)
        #{ $(add-grace-property 'Voice grob 'font-size 3) #})
     '(Stem Flag NoteHead Dots Accidental))
  #(add-grace-property 'Voice 'Stem 'length-fraction 1.4)
}
{
  \appoggiatura { g'8 } c'1
}
Admittedly, the "map" call is not saving a lot of typing over 5 separate
add-grace-property calls.  It's for the principle of the thing...

-- 
David Kastrup

reply via email to

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