Hi all!

While generating homework material for choristers, I notice the following:

1- unfoldRepeats doesn't work, neither on pdf nor in midi,

2- quoted parts don't go to midi by default, you have to at least add
   \set Score.quotedEventTypes = #'(note-event rest-event).

This is with LP-2.17.24

Cheers,
Jean-Charles
\version "2.17.24"

singer = \relative c' {
  \repeat volta 2 { f4 g( a) r }
  c1
}

\addQuote "echo" { \singer }

continuo = {
  \set Score.quotedEventTypes = #'(note-event rest-event)
  \quoteDuring "echo" {
    \repeat volta 2 { s1 }
    s1
  }
}

\markup { Printed output }
\score {
  <<
    \new Staff { \singer }
    \new Staff { \new Voice { \continuo } }
  >>
  \layout { }
}

\markup { With unfoldRepeats for MIDI }
\score {
  \unfoldRepeats
  <<
    \new Staff { \singer }
    \new Staff { \new Voice { \continuo } }
  >>
  \layout { }
  \midi { }
}

<<attachment: Quotes.png>>

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

Reply via email to