On Mon, Jun 08, 2015 at 10:23:03AM -0500, Cynthia Karl wrote:
> Suppose I have a piece of music to perform that has both simple and difficult 
> passages.  It would be helpful if I could derive a practice piece that had 
> only the difficult passages.  My first attempt at doing this is:
> 
> > \version "2.19.20"
> > 
> > music = \relative c'' {
> >     c1 d
> >     \tuplet 3/2 16 { c32 d e f e f g f e d c d  }
> >             \tuplet 3/2 4 { c8 d e f e f g f e  }
> >     d1 c
> > }
> > 
> > { \music }
> > 
> > \addQuote "music" \music
> > 
> > practice = \relative c'' {
> >     \set Timing.currentBarNumber = 3
> >     \quoteDuring #"music" s1
> > }
> > 
> > { \practice }
> 
> 
> Apparently, however, setting the currentBarNumber has no effect on the music 
> quoted by \quoteDuring; the quoted music starts at measure 1, not measure 3.  
> Is there some other way of affecting what music gets quoted temporally?

For something like this I put the phrases you want to use in two different
places in variables.

musicA = \relative{
       \tuplet 3/2 16 { c32 d e f e f g f e d c d  }
       \tuplet 3/2 4 { c8 d e f e f g f e
}

music = \relative{ c1 d \musicA d1 c }
        
practice = \relative{ \set Score.currentBarNumber = #3 \musicA }

HTH

Paul Scott


_______________________________________________
lilypond-user mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to