Hi,

2011/12/17 James Lowe <james.l...@datacore.com>:

>
> On 16 Dec 2011, at 23:59, "oldwhtman" <pryor27...@yahoo.com> wrote:
>
>> I am using Lilypond 2.14.2.  Is there a way to change the stem length of
>> beamed grace notes?  I tried using:
>>
>> \set Score.graceSettings = #`((TabVoice Stem length-fraction .5))
>>
>> but that did nothing.  It's amazing what you can't find on the internet.

with "2.14.2" try:

\version "2.14.2"

music = \relative c' {
        \grace d,8 c4
}
\score {
        <<
        \new Staff { \clef "G_8" \music}
        \new TabStaff { \tabFullNotation \music }
        >>
        \layout {
                \context {
                        \TabVoice
                        graceSettings = #`((TabVoice Stem length-fraction .5)
                                           (TabVoice Stem font-size -3))
                }
         }      
}


some differences with "2.15.20":

Mike Solomon created a Flag-grob.
And fixed a bug about not printed flags 5 minutes after I reported it. Wow!
http://lists.gnu.org/archive/html/bug-lilypond/2011-12/msg00628.html

\version "2.15.20"

music = \relative c' {
        \grace d,8 c4
}
\score {
        <<
        \new Staff { \clef "G_8" \music}
        \new TabStaff { \tabFullNotation \revert TabVoice.Flag
#'transparent \music }
        >>
        \layout {
                \context {
                        \TabVoice
                        graceSettings = #`((TabVoice Stem length-fraction .5)
                                           (TabVoice Flag font-size -3))
                }
         }      
}

HTH,
  Harm

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

Reply via email to