lilypond-user
[Top][All Lists]
Advanced

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

Re: beaming problem


From: Roland Goretzki
Subject: Re: beaming problem
Date: Mon, 12 Jul 2004 00:04:39 +0200
User-agent: Mutt/1.5.5.1+cvs20040105i

Hello list, hello Sami,

You wrote:

> Try \set stemRightBeamCount and \set stemLeftBeamCount as in following 
> example (beam-count.ly from Lilypond tips and tricks: 
> http://www.lilypond.org/doc/v2.2/input/test/out-www/collated-files.html)
> 
> 
> fragment = \notes {
>   #(override-auto-beam-setting '(end * * * *)  1 4)
>   f32 g a b b a g f
> 
>   f32 g a
>   \set stemRightBeamCount = #1  b
>   \set stemLeftBeamCount = #1 b
>   a g f
> }
This was not the solution for my case:
Instead of setting the short sixteenth beam to the left, it resulted in
disappearing the short sixteenth beam.

But Your help was helpful, indeed:
Because with Your help I was able to find in the documentation, what I
didn't know how to search for before. :-)

The solution was to add the following line:

    \set Score.beatLength = #(ly:make-moment 3 16)

So I will post a little example with the correct solution for my case:

\include "deutsch.ly"
\score {
  \context Staff \notes\relative c'' {
    \key c \major \time 9/16
      #(override-auto-beam-setting '(end * * * *) 3 16)
      g'8 ( a,16 f'8 a,16 d8 c16 )
      #(override-auto-beam-setting '(end * * * *) 6 16)
      \set Score.beatLength = #(ly:make-moment 3 16)
      c8 ( h!16 c8 cis16 )
      #(override-auto-beam-setting '(end * * * *) 3 16)
      cis <g d'> g g8. a h c4. r8.
  }
}

Many thanks for Your help!

Best Regards           Roland




reply via email to

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