\new Voice {
\set countPercentRepeats = ##t
   \repeat "percent" etc.(inserting the # of repeats here) {the notation}
}

So you want to add
\set countPercentRepeats = ##t

to your music, and then use a repeat:
\repeat "percent" etc.(inserting the # of repeats here) {the notation}

and stick the repeated music in the "the notation" section.

What ended-up happening was adding a blank piano staff, shifting the original down, and then following with the measure repeats...2%/3%/4%/, etc. to 24. Obviously, if I even used the correct commands, I inserted it in a "bad" spot. Here is the original file:

I messed up the indentation, but replace the "upper" and "lower" in your parts with these:


upper = \relative c'' {
    \time 7/8
    \key g \major
    \clef treble
  \set countPercentRepeats = ##t
    \repeat percent 20 {
g16[g] r8 g16[g] r8 g8[a g]
  }
}

lower = \relative {
    \clef bass
    \time 7/8
    \key g \major

  \set countPercentRepeats = ##t
    \repeat percent 20 {
   r8 b,16[b] r8 b8[c b] b16[b]
  }
}



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

Reply via email to