Re: Reducing the second VoltaBracketSpanner length.

2014-04-28 Thread Thomas Morley
2014-04-27 20:48 GMT+02:00 Richard Shann : > On Sun, 2014-04-27 at 19:31 +0200, Thomas Morley wrote: >> It is a simple typo in bar-line.scm >> replace: >> (define-bar-line ":|]" ":|]" #f " |") >> with >> (define-bar-line ":|]" ":|]" #f " | ") >> and all should work. Note the added space! >> >> For

Re: Reducing the second VoltaBracketSpanner length.

2014-04-27 Thread Richard Shann
On Sun, 2014-04-27 at 19:31 +0200, Thomas Morley wrote: > It is a simple typo in bar-line.scm > replace: > (define-bar-line ":|]" ":|]" #f " |") > with > (define-bar-line ":|]" ":|]" #f " | ") > and all should work. Note the added space! > > For now you should use 'shorten-pair as shown. hmm, do

Re: Reducing the second VoltaBracketSpanner length.

2014-04-27 Thread Pierre Perol-Schneider
2014-04-27 19:31 GMT+02:00 Thomas Morley : > It is a simple typo in bar-line.scm > replace: > (define-bar-line ":|]" ":|]" #f " |") > with > (define-bar-line ":|]" ":|]" #f " | ") > and all should work. Note the added space! > > For now you should use 'shorten-pair as shown. > I'll do some more t

Re: Reducing the second VoltaBracketSpanner length.

2014-04-27 Thread Thomas Morley
2014-04-27 13:41 GMT+02:00 Pierre Perol-Schneider : > Hi LilyPonders, > > I'm stucked with this code : > > %% > \version "2.18.2" > > \relative c' { > >\repeat volta 2 { c4 d e f | } > >\alternative { > > { > >c2 e > >\bar ":|]" > > } > >

Re: Reducing the second VoltaBracketSpanner length.

2014-04-27 Thread Pierre Perol-Schneider
2014-04-27 16:56 GMT+02:00 Malte Meyn : > Try a negative value like -1 instead of 0 here. > Perfect, thanks Malte. ___ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu.org/mailman/listinfo/lilypond-user

Re: Reducing the second VoltaBracketSpanner length.

2014-04-27 Thread Malte Meyn
On 27.04.2014 16:28, Pierre Perol-Schneider wrote: Well, now the problem comes at the ending barline : \once\override Score.VoltaBracket.shorten-pair = #'(1 . 0) Try a negative value like -1 instead of 0 here. ___ lilypond-user mailing

Re: Reducing the second VoltaBracketSpanner length.

2014-04-27 Thread Pierre Perol-Schneider
Well, now the problem comes at the ending barline : % \version "2.18.2" \relative c' { \partial 8 c'8 \repeat volta 2 { c,4 d e f | } \alternative { { c2 e } { f2 g | } } \bar "|." } \relative

Re: Reducing the second VoltaBracketSpanner length.

2014-04-27 Thread Pierre Perol-Schneider
Great, thanks David ~Pierre ___ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu.org/mailman/listinfo/lilypond-user

Re: Reducing the second VoltaBracketSpanner length.

2014-04-27 Thread David Kastrup
Pierre Perol-Schneider writes: > Does anyone know how to reduce the second VoltaBracketSpanner in order to > stop it at the barline ? %% \version "2.18.2" \relative c' { \repeat volta 2 { c4 d e f | } \alternative { { c2 e \bar ":|]" }

Reducing the second VoltaBracketSpanner length.

2014-04-27 Thread Pierre Perol-Schneider
Hi LilyPonders, I'm stucked with this code : %% \version "2.18.2" \relative c' { \repeat volta 2 { c4 d e f | } \alternative { { c2 e \bar ":|]" } { \once\override Score.VoltaBracket.X-offset = #.9 f2 g | }