lilypond-user
[Top][All Lists]
Advanced

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

Re: Beaming on the quarter note


From: peter
Subject: Re: Beaming on the quarter note
Date: Mon, 17 Nov 2014 13:23:23 +1100
User-agent: Wanderlust/2.15.9 (Almost Unreal) SEMI-EPG/1.14.7 (Harue) FLIM/1.14.9 (Gojō) APEL/10.8 EasyPG/1.0.0 Emacs/24.4 (x86_64-pc-linux-gnu) MULE/6.0 (HANACHIRUSATO)

>>>>> "Guy" == Guy Stalnaker <address@hidden> 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 |
    }
  }
 >>
}



reply via email to

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