lilypond-user
[Top][All Lists]
Advanced

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

ClusterSpanner #'style.


From: v!ictor address@hidden
Subject: ClusterSpanner #'style.
Date: Sat, 13 Oct 2007 15:20:21 -0400

Hi,

I'm wanting to go back and forth between different ClusterSpanner #'style (s) in the middle of a score, but Lilypond seem to ignore all but the first style setting.
Is it not possible to change the style once it's been set? Am I doing something wrong?

Here's an example of what I'm trying to do:

%%%% START %%%%%
\version "2.11.33"
{

\override ClusterSpanner #'style = #'leftsided-stairs
\makeClusters{<c' g'>8 <c' d'>8}
\override ClusterSpanner #'style = #'ramp
% HERE I EXPECT THE FOLLOWING TO BE RAMP CLUSTERS, BUT THEY ARE STILL LEFTSIDED-STAIRS.
\makeClusters{<c' g'>8 <c' d'>8}

}
%%%% END %%%%%

I also tried putting the override inside the \makeClusters, but it makes no difference:
%%%% START %%%%%
\version "2.11.33"
{

\makeClusters{ \override ClusterSpanner #'style = #'leftsided-stairs
      <c' g'>8 <c' d'>8
      \override ClusterSpanner #'style = #'ramp
      % HERE I EXPECT THE FOLLOWING TO BE RAMP CLUSTERS, BUT THEY ARE STILL LEFTSIDED-STAIRS.
      <c' g'>8 <c' d'>8
      }

}
%%%% END %%%%%

Thanks,

Victor.

reply via email to

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