Re: stretching ragged last bar in the Voice context

2013-01-22 Thread Federico Bruni
Il 22/01/2013 16:41, Eluze ha scritto: Federico Bruni-5 wrote I'm a bit surprised that the lines before are different, but I think that's another topic. Yes, that's exactly the problem: "the lines before are different". I want to stretch only the last two bars. I attach two pictures so that

Re: stretching ragged last bar in the Voice context

2013-01-22 Thread Eluze
Federico Bruni-5 wrote >> >> I'm a bit surprised that the lines before are different, but I think >> that's >> another topic. >> > > Yes, that's exactly the problem: "the lines before are different". I > want to stretch only the last two bars. > I attach two pictures so that it's clear. try \new

Re: stretching ragged last bar in the Voice context

2013-01-21 Thread Eluze
Federico Bruni-5 wrote > Il 21/01/2013 15:44, Eluze ha scritto: >> Federico Bruni-5 wrote >>> But I need to use that override in a voice context. >> >> in your original example >> >> \relative c'' { >> \repeat unfold 4 { R1*4 \break } >> \override Score.NonMusicalPaperColumn.padding = #20 >

Re: stretching ragged last bar in the Voice context

2013-01-21 Thread Federico Bruni
Il 21/01/2013 22:20, Xavier Scheuer ha scritto: I see you this Voice contains MultiMeasureRest in the part you want to stretch. I'd suggest using \override MultiMeasureRest #'minimum-length = #20 in order to increase the space take by these measures. It works great, but multimeasure rests a

Re: stretching ragged last bar in the Voice context

2013-01-21 Thread Xavier Scheuer
On 21 January 2013 21:14, Federico Bruni wrote: > > (snip) > > Maybe it's just the wrong workaround for what I'm trying to achieve? Hi Federico, I see you this Voice contains MultiMeasureRest in the part you want to stretch. I'd suggest using \override MultiMeasureRest #'minimum-length = #20

Re: stretching ragged last bar in the Voice context

2013-01-21 Thread Federico Bruni
Il 21/01/2013 15:44, Eluze ha scritto: Federico Bruni-5 wrote But I need to use that override in a voice context. in your original example \relative c'' { \repeat unfold 4 { R1*4 \break } \override Score.NonMusicalPaperColumn.padding = #20 R1 R1 } by the time you override the /Sc

Re: stretching ragged last bar in the Voice context

2013-01-21 Thread Eluze
Federico Bruni-5 wrote > But I need to use that override in a voice context. in your original example \relative c'' { \repeat unfold 4 { R1*4 \break } \override Score.NonMusicalPaperColumn.padding = #20 R1 R1 } by the time you override the /Score.NonMusicalPaperColumn.padding/ you *

Re: stretching ragged last bar in the Voice context

2013-01-21 Thread Federico Bruni
2013/1/21 Eluze > Federico Bruni-5 wrote > > I meant: NonMusicalPaperColumn works only in the Score context. > > These override(s) won't work: > > > > \override NonMusicalPaperColumn.padding = #20 > > \override Voice.NonMusicalPaperColumn.padding = #20 > > but > > \override Score.NonMusicalPaperC

Re: stretching ragged last bar in the Voice context

2013-01-21 Thread Eluze
Federico Bruni-5 wrote > I meant: NonMusicalPaperColumn works only in the Score context. > These override(s) won't work: > > \override NonMusicalPaperColumn.padding = #20 > \override Voice.NonMusicalPaperColumn.padding = #20 but \override Score.NonMusicalPaperColumn.padding = #20 does it - or n

Re: stretching ragged last bar in the Voice context

2013-01-21 Thread Federico Bruni
2013/1/21 Eluze > Federico Bruni-5 wrote > > I'm trying to stretch a ragged last bar in a score. > > I know I can use the following override (NR 4.5.1, Known issues): > > > > > > \relative c'' { > >\repeat unfold 4 { R1*4 \break } > >\override Score.NonMusicalPaperColumn.padding = #20 > >

Re: stretching ragged last bar in the Voice context

2013-01-21 Thread Eluze
Federico Bruni-5 wrote > I'm trying to stretch a ragged last bar in a score. > I know I can use the following override (NR 4.5.1, Known issues): > > > \relative c'' { >\repeat unfold 4 { R1*4 \break } >\override Score.NonMusicalPaperColumn.padding = #20 >R1 R1 > } > > However, I need