Re: uniform-stretching results in too much space after barline

2012-05-04 Thread Marek Klein
Hello Janek, 2012/5/3 Janek Warchoł janek.lilyp...@gmail.com A simplified snippet below. I also think this may qualify as a bug, so i'm cross-posting to bugreports. cheers, Janek \version 2.15.36 \markup uniform-stretching results in too much space after barline \score { \repeat

Re: uniform-stretching results in too much space after barline

2012-05-03 Thread Janek Warchoł
encountered. It was a screenshot from a score i'm working on. I've figured out that when i use uniform-stretching, the problem with bad triplets goes away, but there are some side-effects. I had to post some example code to demonstrate these side-effects - this was the code in my message

Re: uniform-stretching results in too much space after barline

2012-05-02 Thread James
Hello, On 2 May 2012 22:58, Janek Warchoł janek.lilyp...@gmail.com wrote: Hi all, i have a piano-vocal piece with badly spaced triplets (see attached png).  When i turn uniform-stretching on, the triplets are fixed, but there is a serious problem with space after barline (in the real score

proportional notation (a la earle brown etc.) was: Re: uniform-stretching

2008-11-08 Thread Rob Canning
hi, i've just been looking at the threads on proportional notation (time-space notation) and found these: http://www.mail-archive.com/lilypond-user@gnu.org/msg35955.html http://www.mail-archive.com/lilypond-user@gnu.org/msg35775.html

Re: uniform-stretching

2006-12-28 Thread Orm Finnendahl
Hi Graham, thanks for the notes. Am 24. Dezember 2006, 05:48 Uhr (-0800) schrieb Graham Percival: \acciacatura s32 Do you mean \acciaccatura ? When complaining about a bug, please include a complete example that we can compile (or in this case, not compile). I can't reproduce the

Re: uniform-stretching

2006-12-16 Thread Trevor Bača
On 12/16/06, Orm Finnendahl [EMAIL PROTECTED] wrote: Hi Trevor, thanks very much for getting back to me! I just downloaded and tried it. Spacing seems much better controllable, but lilypond segfaults now for parts of the score (it doesn't segfault in 2.11.0), so I can't really tell until I've

Re: uniform-stretching

2006-12-16 Thread Han-Wen Nienhuys
Orm Finnendahl escreveu: Hi Trevor, thanks very much for getting back to me! I just downloaded and tried it. Spacing seems much better controllable, but lilypond segfaults now for parts of the score (it doesn't segfault in 2.11.0), so I can't segfaults are always serious errors. Please send

Re: uniform-stretching

2006-12-16 Thread Paul Scott
Han-Wen Nienhuys wrote: Orm Finnendahl escreveu: Hi Trevor, thanks very much for getting back to me! I just downloaded and tried it. Spacing seems much better controllable, but lilypond segfaults now for parts of the score (it doesn't segfault in 2.11.0), so I can't segfaults are

Re: uniform-stretching

2006-12-16 Thread Orm Finnendahl
Hi Han-Wen, Am 16. Dezember 2006, 16:48 Uhr (+0100) schrieb Han-Wen Nienhuys: segfaults are always serious errors. Please send the offending input. This caused the segfault: \acciacatura s32 It worked in 2.11.0 but for this score I found a way around it. Do you know why the markup is

Re: uniform-stretching

2006-12-15 Thread Trevor Bača
On 12/5/06, Han-Wen Nienhuys [EMAIL PROTECTED] wrote: Trevor Bača escreveu: \relative c' { \override Score.SpacingSpanner #'uniform-stretching = ##t \set Score.proportionalNotationDuration = #(ly:make-moment 8 50) \override Score.PaperColumn #'used = ##t

Re: uniform-stretching

2006-12-05 Thread Orm Finnendahl
PaperColumn used to ##t (together with uniform stretching) evens out the last two measures in 5/8 perfectly (with no need to resort to the transparent Rest workaround). %%% BEGIN %%% \version 2.11.0 \layout { ragged-right = ##t } \score { \new Staff \with { \remove

Re: uniform-stretching

2006-12-05 Thread Trevor Bača
obey proportional spacing. But when I was thinking about Han-Wen's explanation of uniform-stretching it all suddenly made sense: uniform-stretching makes distances *AFTER* musical events uniform; and what happens at the beginning of a measure? No musical event, so nothing to make uniform. Makes

Re: uniform-stretching

2006-12-05 Thread Han-Wen Nienhuys
. On the face of it, it seems utterly bizarre that some abstract grob setting like PaperColumn should be necessary to make measure-initial skips obey proportional spacing. But when I was thinking about Han-Wen's explanation of uniform-stretching it all suddenly made sense: uniform-stretching makes

Re: uniform-stretching

2006-12-05 Thread Han-Wen Nienhuys
Trevor Bača escreveu: \relative c' { \override Score.SpacingSpanner #'uniform-stretching = ##t \set Score.proportionalNotationDuration = #(ly:make-moment 8 50) \override Score.PaperColumn #'used = ##t \time 4/4 r1 % BUG? Measure is way too short

Re: uniform-stretching

2006-12-05 Thread Trevor Bača
yesterday incrementally getting your example to work. On the face of it, it seems utterly bizarre that some abstract grob setting like PaperColumn should be necessary to make measure-initial skips obey proportional spacing. But when I was thinking about Han-Wen's explanation of uniform-stretching

Re: uniform-stretching

2006-12-05 Thread Trevor Bača
On 12/5/06, Han-Wen Nienhuys [EMAIL PROTECTED] wrote: Trevor Bača escreveu: \relative c' { \override Score.SpacingSpanner #'uniform-stretching = ##t \set Score.proportionalNotationDuration = #(ly:make-moment 8 50) \override Score.PaperColumn #'used = ##t

Re: uniform-stretching

2006-12-05 Thread V!ctor [EMAIL PROTECTED]
proportionalNotationDuration = #(ly:make-moment n d) (in the Score) 2. \override SpacingSpanner #'uniform-stretching = ##t (in the Score) 3. \override PaperColumn #'used = ##t (in the Score) 4. \remove Separating_line_group_engraver (in the Staff) 5. \override SpacingSpanner #'strict-note-spacing = ##t

Re: uniform-stretching

2006-12-05 Thread Trevor Bača
elements to adjust for strict proportional notation: 1. \set proportionalNotationDuration = #(ly:make-moment n d) (in the Score) 2. \override SpacingSpanner #'uniform-stretching = ##t (in the Score) 3. \override PaperColumn #'used = ##t (in the Score) 4. \remove Separating_line_group_engraver

Re: uniform-stretching

2006-12-05 Thread Orm Finnendahl
Hi Trevor, Han-Wen, Note to Orm then that we should remember to try the sample score example on 2.11.2 when it releases. Thanks a lot for the fix Han-Wen! When will be the release of 2.11.2? I'm a little reluctant to compile myself and would rather do the spacing part of the work with the

uniform-stretching

2006-12-04 Thread Orm Finnendahl
Hi, I tried the uniform-stretching property but couldn't get it to work as expected. If I understand this property correctly, it should stretch out bars according to their time-signature regardless of skips or rests within. This fails (e.g. the first measure should be much wider than the second

Re: uniform-stretching

2006-12-04 Thread Trevor Bača
On 12/4/06, Orm Finnendahl [EMAIL PROTECTED] wrote: Hi, I tried the uniform-stretching property but couldn't get it to work as expected. If I understand this property correctly, it should stretch out bars according to their time-signature regardless of skips or rests within. This fails (e.g

Re: uniform-stretching

2006-12-04 Thread Trevor Bača
On 12/4/06, Trevor Bača [EMAIL PROTECTED] wrote: On 12/4/06, Orm Finnendahl [EMAIL PROTECTED] wrote: Hi, I tried the uniform-stretching property but couldn't get it to work as expected. If I understand this property correctly, it should stretch out bars according to their time-signature

Re: uniform-stretching

2006-12-04 Thread Trevor Bača
On 12/4/06, Trevor Bača [EMAIL PROTECTED] wrote: On 12/4/06, Trevor Bača [EMAIL PROTECTED] wrote: On 12/4/06, Orm Finnendahl [EMAIL PROTECTED] wrote: Hi, I tried the uniform-stretching property but couldn't get it to work as expected. If I understand this property correctly, it should

Re: uniform-stretching

2006-12-04 Thread Trevor Bača
On 12/4/06, Trevor Bača [EMAIL PROTECTED] wrote: On 12/4/06, Trevor Bača [EMAIL PROTECTED] wrote: On 12/4/06, Trevor Bača [EMAIL PROTECTED] wrote: On 12/4/06, Orm Finnendahl [EMAIL PROTECTED] wrote: Hi, I tried the uniform-stretching property but couldn't get it to work