lilypond-user
[Top][All Lists]
Advanced

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

Re: Automatic beaming in 2/2


From: Thomas Morley
Subject: Re: Automatic beaming in 2/2
Date: Mon, 31 Oct 2011 00:27:25 +0100

Hi me,

sorry, should have read more carefully. Try:

\version "2.14.2"

music = \relative c'' {
  c16 c c c c c c c c8 c16 c c8 c16 c |
  r8 c c c c c c c | \break
}

\new Staff {
        \overrideTimeSignatureSettings
      #'(2 . 2)         % timeSignatureFraction
      #'(1 . 4)         % baseMomentFraction
      #'(2 2)           % beatStructure
       #'(
          (end .                      ;entry for end of beams
          (                           ;start of alist of end points
          ((1 . 16) . (4 4 4 4))      ;from time-signature-settings.scm
       )))        % beamExceptions

  \time 4/4
  \music
  \time 2/2
  \music
}

-Harm

reply via email to

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