"Peter Gentry" <peter.gen...@sunscales.co.uk> writes:

> Where am I going wrong.

You apply \unfoldRepeats to the score, which is probably not what you
want. All repeats will be spelled out in the print.

It is better to assign your music to a variable

myMusic = {
  << 
  ...
  >>
}

and use two \score blocks:

\score {
  \myMusic
}
\score {
  \unfoldRepeats \myMusic
  \midi { }
}

Another thing to watch for: If one of the voices has \repeat's then they
show in all staves, so it may be possible that some of the included
files do not have actual \repeat's in them.

Hope this helps.

-- Johan

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

Reply via email to