Re: repeat bars in all staves except one

2015-06-19 Thread Kieren MacMillan
Hi Harm, > How about: > > \version "2.19" > > global = { > \time 4/4 > s1 > \set RhythmicStaff.whichBar = "||" > \repeat volta 1 { s1 } > } > > \score { > << >\new RhythmicStaff << \global { a1 a } >> >\new Staff << \global { c''1 c'' } >> >>> > } > > At least it seems to work i

Re: repeat bars in all staves except one

2015-06-18 Thread Thomas Morley
2015-06-17 20:07 GMT+02:00 Kieren MacMillan : > Hello all, > > In the following [minimal] snippet, > > \version "2.19" > > global = { > \time 4/4 > s1 > \repeat volta 1 { s1 } > } > > \score { > << > \new RhythmicStaff << \global { a1 a } >> > \new Staff << \global { c''1 c'' } >> >

Re: repeat bars in all staves except one

2015-06-18 Thread Pierre Perol-Schneider
2015-06-18 16:46 GMT+02:00 Kieren MacMillan : > Hello David (et al.), > > > Is there not at least a way to use the existing bar line engraving > > tools for doing the job? > > That is also my question. =) > This seems to work: \version "2.19" global = { \time 4/4 s1 \repeat volta 1 { s1

Re: repeat bars in all staves except one

2015-06-18 Thread Kieren MacMillan
Hello David (et al.), > Is there not at least a way to use the existing bar line engraving > tools for doing the job? That is also my question. =) > there also is the question _why_ Kieren wants no repeat bar in this staff. In the real-world score from which this minimal snippet was derived, t

Re: repeat bars in all staves except one

2015-06-18 Thread David Kastrup
Pierre Perol-Schneider writes: > Hi David, > > 2015-06-18 9:53 GMT+02:00 David Kastrup : > > >> Well, that's the equivalent of snatching the engraved plates from a >> human operator after the third time he declined a request and using a >> paperclip to scratch the desired kind of bar into the pla

Re: repeat bars in all staves except one

2015-06-18 Thread Pierre Perol-Schneider
Hi David, 2015-06-18 9:53 GMT+02:00 David Kastrup : > Well, that's the equivalent of snatching the engraved plates from a > human operator after the third time he declined a request and using a > paperclip to scratch the desired kind of bar into the plate. > My english is not good enough to per

Re: repeat bars in all staves except one

2015-06-18 Thread David Kastrup
Pierre Perol-Schneider writes: > Hi Kieren, > > %% > \version "2.19" > > global = { > \time 4/4 > s1 > \repeat volta 1 { s1 } > } > > \score { > << > \new RhythmicStaff << > \global > { > a1 > \once \override RhythmicStaff.BarLine.stencil = >

Re: repeat bars in all staves except one

2015-06-18 Thread Pierre Perol-Schneider
Hi Kieren, %% \version "2.19" global = { \time 4/4 s1 \repeat volta 1 { s1 } } \score { << \new RhythmicStaff << \global { a1 \once \override RhythmicStaff.BarLine.stencil = #(lambda (grob) (ly:bar-line::print grob)

repeat bars in all staves except one

2015-06-17 Thread Kieren MacMillan
Hello all, In the following [minimal] snippet, \version "2.19" global = { \time 4/4 s1 \repeat volta 1 { s1 } } \score { << \new RhythmicStaff << \global { a1 a } >> \new Staff << \global { c''1 c'' } >> >> } I would like to have the RhythmicStaff *not* have repeat barlines,