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: jimmyg521
Subject: Re: Beaming on the quarter note
Date: Sun, 16 Nov 2014 20:34:49 -0600

Thanks  Peter. I think I see a a method. Put these directives  in my master  
include in a variable and then put that variable in the \score sec--once and 
done.

Excellent.

Gos I love this  program and it's Legion of Masters :-)

Sent from my android device.

-----Original Message-----
From: address@hidden
To: Guy Stalnaker <address@hidden>
Cc: Phil Burfitt <address@hidden>, lilypond-user Mailinglist <address@hidden>
Sent: Sun, 16 Nov 2014 8:23 PM
Subject: Re: Beaming on the quarter note

>>>>> "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]