lilypond-user
[Top][All Lists]
Advanced

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

Re: Mixed Time Signatures: Non regular alternantion between 5/8 and 8/8


From: Kieren MacMillan
Subject: Re: Mixed Time Signatures: Non regular alternantion between 5/8 and 8/8
Date: Sun, 22 Aug 2010 10:39:27 -0400

Hi Fauban,

> I would like to ask you a couple of questions:
> 1-The time signature is going to take some place, so how can I fix that?
> 2-How can I engrave the [...] signature?

\version "2.13.29"

#(define ((custom-time-signature one two three four five six) grob)
  (grob-interpret-markup grob
    (markup #:override '(baseline-skip . 0) #:number
      (#:line ((#:column (one two))
                    (#:column (three four))
                    (#:column (five six)))))))

alternatingTS = \relative c' {
  \override Score.TimeSignature #'stencil =
    #(custom-time-signature "3" "4" "5" "8" "2" "4")
  \time 3/4 c8 c c c c c |
  \override Score.TimeSignature #'stencil = ##f
  \time 5/8 c8 c c c c |
  \time 2/4 c8 c c c |
  \time 5/8 c8 c c c c |
  \time 3/4 c8 c c c c c |
}

\score { \alternatingTS }

Hope this helps!
Kieren.



reply via email to

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