>>>>> "Guy" == Guy Stalnaker <jimmyg...@gmail.com> writes:

Guy> Phil, That was what I found :-) But unless I'm mistaken, one must
Guy> use those directives for *every* time signature change. Thus if I

You can do it once for each time signature you're going to use.

\version "2.18.2"
\score {
  <<
   % Beam 4/4 at crotchets
    \overrideTimeSignatureSettings
      4/4
      1/4
      #'(1 1 1 1)
      #'()

    % Beam 3/4 at crotchets
    \overrideTimeSignatureSettings
      3/4
      1/4
      #'(1 1 1)
      #'()

  \new Staff {
    \relative c' {
      \time 4/4 \repeat unfold 8 b8 |
      \time 3/4 \repeat unfold 6 b8 |
      \time 2/4 \repeat unfold 4 b8 |
      \time 5/4 \repeat unfold 10 b8 |
    }
  }
 >>
}

_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to