Status: Accepted
Owner: ----
Labels: Type-Defect
New issue 2252 by [email protected]: the first bar's
shortest-duration-space carries over into the first beat of the second
http://code.google.com/p/lilypond/issues/detail?id=2252
The example below produces a quite strange spacing in measure 2, the second
note should be placed nearer to the first note.
When I remove bar on the spacing is o.k.
Thomas
\version "2.15.26"
upper = \relative c'' {
\voiceOne
\repeat unfold 8 {c32 c c c} |
c4 c2 c4
}
lower = \relative c'' {
\voiceTwo
s1
a2 a
}
\score
{
<<
\upper
\\
\lower
>>
}
--snip--
From Neil Puttock
It looks like the first bar's shortest-duration-space carries over
into the first beat of the second, messing up the spacing. This looks
better in my opinion:
\version "2.15.26"
upper = \relative c'' {
\voiceOne
\repeat unfold 8 {c32 c c c} |
\newSpacingSection
c4 c2 c4
}
lower = \relative c'' {
\voiceTwo
s1
a2 a
}
\score
{
<<
\upper
\\
\lower
>>
}
Attachments:
Capture1.png 25.4 KB
_______________________________________________
bug-lilypond mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/bug-lilypond