Tim McNamara wrote:
There is a number in the middle of the bar which indicates how many bars to repeat, with a heavy horizontal bar on either side of the number.
Would this do the sort of thing you're looking for? You ask for a multi-measure rest (big R) and let \inlineMMRN move its count down into the staff. Cheers, Robin
#(define (whiteunder grob) (grob-interpret-markup grob 
  (markup #:vcenter #:whiteout #:pad-x 1 (ly:grob-property grob 'text))))

inlineMMRN = {
  \once \override Score.MultiMeasureRest #'layer = #-2
  \once \override Score.MultiMeasureRestNumber #'layer = #-1
  \once \override Score.MultiMeasureRestNumber #'Y-offset = #0
  \once \override Score.MultiMeasureRestNumber #'stencil = #whiteunder
}


solos = {
  \override Score.MultiMeasureRest #'minimum-length = #20 
  \bar "|:"
  \inlineMMRN R2.*4 
  \inlineMMRN R2.*4 
  \inlineMMRN R2.*4 
  \inlineMMRN R2.*4 
  \inlineMMRN R2.*4 
  \inlineMMRN R2.*4 
  \bar ":|"
}

{
  \time 3/4
  \set Score.markFormatter = #format-mark-box-alphabet 
  \set Score.skipBars = ##t
  \override MultiMeasureRest #'expand-limit = 1
  s2.*8 
  \mark \default  
  s2.*8 
  \mark \default  
  s2.*8 
  \mark \default  
  s2.*12 
  \mark \default  
  s2.*8 
  \mark \default  
  \solos
}
_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to