Re: Make every n'th barline different?

2014-05-08 Thread Gilberto Agostinho
What about this? \version 2.19.2 barlines = \relative c' { \set Timing.defaultBarType = ; \repeat unfold 4 { \repeat unfold 3 { s s s s } \bar | } } music = \relative c' { \repeat unfold 12 {c d e f} } \score { \new Staff \new Voice \music \new Voice \barlines }

Re: Make every n'th barline different?

2014-05-08 Thread Graham King
On Thu, 2014-05-08 at 07:44 -0700, Gilberto Agostinho wrote: What about this? \version 2.19.2 barlines = \relative c' { \set Timing.defaultBarType = ; \repeat unfold 4 { \repeat unfold 3 { s s s s } \bar | } } music = \relative c' { \repeat unfold 12 {c d e f} }

Re: Make every n'th barline different?

2014-05-08 Thread Gilberto Agostinho
I'm glad this solves your problem, best regards! -- View this message in context: http://lilypond.1069038.n5.nabble.com/Make-every-n-th-barline-different-tp162164p162177.html Sent from the User mailing list archive at Nabble.com. ___ lilypond-user

Re: Make every n'th barline different?

2014-05-08 Thread Toine Schreurs
On Thu, May 08, 2014 at 04:35:40PM +0100, Graham King wrote: Thanks Gilberto, that's simpler and better than anything I would have cooked up. And by simply using: \version 2.19.2 barlines = { \set Timing.defaultBarType = ; \repeat unfold 3 { s1 } \bar | } \relative c' {

Re: Make every n'th barline different?

2014-05-08 Thread Graham King
On Thu, 2014-05-08 at 18:38 +0200, Toine Schreurs wrote: On Thu, May 08, 2014 at 04:35:40PM +0100, Graham King wrote: Thanks Gilberto, that's simpler and better than anything I would have cooked up. And by simply using: \version 2.19.2 barlines = { \set Timing.defaultBarType = ;