Re: repeat and collision with a new clef

2012-08-17 Thread Colin Hall
On Sun, Aug 12, 2012 at 08:24:48PM +, Marc Lanoisel??e wrote: > \version "2.14.0" > > { >\clef "bass" > \time 4/4 \partial 8*1 > \repeat volta 2 { > c8 > c2 e4 g4 > c2. r8 > } > \once \override Score.BreakAlignment #'break-align-orders = #(make-vector > 3 > '( staff-bar cle

Re: repeat and collision with a new clef

2012-08-14 Thread Keith OHara
Better workaround at ___ bug-lilypond mailing list bug-lilypond@gnu.org https://lists.gnu.org/mailman/listinfo/bug-lilypond

Re: repeat and collision with a new clef

2012-08-12 Thread Keith OHara
Looks like an unpleasant bug. The only workaround I see is the commented override in the example below. { b1 % \once\override Score.BarLine #'space-alist #'clef = #'(minimum-space . 2.5) \once \override Score.BreakAlignment #'break-align-orders = #(make-vector 3 '( staff-bar clef )) \bar":

repeat and collision with a new clef

2012-08-12 Thread Marc Lanoiselée
\version "2.14.0" { \clef "bass" \time 4/4 \partial 8*1 \repeat volta 2 { c8 c2 e4 g4 c2. r8 } \once \override Score.BreakAlignment #'break-align-orders = #(make-vector 3 '( staff-bar clef )) \repeat volta 2 { \clef "alto" e8 e2 e4. } }