lilypond-user
[Top][All Lists]
Advanced

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

Re: something's wrong with \unset Score.proportionalNotationDuration


From: tisimst
Subject: Re: something's wrong with \unset Score.proportionalNotationDuration
Date: Tue, 22 Jul 2014 22:01:15 -0700 (PDT)

karol wrote
> \version "2.19.10"
> 
> {
>   \set Score.proportionalNotationDuration = #(ly:make-moment 1/32)
>   \repeat unfold 32 { f'32 }
>   \newSpacingSection
>   \unset Score.proportionalNotationDuration
>   f'4 f'4 f'4 f'4
> }
> 
> 
> Look at the huge gap between first two quarter notes. Bug?
> 
> 
> --Karol
> 
> 
> 
> _______________________________________________
> lilypond-user mailing list

> lilypond-user@

> https://lists.gnu.org/mailman/listinfo/lilypond-user

Karol,

I've seen this kind of thing happen in other cases (but I can't remember a
single one at the moment). The issue is that you must \unset the
proportionalNotationDuration one note PRIOR to when it is to actually take
effect. Like this:

{
  \set Score.proportionalNotationDuration = #(ly:make-moment 1/32)
  \repeat unfold 31 { f'32 }  % notice the 31 instead of 32
  \newSpacingSection
  \unset Score.proportionalNotationDuration
  f'32  % here's the 32nd note, but the \unset doesn't effect it, just
starting with the notes...
  f'4 f'4 f'4 f'4
}

Not sure why this is the case, but I think there's a technical reason that
it must be this way (I wish I could remember other cases where this
applies... Any else remember other cases where this happens?).

Regards,
Abraham



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/something-s-wrong-with-unset-Score-proportionalNotationDuration-tp164785p164786.html
Sent from the User mailing list archive at Nabble.com.



reply via email to

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