lilypond-user
[Top][All Lists]
Advanced

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

Re: Skipping time without any output


From: Xavier Scheuer
Subject: Re: Skipping time without any output
Date: Fri, 31 Dec 2010 16:30:28 +0100

On 31 December 2010 16:25, Sven Axelsson <address@hidden> wrote:
>
> However, for something like
>
> \relative c'' {
>    \repeat volta 2 {
>        \partial 4 b4
>        c c c c | c c c c
>    } \alternative {
>        { c4 c c c | b b b4*2 }
>        { c4 c c c | d d d d }
>    }
> }
>
> I really have to use a scaling duration, right? The whole point with
> this is of course to avoid extra whitespace at the end of the bar.

That's typically the example given in the doc that use
  \set Timing.measureLength = #(ly:make-moment 3 4)

Then no problem of extra whitespace!

\relative c'' {
  \repeat volta 2 {
    \partial 4 b4
    c c c c | c c c c
  }
  \alternative {
    {
      c4 c c c |
      \set Timing.measureLength = #(ly:make-moment 3 4)
      b b b4
    }
    {
      \set Timing.measureLength = #(ly:make-moment 4 4)
      c4 c c c |
      d d d d
    }
  }
}


Cheers,
Xavier

-- 
Xavier Scheuer <address@hidden>



reply via email to

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