lilypond-user
[Top][All Lists]
Advanced

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

Re: removing time signatures engravers locally


From: Paul Scott
Subject: Re: removing time signatures engravers locally
Date: Sun, 5 Mar 2023 23:04:24 -0700
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.8.0

I was finally able to get my real code to function as your example does.

Thank you very much,

Paul


On 3/5/23 11:29 AM, Jean Abou Samra wrote:
Le dimanche 05 mars 2023 à 11:19 -0700, Paul Scott a écrit :
Thank you for your quick reply.

I need the first situation of NR 1.2.3: "Different time signatures with equal-length measures."  enablePolymeter defeats this.

Some instruments have all 2/4; some have 2/4, then 6/8 and then 2/4 again.


Well, this is where you see the point of giving a code example. I still cannot reproduce your problem.

\version "2.25.2"

      
<<
  \new Staff {
    \time 2/4
    c'8 8 8 8 8 8 8 8
    c'8 8 8 8 8 8 8 8
    c'8 8 8 8 8 8 8 8
  }
  \new Staff {
    \time 2/4
    c'8 8 8 8 8 8 8 8
    \set Staff.timeSignatureFraction = 6/8
    \scaleDurations 2/3 { c'8 8 8 8 8 8 8 8 8 8 8 8 }
    \set Staff.timeSignatureFraction = 2/4
    c'8 8 8 8 8 8 8 8
  }
>>


For me, this gives


Jean


reply via email to

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