lilypond-user
[Top][All Lists]
Advanced

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

Re: [tablatures] Grace Note Stem Length


From: Thomas Morley
Subject: Re: [tablatures] Grace Note Stem Length
Date: Sat, 17 Dec 2011 18:01:28 +0100

Hi,

2011/12/17 James Lowe <address@hidden>:

>
> On 16 Dec 2011, at 23:59, "oldwhtman" <address@hidden> 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



reply via email to

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