lilypond-user
[Top][All Lists]
Advanced

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

Re: Midi repeats


From: Johan Vromans
Subject: Re: Midi repeats
Date: Mon, 21 Jan 2013 22:37:20 +0100
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/23.3 (gnu/linux)

"Peter Gentry" <address@hidden> 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



reply via email to

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