lilypond-user
[Top][All Lists]
Advanced

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

<no subject>


From: Carl D. Sorensen
Subject: <no subject>
Date: Thu, 21 Aug 2008 19:49:34 -0600

Hugo,

In March, you sent a request for beam subdividing help.

We've just written a patch to the autobeaming code that now makes things
work well.

Here's your test code, modified to work properly:

\version "2.10.57"
% Header
\header {
  title = "Quarter beams with subdivision, minimal test"
  tagline = ##f
}

myautobeams = {
  #(revert-auto-beam-setting '(end 1 32 4 4)  5 8)
  #(override-auto-beam-setting '(end * * 4 4) 1 4 'Voice)
  #(override-auto-beam-setting '(end * * 4 4) 1 2 'Voice)
  #(override-auto-beam-setting '(end * * 4 4) 3 4 'Voice)
  \set subdivideBeams = ##t
  \set beatLength = #(ly:make-moment 1 8) % Subdivide beams on eighths
  \set beatGrouping = #'(2 2 2 2) % group beats on 4 4
}

% Music
{
  %% Time
  \time 4/4
  {
    %% Change auto beam behaviour
    \myautobeams

        %% First measure
        \partial 8 {
        d8:32(
        }
        \repeat volta 2 {
          d->) \times 2/3 {c16 d c} d8-> c16. d32-> c16. d32-> c d c d c8->
c
        }
  }
}



-----------End code

Just thought you'd like to know the functionality has improved.

Carl Sorensen





reply via email to

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