lilypond-user
[Top][All Lists]
Advanced

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

Re: lilypond-user Digest, Vol 186, Issue 108


From: Lukas-Fabian Moser
Subject: Re: lilypond-user Digest, Vol 186, Issue 108
Date: Mon, 28 May 2018 17:39:05 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.8.0


Another possible approach, for the temporary time changes, is can you
display the new time signature without actually setting it? (Ie if the
piece is in 2/4, you display 3/4 but lilypond still thinks its a 2/4 bar
as before with no change.

Then just use \times 2/3 {} for that bar so the notation displays correctly.

Okay, that won't work for midi, but for scores it might be a good solution.

This can also be done without \times or \scaleDurations in a "semantically correct" way (assuming that the length of a quarter note should remain unchanged):

\version "2.19.80"

\relative {
  \time 3/4
  a b c
  \set Score.measureLength = #(ly:make-moment 5 4)
  d c d c b
  a b c d e
  \set Score.measureLength = #(ly:make-moment 3 4)
  a b c
  d e c
}

Best
Lukas



reply via email to

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