lilypond-user
[Top][All Lists]
Advanced

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

Re: Irregular beat grouping (7/8-beat etc.)


From: Carl Sorensen
Subject: Re: Irregular beat grouping (7/8-beat etc.)
Date: Wed, 29 Dec 2010 12:03:26 -0700

On 12/29/10 6:40 AM, "Akira" <address@hidden> wrote:

> Lilypond version 2.13 does not accept this:
> 
>         \overrideBeamSettings #'Score #'(7 . 8) #'end    #'((* . (2 2 3)))
>         \overrideBeamSettings #'Score #'(9 . 8) #'end    #'((* . (2 3 2 2)))%}
> 
> So, I can get only the example of right, which confuses me.
> Please tell me how to solve this and get the example of left.


Please review the notation reference, section 1.2 Setting automatic beam
behavior.

\set Score.BeatStructure = #'(2 2 3)


If you are going to mix your music between 7/8 and 9/8, you'll probably want
to refer to Notation Reference 1.1 Time signatures.  You'll want to use

\overrideTimeSignatureSettings
   #'(7 . 8)  % timeSignatureFraction
   #'(1 . 8)  % baseMomentFraction
   #'(2 2 3)    % beatStructure
   #'()       % beamExceptions
  

\overrideTimeSignatureSettings
   #'(9 . 8)  % timeSignatureFraction
   #'(1 . 8)  % baseMomentFraction
   #'(2 3 2 2)    % beatStructure
   #'()       % beamExceptions
  

Then, when you change the time signature to 7/8 and 9/8, you'll
automatically get the beaming you want.

HTH,

Carl




reply via email to

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