2008/3/17, Koy Rehme <[EMAIL PROTECTED]>:

>  I've discovered a set of bugs relating to the cue system.

Honestly, I don't know if these are actually bugs.
- LilyPond's support for cue notes is still somehow limited.
- Your reports were written with an old version of LilyPond (the
syntax has evolved since then, and so have the features).

Let me rephrase your reports and update them with the most recent
development version:

% 1 -missing slur in the cue part

cues = \relative c'' {
 R1 | << { e4( f) } \\ { c2 } >> c2
}
\addQuote cues \cues

part = \relative c' {
 R1 | \cueDuring #"cues" #1 { c1 }
}

\score {
 <<
   \new Staff = cues \cues
   \new Staff = part \part
 >>
}

% 2 - Missing alternative ending in the cue part

cues = \relative c'' {
 \repeat volta 2 { R1 }
 \alternative {
   { e4 f g a }
   { e f g a }
 }
}
\addQuote cues \cues

part = \relative c' {
 \repeat volta 2 { R1 }
 \alternative {
   \cueDuring #"cues" #UP { c1 }
   \cueDuring #"cues" #UP { c1 }
 }
}

\score {
 \unfoldRepeats { <<
   \new Staff = cues \cues
   \new Staff = part \part
 >> }
}


Are we supposed to support slurs and alternative endings in cues?
Mats, anyone?

Cheers,
Valentin


_______________________________________________
bug-lilypond mailing list
bug-lilypond@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-lilypond

Reply via email to