lilypond-user
[Top][All Lists]
Advanced

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

Re: enlarging default stem length


From: Nick Payne
Subject: Re: enlarging default stem length
Date: Sun, 14 Apr 2013 18:05:18 +1000
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20130329 Thunderbird/17.0.5

On 14/04/13 17:49, Helge Kruse wrote:
I find that sometimes the notes looks clumsy. I think the length of the stem is too short as in this example:

\version "2.16"

\score { \relative c { \clef bass
    \times 4/6 { f,16 c f g a c }
    \times 4/6 { a g f c f, c' } r2 |
   }
}

I would like the stem length as in this example:

\score {  \relative c { \clef bass
    \once \override Beam #'positions = #'(2 . 3)
    \times 4/6 { f,16 c f g a c }
    \once \override Beam #'positions = #'(2.5 . 1.5)
    \times 4/6 { a g f c f, c' } r2 |
  }
}

I am reluctant to splatter this overrides all over the score. Can I set this somehow with a general?

This does approximately what you want:

\score { \relative c { \clef bass
    \override Stem.length-fraction = #(magstep 3)
    \times 4/6 { f,16 c f g a c }
    \times 4/6 { a g f c f, c' } r2 |
   }
}




reply via email to

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