lilypond-user
[Top][All Lists]
Advanced

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

Re: problem with compound meter


From: Colin Campbell
Subject: Re: problem with compound meter
Date: Sat, 08 Oct 2011 10:17:28 -0600
User-agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.23) Gecko/20110922 Lightning/1.0b2 Thunderbird/3.1.15

On 11-10-08 09:13 AM, Stefan Thomas wrote:
Dear community,
I have a problem with the compoundMeter command.
In the below quoted snippet the compound meter is displayed only in the very high staff, but not in the following one!

\version "2.14.1"
global= { \compoundMeter #'((1 4) (5 16)) s4 s16*5  }
UPstaff = { c' 16 d' e' f' g' a' b' c'' d'' }
Downstaff = { c'' b' a' g' f' e' d' c' b }

\score {
  <<
    \new Staff { \context Voice << {\global} {\UPstaff }>> }
    \new Staff { \Downstaff }
  >>
}



You have your meter defined in a variable, but you don't connect it to your music.  If you put it inside the music variables, you'll be fine:

\version "2.14.1"

global= { \compoundMeter #'((1 4) (5 16)) s4 s16*5 }

UPstaff = { \global c' 16 d' e' f' g' a' b' c'' d'' }

Downstaff = { \global c'' b' a' g' f' e' d' c' b }

\score {

<<

\new Staff { \UPstaff }

\new Staff { \Downstaff }

>>

}



Cheers,
Colin
-- 
I've learned that you shouldn't go through life with a catcher's mitt on both hands. 
You need to be able to throw something back. 
-Maya Angelou, poet (1928- )

reply via email to

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