[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Lilypond-auto] Issue 3324 in lilypond: Avoid collision of voices
From: |
lilypond |
Subject: |
[Lilypond-auto] Issue 3324 in lilypond: Avoid collision of voices |
Date: |
Wed, 17 Apr 2013 21:11:15 +0000 |
Status: Accepted
Owner: ----
Labels: Type-Enhancement
New issue 3324 by address@hidden: Avoid collision of voices
http://code.google.com/p/lilypond/issues/detail?id=3324
Notes from different (unspecified) voices shouldn't collide:
Case 1 - Cross staff voices:
\version "2.17.16"
\score {
<<
\new PianoStaff <<
\new Staff = "up" {
{
f''8 e''8 e'' e''
} }
\new Staff = "down" {
{
e'8 \change Staff = "up" g'8 g' g'
} }
}
The same music in one staff does not collide:
Case 2 - Same staff without collision
\version "2.17.16"
\score {
\new Staff = "up" <<
\new Voice {
f''8 e''8 e'' e''
}
\new Voice {
e'8 g'8 g' g'
}
>>
}
Case 3 - Collision in the same staff
\version "2.17.16"
\score {
\new Staff = "up" <<
\new Voice {
f''8 e''8 e'' e''
}
\new Voice {
e''8 g'8 g' g'
}
>>
}
Original report by Evan Laforge:
http://lists.gnu.org/archive/html/bug-lilypond/2013-04/msg00046.html
Attachments:
case1.png 2.7 KB
case2.png 1.5 KB
case3.png 1.6 KB
--
You received this message because this project is configured to send all
issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings
- [Lilypond-auto] Issue 3324 in lilypond: Avoid collision of voices,
lilypond <=