Re: Repeat in Score and in Midi

2013-01-09 Thread EmilLask
EC Ex. global = { \key c \major \time 4/4 } \parallelMusic #'(voiceA voiceB) { c'' c'' c'' c'' | %voiceA measure 1 c' c' c' c' | %voiceB measure 1 g' g' g' g'| %voiceA measure 2 g g g g | %voiceB measure 2 } \parallelMusic #'(voiceC voiceD) { c'

Re: Repeat in Score and in Midi

2013-01-09 Thread EmilLask
Thank everyone very much and thank Hwaen Ch'uqi particularly for the suggestions and the examples. All more efficient or elegant solutions will be welcome. Ex. global = { \key c \major \time 4/4 } \parallelMusic #'(voiceA voiceB) { c'' c'' c'' c'' | %voiceA measure 1 c' c' c'

Re: Repeat in Score and in Midi

2013-01-09 Thread David Kastrup
EmilLask writes: > Yes, but if I use \repeat ... and \unfoldRepeats > > it repeats one measure only. > > How can I repeat more than one measure in parallel mode? \unfoldRepeats is a command working on the immediately following piece of music. If you write \unfoldRepeats x y z then only x wi

Re: Repeat in Score and in Midi

2013-01-09 Thread curtmcd
Hi, I do it by using one \score for the layout and another \score for the MIDI. For example, see below. Regards, -Curt mainRh = { [music...] } mainLh = { [music...] } codaRh = { [music...] } codaLh = { [music...] } \score { \new PianoStaff << \new Staff = "rh" { \repeat volta 2 \mainRh

Re: Repeat in Score and in Midi

2013-01-09 Thread EmilLask
Yes, but if I use \repeat ... and \unfoldRepeats it repeats one measure only. How can I repeat more than one measure in parallel mode? Emil -- View this message in context: http://lilypond.1069038.n5.nabble.com/Repeat-in-Score-and-in-Midi-tp139046p139107.html Sent from the User mailing li

Re: Repeat in Score and in Midi

2013-01-08 Thread Marc Hohl
Am 08.01.2013 17:02, schrieb EmilLask: Thank you. ex. \parallelMusic #'(voiceA voiceB) { [...] \bar ":|:" \bar "..." tells LilyPond to draw this specific bar line *without* being interpreted musically. To make MIDI work as expected, you'll have to use \repeat ... and \unfoldRepeat

Re: Repeat in Score and in Midi

2013-01-08 Thread EmilLask
Thank you. ex. \parallelMusic #'(voiceA voiceB) { \key b \minor \time 4/4 \voiceOne \unfoldRepeats { \repeat volta 2 { b4. d16 e fis8 d cis b} | \repeat volta 2 { b,4 fis' d e} | } ais8 g' fis e d cis16 d e8 cis | fis4 ais fis cis | fis2 ~ fis8 e16 d cis8 b | d4 cis b e

Re: Repeat in Score and in Midi

2013-01-08 Thread David Kastrup
EmilLask writes: > Hi, > > If I introduce a repeat (\repeat volta 2 or \bar ":|") the Score is > perfect, but the midi doesn't repeat the measures. > > Is it possible to do it? http://lilypond.org/doc/v2.16/Documentation/notation/repeats-in-midi> -- David Kastrup ___